catch up with development Signed-off-by: Ralf Mollik <ramollik@compex-commerce.com>
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.action/src/BUSINESSBUNDLECLASSNAME.action.TEMPLATE b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.action/src/BUSINESSBUNDLECLASSNAME.action.TEMPLATE index 6e8083b..b8810e8 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.action/src/BUSINESSBUNDLECLASSNAME.action.TEMPLATE +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.action/src/BUSINESSBUNDLECLASSNAME.action.TEMPLATE
@@ -3,52 +3,66 @@ package ${{MODEL_PROJECT_PACKAGE_NAME}} { - command newItem keyBinding "CTRL ALT N" dialogAction New + command newItem keyBinding "CTRL ALT N" icon "new" dialogAction New - command saveItem keyBinding "CTRL ALT S" dialogAction Save + command saveItem keyBinding "CTRL ALT S" icon "save" dialogAction Save - command deleteItem keyBinding "CTRL ALT D" dialogAction Delete + command saveAsNew keyBinding "CTRL ALT B" icon "dssave" dialogAction SaveAsNew - command cancelItem keyBinding "CTRL ALT Z" dialogAction Cancel + command saveAndNew keyBinding "CTRL ALT A" icon "dssaveandnew" dialogAction SaveAndNew + + command deleteItem keyBinding "CTRL ALT D" icon "filter_except" dialogAction Delete + + command cancelItem keyBinding "CTRL ALT Z" icon "dscancel" dialogAction Cancel + + command databaseInfo describedBy "database info" keyBinding "CTRL ALT I" icon "dbinfo" userinterfaceAction Info - command print reportAction PrintOnServer + command print icon "print" reportAction PrintOnServer - command printDownload reportAction Download + command printDownload icon "xml" reportAction Download - command stop taskAction Stop + command stop icon "task_action_stop" taskAction Stop - command release taskAction Release + command release icon "task_action_release" taskAction Release - command suspend taskAction Suspend + command suspend icon "task_action_suspend" taskAction Suspend - command complete taskAction Complete + command complete icon "task_action_complete" taskAction Complete - command removeAllWorkloadItems selectWorkloadAction RemoveAll + command removeAllWorkloadItems icon "task_status_obsolete" selectWorkloadAction RemoveAll - command addAllSelectedItemsToTheWorkload selectWorkloadAction AddAll - + command addAllSelectedItemsToTheWorkload icon "import" selectWorkloadAction AddAll + toolbar Dialog describedBy "Toolbar for Dialogs" items { - item newItem command newItem icon "new" - item saveItem command saveItem icon "save" - item deleteItem command deleteItem icon "filter_except" - item cancelItem command cancelItem icon "nopic_small" + item newItem command newItem + spacer + spacer + item saveItem command saveItem + item saveAndNew command saveAndNew + spacer + item cancelItem command cancelItem + spacer + item databaseInfo command databaseInfo + spacer + state } + toolbar Report describedBy "Toolbar for reports" items { - item printDownload command printDownload icon "print" - item print command print icon "xml" + item printDownload command printDownload + item print command print } toolbar HandleTask describedBy "Toolbar for BPM oriented perspectives" items { - item stop command stop icon "task_action_stop" - item release command release icon "task_action_release" - item suspend command suspend icon "task_action_suspend" - item complete command complete icon "task_action_complete" + item stop command stop + item release command release + item suspend command suspend + item complete command complete } toolbar WorkloadSelect describedBy "Toolbar for Workload Selects" items { - item removeAllWorkloadItems command removeAllWorkloadItems icon "task_status_obsolete" - item addAllSelectedItemsToTheWorkload command addAllSelectedItemsToTheWorkload icon "import" + item removeAllWorkloadItems command removeAllWorkloadItems + item addAllSelectedItemsToTheWorkload command addAllSelectedItemsToTheWorkload } } \ No newline at end of file
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.authorization/src/BUSINESSBUNDLECLASSNAME.authorization.TEMPLATE b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.authorization/src/BUSINESSBUNDLECLASSNAME.authorization.TEMPLATE index 4a7779e..e248367 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.authorization/src/BUSINESSBUNDLECLASSNAME.authorization.TEMPLATE +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.authorization/src/BUSINESSBUNDLECLASSNAME.authorization.TEMPLATE
@@ -1,5 +1,7 @@ import ns org.eclipse.osbp.authentication.account.entities.UserAccount import ns ${{BASIC_PROJECT_NAME}}.model.blips.ProductMaintenance +import ns ${{BASIC_PROJECT_NAME}}.model.entities.Currency +import ns ${{BASIC_PROJECT_NAME}}.model.entities.CurrencyNames import ns ${{BASIC_PROJECT_NAME}}.model.entities.Employee import ns ${{BASIC_PROJECT_NAME}}.model.entities.Position import ns ${{BASIC_PROJECT_NAME}}.model.entities.Product @@ -28,6 +30,8 @@ attribute forcePwdChange INVISIBLE attribute locked INVISIBLE } + entity Currency READABLE + entity CurrencyNames READABLE } role Sales { @@ -62,5 +66,7 @@ } // process listing executable // process contact executable + entity Currency READABLE + entity CurrencyNames READABLE } } \ No newline at end of file
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.chart/src/BUSINESSBUNDLECLASSNAME.chart.TEMPLATE b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.chart/src/BUSINESSBUNDLECLASSNAME.chart.TEMPLATE index ed24175..46cb9df 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.chart/src/BUSINESSBUNDLECLASSNAME.chart.TEMPLATE +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.chart/src/BUSINESSBUNDLECLASSNAME.chart.TEMPLATE
@@ -15,7 +15,7 @@ bar animated shaded using datamart ProductSales { - axis rows renders category angle 90 + axis rows renders category tickAngle 90 axis columns renders linear legend inside-grid toggle replot normal tooltip north-east always @@ -26,7 +26,7 @@ trendLine using datamart SalesByState { axis columns renders linear - axis rows renders category angle 20 + axis rows renders category tickAngle 20 legend outside-grid toggle replot normal tooltip north-east always inside } @@ -45,7 +45,7 @@ swapped using datamart SalesByDistrict { axis rows renders category - axis columns renders linear shortLabel angle 25 + axis columns renders linear shortLabel tickAngle 25 legend outside-grid toggle replot slow tooltip east always inside }
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/BUSINESSBUNDLECLASSNAME.data.TEMPLATE b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/BUSINESSBUNDLECLASSNAME.data.TEMPLATE index 601274f..1097b04 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/BUSINESSBUNDLECLASSNAME.data.TEMPLATE +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/BUSINESSBUNDLECLASSNAME.data.TEMPLATE
@@ -22,13 +22,22 @@ package ${{MODEL_PROJECT_PACKAGE_NAME}} { + group DataInterchange { - interchange Currencies describedBy "european central bank currency exchange rates based on euro" persist elementSize 50 file - XML "file://${{PROJECT_LOC}}/models/smooksresources/eurofxref-daily.xml" - //XML "http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml" - - path { + interchange CurrencyNames persist file CSV "src/smooksresources/ISOCurrencyCodes081507.csv" delimiter ";" skipLines 1 path { + entity CurrencyNamesStream latestImport latest expression { + assign importDate with NowDate as Date + } + entity CurrencyNames mapping { + map isoCode to "Code" map name to "Currency" map countries to "Locations" + } + } + + interchange CurrencyRates describedBy "european central bank currency exchange rates based on euro" persist elementSize 50 file + //XML "https://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml" + XML "src/smooksresources/eurofxref-hist-90d.xml" + mapByAttribute path { entity CurrencyStream createOn "/Envelope/Cube" latestImport latest expression { assign importDate with NowDate as Date } @@ -42,27 +51,18 @@ copy currencyDate from CurrencyDay property ratingDate } lookup { - for currencyName on CurrencyNames createOn "/Envelope/Cube/Cube/Cube" with isoCode cacheSize 300 mapTo "currency" - markerPath { + for currencyName in CurrencyNames createOn "/Envelope/Cube/Cube/Cube" mapFrom "currency" allowNoResult markerPath { markerEntity CurrencyNamesStream markedBy latest } + mapTo isoCode cacheSize 300 } mapping { map conversionRatio to "rate" } } - interchange CurrencyNames persist file - CSV "file://${{PROJECT_LOC}}/models/smooksresources/ISOCurrencyCodes081507.csv" delimiter ";" skipLines 1 - path { - entity CurrencyNamesStream latestImport latest expression { - assign importDate with NowDate as Date - } - entity CurrencyNames - } - interchange EDIOrders describedBy "edi orders" persist elementSize 50 file - EDI "file://${{PROJECT_LOC}}/models/smooksresources/orders.edi" locale "en-US" mappingModel "file://${{PROJECT_LOC}}/models/smooksmappings/edi-order-mapping.xml" validate + EDI "src/smooksresources/orders.edi" locale "en-US" mappingModel "src/smooksmappings/edi-order-mapping.xml" validate path { entity EDIOrders createOn "Order" latestImport latest expression { assign importDate with NowDate as Date @@ -93,28 +93,38 @@ } } - interchange Stores merge vectorName "stores" elementSize 83 file - XML "file://${{PROJECT_LOC}}/models/smooksresources/stores.xml" locale "de_DE" + interchange Stores merge elementSize 83 file + XML "src/smooksresources/stores.xml" locale "de_DE" path { - entity Region - entity Store format { + entity Region keys { + key salesCountry + key salesRegion + key salesCity + } + entity Store referencedBy stores format { for firstOpenedDate coding "dd.MM.yyyy" for lastRemodelDate coding "dd.MM.yyyy" for frozenSqft coding "####,#####################" for meatSqft coding "####,#####################" + } + keys { + key storeNumber } - entity Warehouse + entity Warehouse + keys { + key warehouseName + } } interchange Warehouses merge elementSize 80 file - XML "file://${{PROJECT_LOC}}/models/smooksresources/warehouses.xml" + XML "src/smooksresources/warehouses.xml" path { entity WarehouseClass entity Warehouse } interchange Products merge elementSize 80 file - XML "file://${{PROJECT_LOC}}/models/smooksresources/products.xml"locale "de_DE" + XML "src/smooksresources/products.xml"locale "de_DE" path { entity ProductClass entity Product format { @@ -127,25 +137,30 @@ } } + interchange EmployeesDepartment merge elementSize 80 file + XML "src/smooksresources/employeesdepartment.xml" + path { + entity Department + } + interchange EmployeesPosition merge elementSize 80 file - XML "file://${{PROJECT_LOC}}/models/smooksresources/employeesposition.xml" locale "de_DE" + XML "src/smooksresources/employeesposition.xml" locale "de_DE" path { entity Position - entity Employee format { + entity Employee + lookup { + for department in Department createOn "vector/Position/Employee/Department" + mapFrom "departmentDescription" allowNoResult mapTo departmentDescription cacheSize 20 + } + format { for birthDate coding "dd.MM.yyyy" for hireDate coding "dd.MM.yyyy" for endDate coding "dd.MM.yyyy" } } - interchange EmployeesDepartment merge elementSize 80 file - XML "file://${{PROJECT_LOC}}/models/smooksresources/employeesdepartment.xml" - path { - entity Department - } - interchange Customer merge elementSize 80 file - XML "file://${{PROJECT_LOC}}/models/smooksresources/customer.xml" + XML "src/smooksresources/customer.xml" path { entity Customer format { for birthdate coding "dd.MM.yyyy" @@ -154,7 +169,7 @@ } interchange Promotion merge elementSize 80 file - XML "file://${{PROJECT_LOC}}/models/smooksresources/promotion.xml" locale "de_DE" + XML "src/smooksresources/promotion.xml" locale "de_DE" path { entity Promotion format { for startDate coding "dd.MM.yyyy" @@ -164,7 +179,7 @@ } interchange Suppliers merge elementSize 50 file - XML "file://${{PROJECT_LOC}}/models/smooksresources/suppliers.xml" + XML "src/smooksresources/suppliers.xml" path { entity Supplier format { for firstContract coding "yyyy-MM-dd"
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/customer.xml b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/customer.xml index 9a44fab..e77ff77 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/customer.xml +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/customer.xml
@@ -1,6 +1,6 @@ <vector> <Customer> - <account_num>87788449525</account_num> + <accountNum>87788449525</accountNum> <lname>Arnold</lname> <fname>Donna</fname> <mi>K.</mi> @@ -9,28 +9,28 @@ <address3></address3> <address4></address4> <city>Oregon City</city> - <state_province>OR</state_province> - <postal_code>38217</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>38217</postalCode> <country>USA</country> <phone1>969-555-4928</phone1> <phone2>972-555-5835</phone2> <birthdate>22.11.1915</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-06-24</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-06-24</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Donna Arnold</fullname> <test></test> </Customer> <Customer> - <account_num>87797676324</account_num> + <accountNum>87797676324</accountNum> <lname>Cooper</lname> <fname>Jennifer</fname> <mi>K.</mi> @@ -39,28 +39,28 @@ <address3></address3> <address4></address4> <city>Seattle</city> - <state_province>WA</state_province> - <postal_code>93604</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>93604</postalCode> <country>USA</country> <phone1>188-555-1163</phone1> <phone2>299-555-4585</phone2> <birthdate>06.04.1961</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-06-02</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-06-02</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Jennifer Cooper</fullname> <test></test> </Customer> <Customer> - <account_num>87801286578</account_num> + <accountNum>87801286578</accountNum> <lname>Petty</lname> <fname>Peggy</fname> <mi>J.</mi> @@ -69,28 +69,28 @@ <address3></address3> <address4></address4> <city>Arcadia</city> - <state_province>CA</state_province> - <postal_code>28043</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>28043</postalCode> <country>USA</country> <phone1>722-555-8456</phone1> <phone2>134-555-8906</phone2> <birthdate>09.04.1958</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-06-08</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-06-08</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Peggy Petty</fullname> <test></test> </Customer> <Customer> - <account_num>87808394432</account_num> + <accountNum>87808394432</accountNum> <lname>Olguin</lname> <fname>Jessica</fname> <mi>A.</mi> @@ -99,28 +99,28 @@ <address3></address3> <address4></address4> <city>Lebanon</city> - <state_province>OR</state_province> - <postal_code>49592</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>49592</postalCode> <country>USA</country> <phone1>203-555-6978</phone1> <phone2>384-555-6285</phone2> <birthdate>23.01.1959</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1992-03-10</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-03-10</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Jessica Olguin</fullname> <test></test> </Customer> <Customer> - <account_num>87814209461</account_num> + <accountNum>87814209461</accountNum> <lname>Burchett</lname> <fname>Phyllis</fname> <mi></mi> @@ -129,28 +129,28 @@ <address3></address3> <address4></address4> <city>Santa Cruz</city> - <state_province>CA</state_province> - <postal_code>49192</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>49192</postalCode> <country>USA</country> <phone1>761-555-3899</phone1> <phone2>719-555-7549</phone2> <birthdate>27.10.1926</birthdate> - <marital_status>S</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-08-14</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-08-14</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Phyllis Burchett</fullname> <test></test> </Customer> <Customer> - <account_num>87818307900</account_num> + <accountNum>87818307900</accountNum> <lname>Bechard</lname> <fname>Howard</fname> <mi></mi> @@ -159,28 +159,28 @@ <address3></address3> <address4></address4> <city>W. Linn</city> - <state_province>OR</state_province> - <postal_code>36903</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>36903</postalCode> <country>USA</country> <phone1>616-555-6966</phone1> <phone2>443-555-9474</phone2> <birthdate>19.04.1919</birthdate> - <marital_status>S</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-10-10</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-10-10</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Howard Bechard</fullname> <test></test> </Customer> <Customer> - <account_num>87849287390</account_num> + <accountNum>87849287390</accountNum> <lname>Carter</lname> <fname>Doris</fname> <mi>M.</mi> @@ -189,28 +189,28 @@ <address3></address3> <address4></address4> <city>San Andres</city> - <state_province>DF</state_province> - <postal_code>94169</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>94169</postalCode> <country>Mexico</country> <phone1>535-555-6174</phone1> <phone2>562-555-5709</phone2> <birthdate>27.03.1965</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-07-21</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-07-21</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Doris Carter</fullname> <test></test> </Customer> <Customer> - <account_num>87855359911</account_num> + <accountNum>87855359911</accountNum> <lname>Sharp</lname> <fname>Juanita</fname> <mi>D.</mi> @@ -219,28 +219,28 @@ <address3></address3> <address4></address4> <city>Burbank</city> - <state_province>CA</state_province> - <postal_code>48042</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>48042</postalCode> <country>USA</country> <phone1>962-555-1952</phone1> <phone2>196-555-4002</phone2> <birthdate>16.05.1977</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-03-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-03-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Juanita Sharp</fullname> <test></test> </Customer> <Customer> - <account_num>87868926525</account_num> + <accountNum>87868926525</accountNum> <lname>Brunner</lname> <fname>Sandra</fname> <mi>B.</mi> @@ -249,28 +249,28 @@ <address3></address3> <address4></address4> <city>Bellflower</city> - <state_province>CA</state_province> - <postal_code>52673</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>52673</postalCode> <country>USA</country> <phone1>904-555-8788</phone1> <phone2>577-555-2523</phone2> <birthdate>20.05.1917</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-01-07</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-01-07</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Sandra Brunner</fullname> <test></test> </Customer> <Customer> - <account_num>87869548800</account_num> + <accountNum>87869548800</accountNum> <lname>Staton</lname> <fname>Ernest</fname> <mi></mi> @@ -279,28 +279,28 @@ <address3></address3> <address4></address4> <city>Renton</city> - <state_province>WA</state_province> - <postal_code>71706</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>71706</postalCode> <country>USA</country> <phone1>693-555-6852</phone1> <phone2>235-555-8445</phone2> <birthdate>09.08.1916</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-05-07</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1994-05-07</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Ernest Staton</fullname> <test></test> </Customer> <Customer> - <account_num>87894418239</account_num> + <accountNum>87894418239</accountNum> <lname>Sims</lname> <fname>Rose</fname> <mi>M.</mi> @@ -309,28 +309,28 @@ <address3></address3> <address4></address4> <city>Mill Valley</city> - <state_province>CA</state_province> - <postal_code>68791</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>68791</postalCode> <country>USA</country> <phone1>658-555-3316</phone1> <phone2>639-555-5595</phone2> <birthdate>10.02.1928</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1992-11-22</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1992-11-22</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Rose Sims</fullname> <test></test> </Customer> <Customer> - <account_num>87894944000</account_num> + <accountNum>87894944000</accountNum> <lname>De Carlo</lname> <fname>Lauretta</fname> <mi>E.</mi> @@ -339,28 +339,28 @@ <address3></address3> <address4></address4> <city>Oak Bay</city> - <state_province>BC</state_province> - <postal_code>53986</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>53986</postalCode> <country>Canada</country> <phone1>708-555-3666</phone1> <phone2>558-555-4802</phone2> <birthdate>01.09.1951</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-05-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-05-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Lauretta De Carlo</fullname> <test></test> </Customer> <Customer> - <account_num>87901939153</account_num> + <accountNum>87901939153</accountNum> <lname>Williams</lname> <fname>Mary</fname> <mi>R.</mi> @@ -369,28 +369,28 @@ <address3></address3> <address4></address4> <city>Camacho</city> - <state_province>Zacatecas</state_province> - <postal_code>89939</postal_code> + <stateProvince>Zacatecas</stateProvince> + <postalCode>89939</postalCode> <country>Mexico</country> <phone1>696-555-7759</phone1> <phone2>324-555-4238</phone2> <birthdate>17.10.1927</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-05-04</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-05-04</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Mary Williams</fullname> <test></test> </Customer> <Customer> - <account_num>87902239561</account_num> + <accountNum>87902239561</accountNum> <lname>Burke</lname> <fname>Terri</fname> <mi>L.</mi> @@ -399,28 +399,28 @@ <address3></address3> <address4></address4> <city>Arcadia</city> - <state_province>CA</state_province> - <postal_code>41297</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>41297</postalCode> <country>USA</country> <phone1>770-555-6738</phone1> <phone2>266-555-2074</phone2> <birthdate>02.12.1930</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-04-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-04-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Terri Burke</fullname> <test></test> </Customer> <Customer> - <account_num>87910291552</account_num> + <accountNum>87910291552</accountNum> <lname>Osborn</lname> <fname>Audrey</fname> <mi>H.</mi> @@ -429,28 +429,28 @@ <address3></address3> <address4></address4> <city>Altadena</city> - <state_province>CA</state_province> - <postal_code>43412</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>43412</postalCode> <country>USA</country> <phone1>119-555-4116</phone1> <phone2>715-555-5480</phone2> <birthdate>09.03.1922</birthdate> - <marital_status>S</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-06-03</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-06-03</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Audrey Osborn</fullname> <test></test> </Customer> <Customer> - <account_num>87923139333</account_num> + <accountNum>87923139333</accountNum> <lname>Binai</lname> <fname>Brian</fname> <mi>C.</mi> @@ -459,28 +459,28 @@ <address3></address3> <address4></address4> <city>Oakland</city> - <state_province>CA</state_province> - <postal_code>33639</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>33639</postalCode> <country>USA</country> <phone1>216-555-1723</phone1> <phone2>920-555-5602</phone2> <birthdate>02.05.1955</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1993-12-05</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-12-05</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Brian Binai</fullname> <test></test> </Customer> <Customer> - <account_num>87939313100</account_num> + <accountNum>87939313100</accountNum> <lname>Lozada</lname> <fname>Concepcion</fname> <mi></mi> @@ -489,28 +489,28 @@ <address3></address3> <address4></address4> <city>Tixapan</city> - <state_province>DF</state_province> - <postal_code>19185</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>19185</postalCode> <country>Mexico</country> <phone1>727-555-1388</phone1> <phone2>731-555-2295</phone2> <birthdate>04.09.1912</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-03-19</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1994-03-19</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Concepcion Lozada</fullname> <test></test> </Customer> <Customer> - <account_num>87952010600</account_num> + <accountNum>87952010600</accountNum> <lname>Tays</lname> <fname>Paul</fname> <mi></mi> @@ -519,28 +519,28 @@ <address3></address3> <address4></address4> <city>Oak Bay</city> - <state_province>BC</state_province> - <postal_code>83595</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>83595</postalCode> <country>Canada</country> <phone1>298-555-3541</phone1> <phone2>409-555-6962</phone2> <birthdate>24.12.1932</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1993-07-10</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-07-10</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Paul Tays</fullname> <test></test> </Customer> <Customer> - <account_num>87954998600</account_num> + <accountNum>87954998600</accountNum> <lname>Thorton</lname> <fname>Cheryl</fname> <mi></mi> @@ -549,28 +549,28 @@ <address3></address3> <address4></address4> <city>Metchosin</city> - <state_province>BC</state_province> - <postal_code>18033</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>18033</postalCode> <country>Canada</country> <phone1>832-555-1834</phone1> <phone2>244-555-2284</phone2> <birthdate>24.09.1961</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-07-24</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-07-24</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Cheryl Thorton</fullname> <test></test> </Customer> <Customer> - <account_num>87961350083</account_num> + <accountNum>87961350083</accountNum> <lname>Dumin</lname> <fname>Gary</fname> <mi></mi> @@ -579,28 +579,28 @@ <address3></address3> <address4></address4> <city>Grossmont</city> - <state_province>CA</state_province> - <postal_code>39583</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>39583</postalCode> <country>USA</country> <phone1>313-555-9355</phone1> <phone2>733-555-3320</phone2> <birthdate>08.02.1924</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-03-10</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-03-10</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Gary Dumin</fullname> <test></test> </Customer> <Customer> - <account_num>87965223193</account_num> + <accountNum>87965223193</accountNum> <lname>Chin</lname> <fname>Pat</fname> <mi>M.</mi> @@ -609,28 +609,28 @@ <address3></address3> <address4></address4> <city>Imperial Beach</city> - <state_province>CA</state_province> - <postal_code>39182</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>39182</postalCode> <country>USA</country> <phone1>871-555-6277</phone1> <phone2>829-555-9927</phone2> <birthdate>21.11.1935</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-04-11</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-04-11</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Pat Chin</fullname> <test></test> </Customer> <Customer> - <account_num>87978752300</account_num> + <accountNum>87978752300</accountNum> <lname>Lovell</lname> <fname>Zach</fname> <mi></mi> @@ -639,28 +639,28 @@ <address3></address3> <address4></address4> <city>San Andres</city> - <state_province>DF</state_province> - <postal_code>26893</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>26893</postalCode> <country>Mexico</country> <phone1>375-555-3427</phone1> <phone2>201-555-5934</phone2> <birthdate>10.12.1960</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-05-15</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-05-15</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Zach Lovell</fullname> <test></test> </Customer> <Customer> - <account_num>87986992001</account_num> + <accountNum>87986992001</accountNum> <lname>Ratcliff</lname> <fname>Dave</fname> <mi>A.</mi> @@ -669,28 +669,28 @@ <address3></address3> <address4></address4> <city>Oakland</city> - <state_province>CA</state_province> - <postal_code>65362</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>65362</postalCode> <country>USA</country> <phone1>294-555-2634</phone1> <phone2>560-555-5827</phone2> <birthdate>04.04.1956</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-11-24</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-11-24</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Dave Ratcliff</fullname> <test></test> </Customer> <Customer> - <account_num>88010123400</account_num> + <accountNum>88010123400</accountNum> <lname>Moss</lname> <fname>Elizabeth</fname> <mi></mi> @@ -699,28 +699,28 @@ <address3></address3> <address4></address4> <city>Burnaby</city> - <state_province>BC</state_province> - <postal_code>70204</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>70204</postalCode> <country>Canada</country> <phone1>721-555-7412</phone1> <phone2>855-555-9462</phone2> <birthdate>01.06.1942</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>5</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>5</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-03-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-03-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Elizabeth Moss</fullname> <test></test> </Customer> <Customer> - <account_num>88018041300</account_num> + <accountNum>88018041300</accountNum> <lname>Anderson</lname> <fname>Lori</fname> <mi>M.</mi> @@ -729,28 +729,28 @@ <address3></address3> <address4></address4> <city>Langley</city> - <state_province>BC</state_province> - <postal_code>74834</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>74834</postalCode> <country>Canada</country> <phone1>663-555-5248</phone1> <phone2>336-555-7984</phone2> <birthdate>02.02.1914</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1990-09-04</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1990-09-04</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Lori Anderson</fullname> <test></test> </Customer> <Customer> - <account_num>88049879074</account_num> + <accountNum>88049879074</accountNum> <lname>Everson</lname> <fname>Michael</fname> <mi>A.</mi> @@ -759,28 +759,28 @@ <address3></address3> <address4></address4> <city>Tacoma</city> - <state_province>WA</state_province> - <postal_code>93868</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>93868</postalCode> <country>USA</country> <phone1>451-555-3312</phone1> <phone2>894-555-4905</phone2> <birthdate>15.02.1945</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-02-26</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-02-26</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Michael Everson</fullname> <test></test> </Customer> <Customer> - <account_num>88067190100</account_num> + <accountNum>88067190100</accountNum> <lname>Borden</lname> <fname>Mary</fname> <mi>A.</mi> @@ -789,28 +789,28 @@ <address3></address3> <address4></address4> <city>Santa Monica</city> - <state_province>CA</state_province> - <postal_code>64660</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>64660</postalCode> <country>USA</country> <phone1>656-555-3434</phone1> <phone2>636-555-5712</phone2> <birthdate>25.06.1931</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-05-12</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-05-12</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Mary Borden</fullname> <test></test> </Customer> <Customer> - <account_num>88081979800</account_num> + <accountNum>88081979800</accountNum> <lname>Willson</lname> <fname>Sue</fname> <mi></mi> @@ -819,28 +819,28 @@ <address3></address3> <address4></address4> <city>Tlaxiaco</city> - <state_province>Oaxaca</state_province> - <postal_code>49856</postal_code> + <stateProvince>Oaxaca</stateProvince> + <postalCode>49856</postalCode> <country>Mexico</country> <phone1>467-555-9127</phone1> <phone2>317-555-1262</phone2> <birthdate>13.10.1916</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-06-04</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-06-04</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Sue Willson</fullname> <test></test> </Customer> <Customer> - <account_num>88084045052</account_num> + <accountNum>88084045052</accountNum> <lname>Harris</lname> <fname>Clayton</fname> <mi>J.</mi> @@ -849,28 +849,28 @@ <address3></address3> <address4></address4> <city>Beaverton</city> - <state_province>OR</state_province> - <postal_code>85809</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>85809</postalCode> <country>USA</country> <phone1>814-555-9899</phone1> <phone2>203-555-2721</phone2> <birthdate>13.08.1932</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-02-26</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-02-26</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Clayton Harris</fullname> <test></test> </Customer> <Customer> - <account_num>88096334934</account_num> + <accountNum>88096334934</accountNum> <lname>Contreras</lname> <fname>Whitney</fname> <mi>L.</mi> @@ -879,28 +879,28 @@ <address3></address3> <address4></address4> <city>Metchosin</city> - <state_province>BC</state_province> - <postal_code>37167</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>37167</postalCode> <country>Canada</country> <phone1>648-555-5221</phone1> <phone2>145-555-9556</phone2> <birthdate>07.09.1979</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1990-11-23</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-11-23</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Whitney Contreras</fullname> <test></test> </Customer> <Customer> - <account_num>88112406730</account_num> + <accountNum>88112406730</accountNum> <lname>Pusedu</lname> <fname>Boyd</fname> <mi>A.</mi> @@ -909,28 +909,28 @@ <address3></address3> <address4></address4> <city>Metchosin</city> - <state_province>BC</state_province> - <postal_code>39282</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>39282</postalCode> <country>Canada</country> <phone1>898-555-2599</phone1> <phone2>833-555-7621</phone2> <birthdate>11.08.1933</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-09-03</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1992-09-03</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Boyd Pusedu</fullname> <test></test> </Customer> <Customer> - <account_num>88115072846</account_num> + <accountNum>88115072846</accountNum> <lname>Stedman</lname> <fname>Cian</fname> <mi>F.</mi> @@ -939,28 +939,28 @@ <address3></address3> <address4></address4> <city>Westminster</city> - <state_province>BC</state_province> - <postal_code>55800</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>55800</postalCode> <country>Canada</country> <phone1>994-555-9206</phone1> <phone2>799-555-4085</phone2> <birthdate>01.07.1928</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-01-03</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-01-03</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Cian Stedman</fullname> <test></test> </Customer> <Customer> - <account_num>88118441700</account_num> + <accountNum>88118441700</accountNum> <lname>Zocchi</lname> <fname>Michele</fname> <mi>A.</mi> @@ -969,28 +969,28 @@ <address3></address3> <address4></address4> <city>Hidalgo</city> - <state_province>Zacatecas</state_province> - <postal_code>24077</postal_code> + <stateProvince>Zacatecas</stateProvince> + <postalCode>24077</postalCode> <country>Mexico</country> <phone1>606-555-8871</phone1> <phone2>610-555-9778</phone2> <birthdate>27.07.1917</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-11-13</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-11-13</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Michele Zocchi</fullname> <test></test> </Customer> <Customer> - <account_num>88137775063</account_num> + <accountNum>88137775063</accountNum> <lname>Walsh</lname> <fname>Jean</fname> <mi>M.</mi> @@ -999,28 +999,28 @@ <address3></address3> <address4></address4> <city>Los Angeles</city> - <state_province>CA</state_province> - <postal_code>79465</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>79465</postalCode> <country>USA</country> <phone1>725-555-5106</phone1> <phone2>837-555-8528</phone2> <birthdate>17.06.1969</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-03-12</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-03-12</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Jean Walsh</fullname> <test></test> </Customer> <Customer> - <account_num>88144207000</account_num> + <accountNum>88144207000</accountNum> <lname>Renfro</lname> <fname>Leopoldo</fname> <mi>E.</mi> @@ -1029,28 +1029,28 @@ <address3></address3> <address4></address4> <city>Coronado</city> - <state_province>CA</state_province> - <postal_code>13903</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>13903</postalCode> <country>USA</country> <phone1>360-555-3399</phone1> <phone2>910-555-7506</phone2> <birthdate>26.03.1972</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-07-13</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-13</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Leopoldo Renfro</fullname> <test></test> </Customer> <Customer> - <account_num>88161163926</account_num> + <accountNum>88161163926</accountNum> <lname>Brockett</lname> <fname>Donna</fname> <mi>A.</mi> @@ -1059,28 +1059,28 @@ <address3></address3> <address4></address4> <city>La Cruz</city> - <state_province>Sinaloa</state_province> - <postal_code>61745</postal_code> + <stateProvince>Sinaloa</stateProvince> + <postalCode>61745</postalCode> <country>Mexico</country> <phone1>741-555-1921</phone1> <phone2>260-555-4885</phone2> <birthdate>08.04.1967</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-11-20</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-11-20</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Donna Brockett</fullname> <test></test> </Customer> <Customer> - <account_num>88980621695</account_num> + <accountNum>88980621695</accountNum> <lname>Morreale</lname> <fname>Ann</fname> <mi></mi> @@ -1089,28 +1089,28 @@ <address3></address3> <address4></address4> <city>Renton</city> - <state_province>WA</state_province> - <postal_code>84255</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>84255</postalCode> <country>USA</country> <phone1>289-555-7651</phone1> <phone2>270-555-9929</phone2> <birthdate>05.07.1958</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-10-24</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1990-10-24</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Ann Morreale</fullname> <test></test> </Customer> <Customer> - <account_num>89028214812</account_num> + <accountNum>89028214812</accountNum> <lname>Rupert</lname> <fname>Sheila</fname> <mi>M.</mi> @@ -1119,28 +1119,28 @@ <address3></address3> <address4></address4> <city>Glendale</city> - <state_province>CA</state_province> - <postal_code>69451</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>69451</postalCode> <country>USA</country> <phone1>101-555-4344</phone1> <phone2>190-555-9137</phone2> <birthdate>17.08.1975</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>5</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>5</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1990-11-24</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1990-11-24</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Sheila Rupert</fullname> <test></test> </Customer> <Customer> - <account_num>89028284549</account_num> + <accountNum>89028284549</accountNum> <lname>Pierson</lname> <fname>Ashley</fname> <mi>E.</mi> @@ -1149,28 +1149,28 @@ <address3></address3> <address4></address4> <city>Westminster</city> - <state_province>BC</state_province> - <postal_code>32697</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>32697</postalCode> <country>Canada</country> <phone1>328-555-3094</phone1> <phone2>616-555-4915</phone2> <birthdate>25.06.1964</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-04-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-04-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Ashley Pierson</fullname> <test></test> </Customer> <Customer> - <account_num>89029260873</account_num> + <accountNum>89029260873</accountNum> <lname>Nickels</lname> <fname>Ivan</fname> <mi></mi> @@ -1179,28 +1179,28 @@ <address3></address3> <address4></address4> <city>Victoria</city> - <state_province>BC</state_province> - <postal_code>56762</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>56762</postalCode> <country>Canada</country> <phone1>401-555-2072</phone1> <phone2>559-555-2751</phone2> <birthdate>16.03.1974</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-10-27</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-10-27</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Ivan Nickels</fullname> <test></test> </Customer> <Customer> - <account_num>89035692811</account_num> + <accountNum>89035692811</accountNum> <lname>Neuhauser</lname> <fname>Chad</fname> <mi>D.</mi> @@ -1209,28 +1209,28 @@ <address3></address3> <address4></address4> <city>Victoria</city> - <state_province>BC</state_province> - <postal_code>58876</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>58876</postalCode> <country>Canada</country> <phone1>651-555-8451</phone1> <phone2>347-555-9815</phone2> <birthdate>17.10.1960</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-08-15</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-08-15</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Chad Neuhauser</fullname> <test></test> </Customer> <Customer> - <account_num>89059253334</account_num> + <accountNum>89059253334</accountNum> <lname>Coke</lname> <fname>Ann</fname> <mi></mi> @@ -1239,28 +1239,28 @@ <address3></address3> <address4></address4> <city>Sooke</city> - <state_province>BC</state_province> - <postal_code>75395</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>75395</postalCode> <country>Canada</country> <phone1>747-555-6058</phone1> <phone2>551-555-9937</phone2> <birthdate>05.05.1917</birthdate> - <marital_status>S</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-12-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-12-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Ann Coke</fullname> <test></test> </Customer> <Customer> - <account_num>89061329364</account_num> + <accountNum>89061329364</accountNum> <lname>Scarbrough</lname> <fname>Jon</fname> <mi>M.</mi> @@ -1269,28 +1269,28 @@ <address3></address3> <address4></address4> <city>Kirkland</city> - <state_province>WA</state_province> - <postal_code>43672</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>43672</postalCode> <country>USA</country> <phone1>120-555-2065</phone1> <phone2>363-555-6629</phone2> <birthdate>12.04.1950</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-07-28</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-07-28</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Jon Scarbrough</fullname> <test></test> </Customer> <Customer> - <account_num>89073216915</account_num> + <accountNum>89073216915</accountNum> <lname>Martensen</lname> <fname>Lillian</fname> <mi>F.</mi> @@ -1299,28 +1299,28 @@ <address3></address3> <address4></address4> <city>Chula Vista</city> - <state_province>CA</state_province> - <postal_code>26352</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>26352</postalCode> <country>USA</country> <phone1>478-555-1958</phone1> <phone2>590-555-5380</phone2> <birthdate>27.11.1964</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-07-24</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-07-24</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Lillian Martensen</fullname> <test></test> </Customer> <Customer> - <account_num>89090994596</account_num> + <accountNum>89090994596</accountNum> <lname>McCormick</lname> <fname>Mary</fname> <mi>E.</mi> @@ -1329,28 +1329,28 @@ <address3></address3> <address4></address4> <city>Seattle</city> - <state_province>WA</state_province> - <postal_code>33498</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>33498</postalCode> <country>USA</country> <phone1>113-555-9251</phone1> <phone2>424-555-9701</phone2> <birthdate>06.05.1929</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-11-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-11-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Mary McCormick</fullname> <test></test> </Customer> <Customer> - <account_num>89130846858</account_num> + <accountNum>89130846858</accountNum> <lname>Sparacino</lname> <fname>James</fname> <mi>W.</mi> @@ -1359,28 +1359,28 @@ <address3></address3> <address4></address4> <city>San Jose</city> - <state_province>CA</state_province> - <postal_code>81339</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>81339</postalCode> <country>USA</country> <phone1>606-555-1032</phone1> <phone2>786-555-9339</phone2> <birthdate>08.04.1959</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-08-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-08-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>James Sparacino</fullname> <test></test> </Customer> <Customer> - <account_num>89144885540</account_num> + <accountNum>89144885540</accountNum> <lname>Racette</lname> <fname>John</fname> <mi>L.</mi> @@ -1389,28 +1389,28 @@ <address3></address3> <address4></address4> <city>Ballard</city> - <state_province>WA</state_province> - <postal_code>54647</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>54647</postalCode> <country>USA</country> <phone1>263-555-6954</phone1> <phone2>882-555-6946</phone2> <birthdate>04.03.1953</birthdate> - <marital_status>S</marital_status> - <yearly_income>$150K +</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$150K +</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-05-07</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1990-05-07</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>John Racette</fullname> <test></test> </Customer> <Customer> - <account_num>89165082573</account_num> + <accountNum>89165082573</accountNum> <lname>Thompson</lname> <fname>Edwardo</fname> <mi>A.</mi> @@ -1419,28 +1419,28 @@ <address3></address3> <address4></address4> <city>Guadalajara</city> - <state_province>Jalisco</state_province> - <postal_code>68650</postal_code> + <stateProvince>Jalisco</stateProvince> + <postalCode>68650</postalCode> <country>Mexico</country> <phone1>667-555-4104</phone1> <phone2>494-555-6611</phone2> <birthdate>26.11.1914</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-11-05</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-11-05</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Edwardo Thompson</fullname> <test></test> </Customer> <Customer> - <account_num>89177710413</account_num> + <accountNum>89177710413</accountNum> <lname>Warren</lname> <fname>Sam</fname> <mi>L.</mi> @@ -1449,28 +1449,28 @@ <address3></address3> <address4></address4> <city>Lebanon</city> - <state_province>OR</state_province> - <postal_code>81192</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>81192</postalCode> <country>USA</country> <phone1>587-555-3311</phone1> <phone2>613-555-2846</phone2> <birthdate>25.10.1916</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-12-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-12-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Sam Warren</fullname> <test></test> </Customer> <Customer> - <account_num>89202826619</account_num> + <accountNum>89202826619</accountNum> <lname>Chow-Wang</lname> <fname>Shelby</fname> <mi>S.</mi> @@ -1479,28 +1479,28 @@ <address3></address3> <address4></address4> <city>Port Hammond</city> - <state_province>BC</state_province> - <postal_code>60991</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>60991</postalCode> <country>Canada</country> <phone1>113-555-8089</phone1> <phone2>248-555-1139</phone2> <birthdate>17.05.1966</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-11-20</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-11-20</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Shelby Chow-Wang</fullname> <test></test> </Customer> <Customer> - <account_num>89205031394</account_num> + <accountNum>89205031394</accountNum> <lname>Wood</lname> <fname>Nelly</fname> <mi></mi> @@ -1509,28 +1509,28 @@ <address3></address3> <address4></address4> <city>Sooke</city> - <state_province>BC</state_province> - <postal_code>91914</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>91914</postalCode> <country>Canada</country> <phone1>956-555-5925</phone1> <phone2>629-555-8661</phone2> <birthdate>23.08.1944</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-10-02</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-10-02</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Nelly Wood</fullname> <test></test> </Customer> <Customer> - <account_num>89207509756</account_num> + <accountNum>89207509756</accountNum> <lname>Morgan</lname> <fname>Jackie</fname> <mi></mi> @@ -1539,28 +1539,28 @@ <address3></address3> <address4></address4> <city>La Mesa</city> - <state_province>CA</state_province> - <postal_code>11949</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>11949</postalCode> <country>USA</country> <phone1>744-555-3989</phone1> <phone2>286-555-5582</phone2> <birthdate>15.04.1910</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-10-03</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-10-03</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Jackie Morgan</fullname> <test></test> </Customer> <Customer> - <account_num>89213179945</account_num> + <accountNum>89213179945</accountNum> <lname>Boje</lname> <fname>Gavin</fname> <mi>S.</mi> @@ -1569,28 +1569,28 @@ <address3></address3> <address4></address4> <city>Tacoma</city> - <state_province>WA</state_province> - <postal_code>81740</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>81740</postalCode> <country>USA</country> <phone1>709-555-9453</phone1> <phone2>690-555-2732</phone2> <birthdate>19.12.1961</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-06-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-06-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Gavin Boje</fullname> <test></test> </Customer> <Customer> - <account_num>89255880700</account_num> + <accountNum>89255880700</accountNum> <lname>Tsujimoto</lname> <fname>Marlene</fname> <mi></mi> @@ -1599,28 +1599,28 @@ <address3></address3> <address4></address4> <city>Milwaukie</city> - <state_province>OR</state_province> - <postal_code>12447</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>12447</postalCode> <country>USA</country> <phone1>760-555-9804</phone1> <phone2>610-555-1939</phone2> <birthdate>02.09.1940</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-03-08</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-03-08</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Marlene Tsujimoto</fullname> <test></test> </Customer> <Customer> - <account_num>89277064800</account_num> + <accountNum>89277064800</accountNum> <lname>Bouton</lname> <fname>RitaIva</fname> <mi></mi> @@ -1629,28 +1629,28 @@ <address3></address3> <address4></address4> <city>Renton</city> - <state_province>WA</state_province> - <postal_code>48400</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>48400</postalCode> <country>USA</country> <phone1>748-555-4896</phone1> <phone2>136-555-6718</phone2> <birthdate>08.03.1961</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-04-14</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1990-04-14</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>RitaIva Bouton</fullname> <test></test> </Customer> <Customer> - <account_num>89277392000</account_num> + <accountNum>89277392000</accountNum> <lname>Gras</lname> <fname>Dell</fname> <mi></mi> @@ -1659,28 +1659,28 @@ <address3></address3> <address4></address4> <city>Grossmont</city> - <state_province>CA</state_province> - <postal_code>98756</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>98756</postalCode> <country>USA</country> <phone1>821-555-3875</phone1> <phone2>978-555-4553</phone2> <birthdate>23.08.1933</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-09-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Dell Gras</fullname> <test></test> </Customer> <Customer> - <account_num>89286039471</account_num> + <accountNum>89286039471</accountNum> <lname>Solano</lname> <fname>Christopher</fname> <mi>R.</mi> @@ -1689,28 +1689,28 @@ <address3></address3> <address4></address4> <city>Ladner</city> - <state_province>BC</state_province> - <postal_code>18729</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>18729</postalCode> <country>Canada</country> <phone1>171-555-1254</phone1> <phone2>767-555-2618</phone2> <birthdate>05.03.1963</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-11-18</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-11-18</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Christopher Solano</fullname> <test></test> </Customer> <Customer> - <account_num>89286860227</account_num> + <accountNum>89286860227</accountNum> <lname>Armstrong</lname> <fname>George</fname> <mi>H.</mi> @@ -1719,28 +1719,28 @@ <address3></address3> <address4></address4> <city>Los Angeles</city> - <state_province>CA</state_province> - <postal_code>18391</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>18391</postalCode> <country>USA</country> <phone1>267-555-7861</phone1> <phone2>659-555-3393</phone2> <birthdate>17.06.1952</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-10-23</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-10-23</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>George Armstrong</fullname> <test></test> </Customer> <Customer> - <account_num>89288474917</account_num> + <accountNum>89288474917</accountNum> <lname>Aldred</lname> <fname>Kristine</fname> <mi>G.</mi> @@ -1749,28 +1749,28 @@ <address3></address3> <address4></address4> <city>Coronado</city> - <state_province>CA</state_province> - <postal_code>85666</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>85666</postalCode> <country>USA</country> <phone1>466-555-8179</phone1> <phone2>470-555-9086</phone2> <birthdate>22.02.1947</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-01-01</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-01-01</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Kristine Aldred</fullname> <test></test> </Customer> <Customer> - <account_num>89307073354</account_num> + <accountNum>89307073354</accountNum> <lname>Jorgenson</lname> <fname>Tom</fname> <mi>L.</mi> @@ -1779,28 +1779,28 @@ <address3></address3> <address4></address4> <city>Milwaukie</city> - <state_province>OR</state_province> - <postal_code>42055</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>42055</postalCode> <country>USA</country> <phone1>585-555-4415</phone1> <phone2>697-555-7836</phone2> <birthdate>17.08.1935</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-09-22</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-22</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Tom Jorgenson</fullname> <test></test> </Customer> <Customer> - <account_num>89309052824</account_num> + <accountNum>89309052824</accountNum> <lname>Turner</lname> <fname>Dana</fname> <mi></mi> @@ -1809,28 +1809,28 @@ <address3></address3> <address4></address4> <city>Oak Bay</city> - <state_province>BC</state_province> - <postal_code>75493</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>75493</postalCode> <country>Canada</country> <phone1>220-555-2708</phone1> <phone2>531-555-3157</phone2> <birthdate>20.09.1932</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-04-26</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-04-26</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Dana Turner</fullname> <test></test> </Customer> <Customer> - <account_num>89314846396</account_num> + <accountNum>89314846396</accountNum> <lname>Zakerski</lname> <fname>Terry</fname> <mi>D.</mi> @@ -1839,28 +1839,28 @@ <address3></address3> <address4></address4> <city>Lemon Grove</city> - <state_province>CA</state_province> - <postal_code>97042</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>97042</postalCode> <country>USA</country> <phone1>601-555-1229</phone1> <phone2>781-555-9536</phone2> <birthdate>07.06.1932</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1990-09-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-09-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Terry Zakerski</fullname> <test></test> </Customer> <Customer> - <account_num>89319840669</account_num> + <accountNum>89319840669</accountNum> <lname>Carlson</lname> <fname>David</fname> <mi></mi> @@ -1869,28 +1869,28 @@ <address3></address3> <address4></address4> <city>Walla Walla</city> - <state_province>WA</state_province> - <postal_code>96641</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>96641</postalCode> <country>USA</country> <phone1>259-555-7150</phone1> <phone2>217-555-1801</phone2> <birthdate>24.07.1963</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-05-05</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-05-05</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>David Carlson</fullname> <test></test> </Customer> <Customer> - <account_num>89339179396</account_num> + <accountNum>89339179396</accountNum> <lname>Symons</lname> <fname>Linda</fname> <mi>L.</mi> @@ -1899,28 +1899,28 @@ <address3></address3> <address4></address4> <city>Lebanon</city> - <state_province>OR</state_province> - <postal_code>84353</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>84353</postalCode> <country>USA</country> <phone1>662-555-4300</phone1> <phone2>489-555-6808</phone2> <birthdate>16.12.1956</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-07-28</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-07-28</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Linda Symons</fullname> <test></test> </Customer> <Customer> - <account_num>89349634647</account_num> + <accountNum>89349634647</accountNum> <lname>Reynolds</lname> <fname>Louis</fname> <mi></mi> @@ -1929,28 +1929,28 @@ <address3></address3> <address4></address4> <city>Los Angeles</city> - <state_province>CA</state_province> - <postal_code>50114</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>50114</postalCode> <country>USA</country> <phone1>582-555-3508</phone1> <phone2>608-555-3043</phone2> <birthdate>13.07.1920</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-05-12</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-05-12</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Louis Reynolds</fullname> <test></test> </Customer> <Customer> - <account_num>89356871247</account_num> + <accountNum>89356871247</accountNum> <lname>Ibsen</lname> <fname>Maureen</fname> <mi>K.</mi> @@ -1959,28 +1959,28 @@ <address3></address3> <address4></address4> <city>Downey</city> - <state_province>CA</state_province> - <postal_code>39870</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>39870</postalCode> <country>USA</country> <phone1>108-555-8286</phone1> <phone2>243-555-1336</phone2> <birthdate>02.10.1932</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-09-26</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-09-26</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Maureen Ibsen</fullname> <test></test> </Customer> <Customer> - <account_num>89359070658</account_num> + <accountNum>89359070658</accountNum> <lname>Ciochon</lname> <fname>Virginia</fname> <mi>R.</mi> @@ -1989,28 +1989,28 @@ <address3></address3> <address4></address4> <city>West Covina</city> - <state_province>CA</state_province> - <postal_code>86178</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>86178</postalCode> <country>USA</country> <phone1>951-555-6122</phone1> <phone2>624-555-8858</phone2> <birthdate>05.10.1942</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-07-14</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-07-14</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Virginia Ciochon</fullname> <test></test> </Customer> <Customer> - <account_num>89368050694</account_num> + <accountNum>89368050694</accountNum> <lname>Berger</lname> <fname>Steve</fname> <mi>A.</mi> @@ -2019,28 +2019,28 @@ <address3></address3> <address4></address4> <city>Bellingham</city> - <state_province>WA</state_province> - <postal_code>27651</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>27651</postalCode> <country>USA</country> <phone1>739-555-4186</phone1> <phone2>281-555-5779</phone2> <birthdate>21.02.1940</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-03-12</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1994-03-12</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Steve Berger</fullname> <test></test> </Customer> <Customer> - <account_num>89376885900</account_num> + <accountNum>89376885900</accountNum> <lname>Bayol</lname> <fname>James</fname> <mi></mi> @@ -2049,28 +2049,28 @@ <address3></address3> <address4></address4> <city>San Carlos</city> - <state_province>CA</state_province> - <postal_code>24735</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>24735</postalCode> <country>USA</country> <phone1>704-555-9650</phone1> <phone2>685-555-2929</phone2> <birthdate>23.06.1953</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-07-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>James Bayol</fullname> <test></test> </Customer> <Customer> - <account_num>89379090666</account_num> + <accountNum>89379090666</accountNum> <lname>Thumann</lname> <fname>Meredith</fname> <mi>J.</mi> @@ -2079,28 +2079,28 @@ <address3></address3> <address4></address4> <city>Metchosin</city> - <state_province>BC</state_province> - <postal_code>99312</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>99312</postalCode> <country>Canada</country> <phone1>755-555-1000</phone1> <phone2>605-555-2136</phone2> <birthdate>14.03.1976</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1991-09-05</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-09-05</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Meredith Thumann</fullname> <test></test> </Customer> <Customer> - <account_num>88161249756</account_num> + <accountNum>88161249756</accountNum> <lname>Anderson</lname> <fname>Laurie</fname> <mi>A.</mi> @@ -2109,28 +2109,28 @@ <address3></address3> <address4></address4> <city>Shawnee</city> - <state_province>BC</state_province> - <postal_code>35052</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>35052</postalCode> <country>Canada</country> <phone1>398-555-7842</phone1> <phone2>356-555-2492</phone2> <birthdate>17.09.1940</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>5</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>5</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-12-03</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-12-03</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Laurie Anderson</fullname> <test></test> </Customer> <Customer> - <account_num>88168829679</account_num> + <accountNum>88168829679</accountNum> <lname>Gomez</lname> <fname>Louis</fname> <mi>C.</mi> @@ -2139,28 +2139,28 @@ <address3></address3> <address4></address4> <city>Yakima</city> - <state_province>WA</state_province> - <postal_code>49055</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>49055</postalCode> <country>USA</country> <phone1>802-555-4992</phone1> <phone2>629-555-7499</phone2> <birthdate>28.02.1925</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-10-07</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-10-07</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Louis Gomez</fullname> <test></test> </Customer> <Customer> - <account_num>88172026872</account_num> + <accountNum>88172026872</accountNum> <lname>Walker</lname> <fname>Julie</fname> <mi>L.</mi> @@ -2169,28 +2169,28 @@ <address3></address3> <address4></address4> <city>Ballard</city> - <state_province>WA</state_province> - <postal_code>87524</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>87524</postalCode> <country>USA</country> <phone1>722-555-4199</phone1> <phone2>987-555-7392</phone2> <birthdate>03.04.1965</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-03-24</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-03-24</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Julie Walker</fullname> <test></test> </Customer> <Customer> - <account_num>88182830810</account_num> + <accountNum>88182830810</accountNum> <lname>Jones</lname> <fname>Jay</fname> <mi>W.</mi> @@ -2199,28 +2199,28 @@ <address3></address3> <address4></address4> <city>Lynnwood</city> - <state_province>WA</state_province> - <postal_code>35227</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>35227</postalCode> <country>USA</country> <phone1>248-555-8978</phone1> <phone2>383-555-2028</phone2> <birthdate>25.03.1913</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-03-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-03-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Jay Jones</fullname> <test></test> </Customer> <Customer> - <account_num>88185078501</account_num> + <accountNum>88185078501</accountNum> <lname>Winfrey</lname> <fname>Gayle</fname> <mi>J.</mi> @@ -2229,28 +2229,28 @@ <address3></address3> <address4></address4> <city>Port Orchard</city> - <state_province>WA</state_province> - <postal_code>66150</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>66150</postalCode> <country>USA</country> <phone1>191-555-6813</phone1> <phone2>764-555-9549</phone2> <birthdate>23.06.1917</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-05-26</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1994-05-26</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Gayle Winfrey</fullname> <test></test> </Customer> <Customer> - <account_num>88203880800</account_num> + <accountNum>88203880800</accountNum> <lname>Brown</lname> <fname>Yasmina</fname> <mi></mi> @@ -2259,28 +2259,28 @@ <address3></address3> <address4></address4> <city>Downey</city> - <state_province>CA</state_province> - <postal_code>85184</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>85184</postalCode> <country>USA</country> <phone1>569-555-5452</phone1> <phone2>351-555-1703</phone2> <birthdate>17.06.1921</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-06-18</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-06-18</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Yasmina Brown</fullname> <test></test> </Customer> <Customer> - <account_num>88243577480</account_num> + <accountNum>88243577480</accountNum> <lname>Touchstone</lname> <fname>Joseph</fname> <mi>A. C.</mi> @@ -2289,28 +2289,28 @@ <address3></address3> <address4></address4> <city>Salem</city> - <state_province>OR</state_province> - <postal_code>55976</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>55976</postalCode> <country>USA</country> <phone1>774-555-5574</phone1> <phone2>754-555-7853</phone2> <birthdate>24.06.1940</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-05-02</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1994-05-02</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Joseph Touchstone</fullname> <test></test> </Customer> <Customer> - <account_num>88249907493</account_num> + <accountNum>88249907493</accountNum> <lname>Bakhtyari</lname> <fname>Mary</fname> <mi>J.</mi> @@ -2319,28 +2319,28 @@ <address3></address3> <address4></address4> <city>Tacoma</city> - <state_province>WA</state_province> - <postal_code>41172</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>41172</postalCode> <country>USA</country> <phone1>585-555-2267</phone1> <phone2>435-555-3403</phone2> <birthdate>10.07.1957</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-06-02</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-06-02</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Mary Bakhtyari</fullname> <test></test> </Customer> <Customer> - <account_num>88262524604</account_num> + <accountNum>88262524604</accountNum> <lname>Glass</lname> <fname>Melvin</fname> <mi>W.</mi> @@ -2349,28 +2349,28 @@ <address3></address3> <address4></address4> <city>Lemon Grove</city> - <state_province>CA</state_province> - <postal_code>77125</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>77125</postalCode> <country>USA</country> <phone1>812-555-1017</phone1> <phone2>200-555-2838</phone2> <birthdate>18.04.1946</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-11-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-11-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Melvin Glass</fullname> <test></test> </Customer> <Customer> - <account_num>88265968561</account_num> + <accountNum>88265968561</accountNum> <lname>Cohen</lname> <fname>Kristin</fname> <mi>S.</mi> @@ -2379,28 +2379,28 @@ <address3></address3> <address4></address4> <city>Milwaukie</city> - <state_province>OR</state_province> - <postal_code>28482</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>28482</postalCode> <country>USA</country> <phone1>646-555-5338</phone1> <phone2>143-555-9674</phone2> <birthdate>25.10.1944</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-05-05</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-05-05</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Kristin Cohen</fullname> <test></test> </Customer> <Customer> - <account_num>88275710344</account_num> + <accountNum>88275710344</accountNum> <lname>Kharman</lname> <fname>Susan</fname> <mi></mi> @@ -2409,28 +2409,28 @@ <address3></address3> <address4></address4> <city>Richmond</city> - <state_province>CA</state_province> - <postal_code>30597</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>30597</postalCode> <country>USA</country> <phone1>896-555-2717</phone1> <phone2>831-555-7738</phone2> <birthdate>10.08.1941</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-03-23</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-03-23</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Susan Kharman</fullname> <test></test> </Customer> <Customer> - <account_num>88284432888</account_num> + <accountNum>88284432888</accountNum> <lname>Kirschner</lname> <fname>Gordon</fname> <mi>R.</mi> @@ -2439,28 +2439,28 @@ <address3></address3> <address4></address4> <city>Arcadia</city> - <state_province>CA</state_province> - <postal_code>47116</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>47116</postalCode> <country>USA</country> <phone1>331-555-3981</phone1> <phone2>796-555-4203</phone2> <birthdate>24.03.1969</birthdate> - <marital_status>S</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-02-20</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1994-02-20</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Gordon Kirschner</fullname> <test></test> </Customer> <Customer> - <account_num>88304206132</account_num> + <accountNum>88304206132</accountNum> <lname>Burger</lname> <fname>William</fname> <mi>W.</mi> @@ -2469,28 +2469,28 @@ <address3></address3> <address4></address4> <city>Haney</city> - <state_province>BC</state_province> - <postal_code>88099</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>88099</postalCode> <country>Canada</country> <phone1>604-555-8988</phone1> <phone2>608-555-9895</phone2> <birthdate>05.03.1932</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-08-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-08-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>William Burger</fullname> <test></test> </Customer> <Customer> - <account_num>88346847891</account_num> + <accountNum>88346847891</accountNum> <lname>Blau</lname> <fname>Lana</fname> <mi>L.</mi> @@ -2499,28 +2499,28 @@ <address3></address3> <address4></address4> <city>Novato</city> - <state_province>CA</state_province> - <postal_code>70780</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>70780</postalCode> <country>USA</country> <phone1>723-555-5224</phone1> <phone2>835-555-8645</phone2> <birthdate>19.10.1946</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-08-24</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-08-24</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Lana Blau</fullname> <test></test> </Customer> <Customer> - <account_num>88352523400</account_num> + <accountNum>88352523400</accountNum> <lname>Derby</lname> <fname>Donna</fname> <mi></mi> @@ -2529,28 +2529,28 @@ <address3></address3> <address4></address4> <city>Bremerton</city> - <state_province>WA</state_province> - <postal_code>52198</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>52198</postalCode> <country>USA</country> <phone1>358-555-3517</phone1> <phone2>908-555-7624</phone2> <birthdate>25.03.1911</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-11-06</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-11-06</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Donna Derby</fullname> <test></test> </Customer> <Customer> - <account_num>88355388045</account_num> + <accountNum>88355388045</accountNum> <lname>Thomson</lname> <fname>Kathleen</fname> <mi>K.</mi> @@ -2559,28 +2559,28 @@ <address3></address3> <address4></address4> <city>N. Vancouver</city> - <state_province>BC</state_province> - <postal_code>26768</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>26768</postalCode> <country>Canada</country> <phone1>739-555-2038</phone1> <phone2>258-555-5003</phone2> <birthdate>15.04.1949</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-09-26</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-26</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Kathleen Thomson</fullname> <test></test> </Customer> <Customer> - <account_num>88380010700</account_num> + <accountNum>88380010700</accountNum> <lname>Walton</lname> <fname>Gabriel</fname> <mi></mi> @@ -2589,28 +2589,28 @@ <address3></address3> <address4></address4> <city>Milwaukie</city> - <state_province>OR</state_province> - <postal_code>26367</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>26367</postalCode> <country>USA</country> <phone1>396-555-7960</phone1> <phone2>466-555-4870</phone2> <birthdate>11.02.1943</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-09-18</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-18</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Gabriel Walton</fullname> <test></test> </Customer> <Customer> - <account_num>88386346101</account_num> + <accountNum>88386346101</accountNum> <lname>Meastas</lname> <fname>Bishop</fname> <mi></mi> @@ -2619,28 +2619,28 @@ <address3></address3> <address4></address4> <city>Woodland Hills</city> - <state_province>CA</state_province> - <postal_code>14079</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>14079</postalCode> <country>USA</country> <phone1>912-555-7369</phone1> <phone2>739-555-9877</phone2> <birthdate>06.10.1974</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-04-16</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-04-16</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Bishop Meastas</fullname> <test></test> </Customer> <Customer> - <account_num>88386882543</account_num> + <accountNum>88386882543</accountNum> <lname>Kouba</lname> <fname>Geneva</fname> <mi></mi> @@ -2649,28 +2649,28 @@ <address3></address3> <address4></address4> <city>Sooke</city> - <state_province>BC</state_province> - <postal_code>78839</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>78839</postalCode> <country>Canada</country> <phone1>832-555-6577</phone1> <phone2>197-555-9770</phone2> <birthdate>05.10.1976</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-02-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-02-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Geneva Kouba</fullname> <test></test> </Customer> <Customer> - <account_num>88397842049</account_num> + <accountNum>88397842049</accountNum> <lname>Clark</lname> <fname>Tricia</fname> <mi>F.</mi> @@ -2679,28 +2679,28 @@ <address3></address3> <address4></address4> <city>Long Beach</city> - <state_province>CA</state_province> - <postal_code>32712</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>32712</postalCode> <country>USA</country> <phone1>597-555-6013</phone1> <phone2>732-555-8063</phone2> <birthdate>24.04.1956</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-12-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-12-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Tricia Clark</fullname> <test></test> </Customer> <Customer> - <account_num>88398657441</account_num> + <accountNum>88398657441</accountNum> <lname>Munn</lname> <fname>Debi</fname> <mi></mi> @@ -2709,28 +2709,28 @@ <address3></address3> <address4></address4> <city>Arcadia</city> - <state_province>CA</state_province> - <postal_code>61730</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>61730</postalCode> <country>USA</country> <phone1>540-555-3848</phone1> <phone2>874-555-2927</phone2> <birthdate>03.08.1934</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-05-07</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-05-07</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Debi Munn</fullname> <test></test> </Customer> <Customer> - <account_num>88416295647</account_num> + <accountNum>88416295647</accountNum> <lname>Goldberg</lname> <fname>Patricia</fname> <mi></mi> @@ -2739,28 +2739,28 @@ <address3></address3> <address4></address4> <city>Woodburn</city> - <state_province>OR</state_province> - <postal_code>80763</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>80763</postalCode> <country>USA</country> <phone1>989-555-7255</phone1> <phone2>770-555-3505</phone2> <birthdate>22.03.1970</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-05-08</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-05-08</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Patricia Goldberg</fullname> <test></test> </Customer> <Customer> - <account_num>88416842818</account_num> + <accountNum>88416842818</accountNum> <lname>Magenheim</lname> <fname>Susan</fname> <mi>L.</mi> @@ -2769,28 +2769,28 @@ <address3></address3> <address4></address4> <city>Vancouver</city> - <state_province>BC</state_province> - <postal_code>77848</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>77848</postalCode> <country>Canada</country> <phone1>293-555-7377</phone1> <phone2>274-555-9655</phone2> <birthdate>15.09.1939</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-12-15</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-12-15</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Susan Magenheim</fullname> <test></test> </Customer> <Customer> - <account_num>88426868915</account_num> + <accountNum>88426868915</accountNum> <lname>Hance</lname> <fname>Nancy</fname> <mi>D.</mi> @@ -2799,28 +2799,28 @@ <address3></address3> <address4></address4> <city>Tlaxiaco</city> - <state_province>Oaxaca</state_province> - <postal_code>63043</postal_code> + <stateProvince>Oaxaca</stateProvince> + <postalCode>63043</postalCode> <country>Mexico</country> <phone1>471-555-9125</phone1> <phone2>320-555-1260</phone2> <birthdate>09.09.1930</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1991-09-13</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-09-13</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Nancy Hance</fullname> <test></test> </Customer> <Customer> - <account_num>88445172309</account_num> + <accountNum>88445172309</accountNum> <lname>Mehlert</lname> <fname>Rhonda</fname> <mi>L.</mi> @@ -2829,28 +2829,28 @@ <address3></address3> <address4></address4> <city>Beaverton</city> - <state_province>OR</state_province> - <postal_code>98996</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>98996</postalCode> <country>USA</country> <phone1>698-555-7875</phone1> <phone2>986-555-9696</phone2> <birthdate>15.03.1951</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-10-18</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-10-18</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Rhonda Mehlert</fullname> <test></test> </Customer> <Customer> - <account_num>88470690800</account_num> + <accountNum>88470690800</accountNum> <lname>Duran</lname> <fname>Paula</fname> <mi></mi> @@ -2859,28 +2859,28 @@ <address3></address3> <address4></address4> <city>Richmond</city> - <state_province>BC</state_province> - <postal_code>50354</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>50354</postalCode> <country>Canada</country> <phone1>532-555-3196</phone1> <phone2>928-555-7532</phone2> <birthdate>03.08.1923</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-04-21</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-04-21</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Paula Duran</fullname> <test></test> </Customer> <Customer> - <account_num>88486376400</account_num> + <accountNum>88486376400</accountNum> <lname>Earley</lname> <fname>Margaret</fname> <mi></mi> @@ -2889,28 +2889,28 @@ <address3></address3> <address4></address4> <city>Richmond</city> - <state_province>BC</state_province> - <postal_code>52469</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>52469</postalCode> <country>Canada</country> <phone1>121-555-4232</phone1> <phone2>717-555-5596</phone2> <birthdate>12.03.1952</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-09-07</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-09-07</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Margaret Earley</fullname> <test></test> </Customer> <Customer> - <account_num>88506181836</account_num> + <accountNum>88506181836</accountNum> <lname>Horne</lname> <fname>Elizabeth</fname> <mi></mi> @@ -2919,28 +2919,28 @@ <address3></address3> <address4></address4> <city>Port Orchard</city> - <state_province>WA</state_province> - <postal_code>42696</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>42696</postalCode> <country>USA</country> <phone1>217-555-1839</phone1> <phone2>682-555-2060</phone2> <birthdate>09.04.1934</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-05-28</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-05-28</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Elizabeth Horne</fullname> <test></test> </Customer> <Customer> - <account_num>88506991900</account_num> + <accountNum>88506991900</accountNum> <lname>Hunt</lname> <fname>Mary</fname> <mi></mi> @@ -2949,28 +2949,28 @@ <address3></address3> <address4></address4> <city>San Jose</city> - <state_province>CA</state_province> - <postal_code>10972</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>10972</postalCode> <country>USA</country> <phone1>490-555-6846</phone1> <phone2>493-555-7753</phone2> <birthdate>14.12.1929</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-08-06</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1990-08-06</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Mary Hunt</fullname> <test></test> </Customer> <Customer> - <account_num>88507222533</account_num> + <accountNum>88507222533</accountNum> <lname>Allen</lname> <fname>Libby</fname> <mi></mi> @@ -2979,28 +2979,28 @@ <address3></address3> <address4></address4> <city>N. Vancouver</city> - <state_province>BC</state_province> - <postal_code>92652</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>92652</postalCode> <country>Canada</country> <phone1>848-555-6739</phone1> <phone2>721-555-6503</phone2> <birthdate>26.04.1975</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-07-16</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-07-16</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Libby Allen</fullname> <test></test> </Customer> <Customer> - <account_num>88530171513</account_num> + <accountNum>88530171513</accountNum> <lname>Bruno</lname> <fname>Bonnie</fname> <mi>F.</mi> @@ -3009,28 +3009,28 @@ <address3></address3> <address4></address4> <city>Langford</city> - <state_province>BC</state_province> - <postal_code>99797</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>99797</postalCode> <country>Canada</country> <phone1>244-555-1375</phone1> <phone2>794-555-5482</phone2> <birthdate>02.05.1972</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-10-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-10-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Bonnie Bruno</fullname> <test></test> </Customer> <Customer> - <account_num>88531920313</account_num> + <accountNum>88531920313</accountNum> <lname>Bowers</lname> <fname>Angela</fname> <mi>W.</mi> @@ -3039,28 +3039,28 @@ <address3></address3> <address4></address4> <city>Acapulco</city> - <state_province>Guerrero</state_province> - <postal_code>48640</postal_code> + <stateProvince>Guerrero</stateProvince> + <postalCode>48640</postalCode> <country>Mexico</country> <phone1>737-555-2156</phone1> <phone2>256-555-5120</phone2> <birthdate>27.05.1914</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-04-24</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-04-24</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Angela Bowers</fullname> <test></test> </Customer> <Customer> - <account_num>88537885546</account_num> + <accountNum>88537885546</accountNum> <lname>Gonzales</lname> <fname>Donald</fname> <mi>C.</mi> @@ -3069,28 +3069,28 @@ <address3></address3> <address4></address4> <city>Hidalgo</city> - <state_province>Zacatecas</state_province> - <postal_code>48239</postal_code> + <stateProvince>Zacatecas</stateProvince> + <postalCode>48239</postalCode> <country>Mexico</country> <phone1>394-555-8077</phone1> <phone2>352-555-2727</phone2> <birthdate>04.03.1952</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1994-11-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-11-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Clerical</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Donald Gonzales</fullname> <test></test> </Customer> <Customer> - <account_num>88539907932</account_num> + <accountNum>88539907932</accountNum> <lname>Valdez</lname> <fname>Sylvester</fname> <mi></mi> @@ -3099,28 +3099,28 @@ <address3></address3> <address4></address4> <city>National City</city> - <state_province>CA</state_province> - <postal_code>35950</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>35950</postalCode> <country>USA</country> <phone1>137-555-8885</phone1> <phone2>625-555-7734</phone2> <birthdate>12.05.1933</birthdate> - <marital_status>M</marital_status> - <yearly_income>$150K +</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$150K +</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-02-08</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-02-08</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Sylvester Valdez</fullname> <test></test> </Customer> <Customer> - <account_num>88556258678</account_num> + <accountNum>88556258678</accountNum> <lname>Stewart</lname> <fname>John</fname> <mi>C.</mi> @@ -3129,28 +3129,28 @@ <address3></address3> <address4></address4> <city>Long Beach</city> - <state_province>CA</state_province> - <postal_code>74419</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>74419</postalCode> <country>USA</country> <phone1>717-555-4435</phone1> <phone2>983-555-7627</phone2> <birthdate>20.03.1979</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-11-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-11-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>John Stewart</fullname> <test></test> </Customer> <Customer> - <account_num>88589957952</account_num> + <accountNum>88589957952</accountNum> <lname>Velasquez</lname> <fname>Barney</fname> <mi>C.</mi> @@ -3159,28 +3159,28 @@ <address3></address3> <address4></address4> <city>Cliffside</city> - <state_province>BC</state_province> - <postal_code>54584</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>54584</postalCode> <country>Canada</country> <phone1>483-555-3870</phone1> <phone2>618-555-5920</phone2> <birthdate>09.05.1921</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-06-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-06-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Barney Velasquez</fullname> <test></test> </Customer> <Customer> - <account_num>88593557476</account_num> + <accountNum>88593557476</accountNum> <lname>Dubois</lname> <fname>Kenneth</fname> <mi>R.</mi> @@ -3189,28 +3189,28 @@ <address3></address3> <address4></address4> <city>Shawnee</city> - <state_province>BC</state_province> - <postal_code>59214</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>59214</postalCode> <country>Canada</country> <phone1>425-555-1706</phone1> <phone2>998-555-4442</phone2> <birthdate>13.05.1931</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-02-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-02-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Kenneth Dubois</fullname> <test></test> </Customer> <Customer> - <account_num>88597859740</account_num> + <accountNum>88597859740</accountNum> <lname>Maestas</lname> <fname>Kate</fname> <mi>A.</mi> @@ -3219,28 +3219,28 @@ <address3></address3> <address4></address4> <city>Newton</city> - <state_province>BC</state_province> - <postal_code>76633</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>76633</postalCode> <country>Canada</country> <phone1>214-555-8770</phone1> <phone2>656-555-1363</phone2> <birthdate>01.08.1929</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-09-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Kate Maestas</fullname> <test></test> </Customer> <Customer> - <account_num>88604978322</account_num> + <accountNum>88604978322</accountNum> <lname>Underwood</lname> <fname>Josie</fname> <mi>B.</mi> @@ -3249,28 +3249,28 @@ <address3></address3> <address4></address4> <city>West Covina</city> - <state_province>CA</state_province> - <postal_code>47425</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>47425</postalCode> <country>USA</country> <phone1>179-555-5235</phone1> <phone2>160-555-7513</phone2> <birthdate>03.02.1942</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-08-02</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-08-02</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Josie Underwood</fullname> <test></test> </Customer> <Customer> - <account_num>88620250821</account_num> + <accountNum>88620250821</accountNum> <lname>Strain</lname> <fname>Ramon</fname> <mi></mi> @@ -3279,28 +3279,28 @@ <address3></address3> <address4></address4> <city>Palo Alto</city> - <state_province>CA</state_province> - <postal_code>32621</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>32621</postalCode> <country>USA</country> <phone1>890-555-1927</phone1> <phone2>979-555-6720</phone2> <birthdate>21.10.1965</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-02-24</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-02-24</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Ramon Strain</fullname> <test></test> </Customer> <Customer> - <account_num>88622546792</account_num> + <accountNum>88622546792</accountNum> <lname>Azari</lname> <fname>Pat</fname> <mi>C.</mi> @@ -3309,28 +3309,28 @@ <address3></address3> <address4></address4> <city>Santa Monica</city> - <state_province>CA</state_province> - <postal_code>68574</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>68574</postalCode> <country>USA</country> <phone1>217-555-9677</phone1> <phone2>506-555-2499</phone2> <birthdate>24.11.1948</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-02-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-02-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Pat Azari</fullname> <test></test> </Customer> <Customer> - <account_num>88624070286</account_num> + <accountNum>88624070286</accountNum> <lname>Dabit</lname> <fname>Bob</fname> <mi></mi> @@ -3339,28 +3339,28 @@ <address3></address3> <address4></address4> <city>Sooke</city> - <state_province>BC</state_province> - <postal_code>19932</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>19932</postalCode> <country>Canada</country> <phone1>291-555-8656</phone1> <phone2>448-555-9335</phone2> <birthdate>20.05.1964</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-01-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-01-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Bob Dabit</fullname> <test></test> </Customer> <Customer> - <account_num>88631725311</account_num> + <accountNum>88631725311</accountNum> <lname>Carmona</lname> <fname>Marty</fname> <mi>T.</mi> @@ -3369,28 +3369,28 @@ <address3></address3> <address4></address4> <city>Sooke</city> - <state_province>BC</state_province> - <postal_code>22047</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>22047</postalCode> <country>Canada</country> <phone1>541-555-6035</phone1> <phone2>237-555-7399</phone2> <birthdate>16.04.1943</birthdate> - <marital_status>S</marital_status> - <yearly_income>$150K +</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$150K +</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-03-09</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-03-09</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Marty Carmona</fullname> <test></test> </Customer> <Customer> - <account_num>88638226985</account_num> + <accountNum>88638226985</accountNum> <lname>Saxton</lname> <fname>Gina</fname> <mi>M.</mi> @@ -3399,28 +3399,28 @@ <address3></address3> <address4></address4> <city>Altadena</city> - <state_province>CA</state_province> - <postal_code>38565</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>38565</postalCode> <country>USA</country> <phone1>330-555-4138</phone1> <phone2>795-555-4359</phone2> <birthdate>09.06.1977</birthdate> - <marital_status>S</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-09-12</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1994-09-12</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Gina Saxton</fullname> <test></test> </Customer> <Customer> - <account_num>88648338913</account_num> + <accountNum>88648338913</accountNum> <lname>McLaughlin</lname> <fname>Juan</fname> <mi>R.</mi> @@ -3429,28 +3429,28 @@ <address3></address3> <address4></address4> <city>Burnaby</city> - <state_province>BC</state_province> - <postal_code>68422</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>68422</postalCode> <country>Canada</country> <phone1>602-555-9145</phone1> <phone2>845-555-4709</phone2> <birthdate>11.10.1934</birthdate> - <marital_status>S</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-08-14</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-08-14</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Juan McLaughlin</fullname> <test></test> </Customer> <Customer> - <account_num>88656943440</account_num> + <accountNum>88656943440</accountNum> <lname>Eyster</lname> <fname>Carol</fname> <mi></mi> @@ -3459,28 +3459,28 @@ <address3></address3> <address4></address4> <city>Albany</city> - <state_province>OR</state_province> - <postal_code>62230</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>62230</postalCode> <country>USA</country> <phone1>960-555-9038</phone1> <phone2>833-555-8802</phone2> <birthdate>04.02.1954</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1994-04-16</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-04-16</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Carol Eyster</fullname> <test></test> </Customer> <Customer> - <account_num>88662506341</account_num> + <accountNum>88662506341</accountNum> <lname>Henry</lname> <fname>Nancy</fname> <mi>J.</mi> @@ -3489,28 +3489,28 @@ <address3></address3> <address4></address4> <city>Bremerton</city> - <state_province>WA</state_province> - <postal_code>95667</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>95667</postalCode> <country>USA</country> <phone1>356-555-3673</phone1> <phone2>906-555-7780</phone2> <birthdate>04.10.1913</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-03-03</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-03-03</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Nancy Henry</fullname> <test></test> </Customer> <Customer> - <account_num>88665478229</account_num> + <accountNum>88665478229</accountNum> <lname>Barros</lname> <fname>Chris</fname> <mi>C.</mi> @@ -3519,28 +3519,28 @@ <address3></address3> <address4></address4> <city>N. Vancouver</city> - <state_province>BC</state_province> - <postal_code>18218</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>18218</postalCode> <country>Canada</country> <phone1>737-555-2195</phone1> <phone2>256-555-5159</phone2> <birthdate>26.07.1957</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-05-21</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-05-21</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Chris Barros</fullname> <test></test> </Customer> <Customer> - <account_num>88673519492</account_num> + <accountNum>88673519492</accountNum> <lname>Groome</lname> <fname>Christopher</fname> <mi>J.</mi> @@ -3549,28 +3549,28 @@ <address3></address3> <address4></address4> <city>Milwaukie</city> - <state_province>OR</state_province> - <postal_code>17817</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>17817</postalCode> <country>USA</country> <phone1>634-555-2773</phone1> <phone2>353-555-2766</phone2> <birthdate>28.01.1957</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-09-07</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-09-07</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Christopher Groome</fullname> <test></test> </Customer> <Customer> - <account_num>88683427572</account_num> + <accountNum>88683427572</accountNum> <lname>Hill</lname> <fname>Anna</fname> <mi>L.</mi> @@ -3579,28 +3579,28 @@ <address3></address3> <address4></address4> <city>Santa Monica</city> - <state_province>CA</state_province> - <postal_code>55288</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>55288</postalCode> <country>USA</country> <phone1>137-555-8923</phone1> <phone2>864-555-2430</phone2> <birthdate>17.02.1912</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-07-27</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1994-07-27</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Anna Hill</fullname> <test></test> </Customer> <Customer> - <account_num>88690803647</account_num> + <accountNum>88690803647</accountNum> <lname>Williams</lname> <fname>Ramon</fname> <mi>N.</mi> @@ -3609,28 +3609,28 @@ <address3></address3> <address4></address4> <city>Walla Walla</city> - <state_province>WA</state_province> - <postal_code>70289</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>70289</postalCode> <country>USA</country> <phone1>718-555-4473</phone1> <phone2>983-555-7666</phone2> <birthdate>22.09.1920</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-05-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-05-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Ramon Williams</fullname> <test></test> </Customer> <Customer> - <account_num>88708876371</account_num> + <accountNum>88708876371</accountNum> <lname>Masters</lname> <fname>Scott</fname> <mi></mi> @@ -3639,28 +3639,28 @@ <address3></address3> <address4></address4> <city>Richmond</city> - <state_province>CA</state_province> - <postal_code>24162</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>24162</postalCode> <country>USA</country> <phone1>483-555-3909</phone1> <phone2>618-555-5959</phone2> <birthdate>08.07.1964</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-08-15</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-08-15</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Scott Masters</fullname> <test></test> </Customer> <Customer> - <account_num>88719449639</account_num> + <accountNum>88719449639</accountNum> <lname>Brady, Jr.</lname> <fname>Joseph</fname> <mi>G.</mi> @@ -3669,28 +3669,28 @@ <address3></address3> <address4></address4> <city>Oakland</city> - <state_province>CA</state_province> - <postal_code>55084</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>55084</postalCode> <country>USA</country> <phone1>426-555-1745</phone1> <phone2>999-555-4480</phone2> <birthdate>07.09.1930</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-03-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-03-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Joseph Brady, Jr.</fullname> <test></test> </Customer> <Customer> - <account_num>88734051585</account_num> + <accountNum>88734051585</accountNum> <lname>Gray</lname> <fname>Ellen</fname> <mi>M.</mi> @@ -3699,28 +3699,28 @@ <address3></address3> <address4></address4> <city>Bellflower</city> - <state_province>CA</state_province> - <postal_code>20209</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>20209</postalCode> <country>USA</country> <phone1>214-555-8809</phone1> <phone2>656-555-1402</phone2> <birthdate>04.12.1972</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-06-22</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-06-22</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Ellen Gray</fullname> <test></test> </Customer> <Customer> - <account_num>88735752105</account_num> + <accountNum>88735752105</accountNum> <lname>Fielder</lname> <fname>Henry</fname> <mi>T.</mi> @@ -3729,28 +3729,28 @@ <address3></address3> <address4></address4> <city>Ballard</city> - <state_province>WA</state_province> - <postal_code>90000</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>90000</postalCode> <country>USA</country> <phone1>179-555-5273</phone1> <phone2>160-555-7552</phone2> <birthdate>03.02.1947</birthdate> - <marital_status>S</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1990-07-24</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-07-24</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Henry Fielder</fullname> <test></test> </Customer> <Customer> - <account_num>88744179606</account_num> + <accountNum>88744179606</accountNum> <lname>Finnell</lname> <fname>Jeanine</fname> <mi>L.</mi> @@ -3759,28 +3759,28 @@ <address3></address3> <address4></address4> <city>Everett</city> - <state_province>WA</state_province> - <postal_code>75196</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>75196</postalCode> <country>USA</country> <phone1>103-555-4226</phone1> <phone2>192-555-9019</phone2> <birthdate>18.06.1932</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-11-27</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-11-27</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Jeanine Finnell</fullname> <test></test> </Customer> <Customer> - <account_num>88750257492</account_num> + <accountNum>88750257492</accountNum> <lname>Schuetz</lname> <fname>Ian</fname> <mi>T.</mi> @@ -3789,28 +3789,28 @@ <address3></address3> <address4></address4> <city>Salem</city> - <state_province>OR</state_province> - <postal_code>12150</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>12150</postalCode> <country>USA</country> <phone1>330-555-2976</phone1> <phone2>618-555-4797</phone2> <birthdate>18.04.1947</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-08-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-08-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Ian Schuetz</fullname> <test></test> </Customer> <Customer> - <account_num>88752945065</account_num> + <accountNum>88752945065</accountNum> <lname>Runyon</lname> <fname>Richard</fname> <mi></mi> @@ -3819,28 +3819,28 @@ <address3></address3> <address4></address4> <city>Concord</city> - <state_province>CA</state_province> - <postal_code>62507</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>62507</postalCode> <country>USA</country> <phone1>403-555-1955</phone1> <phone2>561-555-2633</phone2> <birthdate>11.05.1925</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-11-16</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-11-16</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Richard Runyon</fullname> <test></test> </Customer> <Customer> - <account_num>88771945834</account_num> + <accountNum>88771945834</accountNum> <lname>Potter</lname> <fname>Linda</fname> <mi>M.</mi> @@ -3849,28 +3849,28 @@ <address3></address3> <address4></address4> <city>Concord</city> - <state_province>CA</state_province> - <postal_code>64622</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>64622</postalCode> <country>USA</country> <phone1>653-555-8333</phone1> <phone2>349-555-9697</phone2> <birthdate>15.04.1949</birthdate> - <marital_status>S</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1992-09-23</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-23</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Linda Potter</fullname> <test></test> </Customer> <Customer> - <account_num>88772315979</account_num> + <accountNum>88772315979</accountNum> <lname>Smith</lname> <fname>Mary</fname> <mi>E.</mi> @@ -3879,28 +3879,28 @@ <address3></address3> <address4></address4> <city>La Jolla</city> - <state_province>CA</state_province> - <postal_code>54848</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>54848</postalCode> <country>USA</country> <phone1>749-555-5940</phone1> <phone2>315-555-6162</phone2> <birthdate>06.03.1944</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-12-22</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-12-22</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Mary Smith</fullname> <test></test> </Customer> <Customer> - <account_num>88781231641</account_num> + <accountNum>88781231641</accountNum> <lname>Brumagen</lname> <fname>Barbara</fname> <mi>A.</mi> @@ -3909,28 +3909,28 @@ <address3></address3> <address4></address4> <city>Cliffside</city> - <state_province>BC</state_province> - <postal_code>23125</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>23125</postalCode> <country>Canada</country> <phone1>122-555-1947</phone1> <phone2>365-555-6512</phone2> <birthdate>05.03.1933</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-10-06</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-10-06</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Barbara Brumagen</fullname> <test></test> </Customer> <Customer> - <account_num>88788833022</account_num> + <accountNum>88788833022</accountNum> <lname>Hamilton</lname> <fname>Thelma</fname> <mi>L.</mi> @@ -3939,28 +3939,28 @@ <address3></address3> <address4></address4> <city>Burbank</city> - <state_province>CA</state_province> - <postal_code>58058</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>58058</postalCode> <country>USA</country> <phone1>480-555-1840</phone1> <phone2>353-555-1604</phone2> <birthdate>22.02.1915</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-11-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-11-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Thelma Hamilton</fullname> <test></test> </Customer> <Customer> - <account_num>88804722428</account_num> + <accountNum>88804722428</accountNum> <lname>J Wilbert</lname> <fname>Shirley</fname> <mi>L.</mi> @@ -3969,28 +3969,28 @@ <address3></address3> <address4></address4> <city>Spokane</city> - <state_province>WA</state_province> - <postal_code>39243</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>39243</postalCode> <country>USA</country> <phone1>115-555-9133</phone1> <phone2>426-555-9583</phone2> <birthdate>04.10.1918</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-07-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Shirley J Wilbert</fullname> <test></test> </Customer> <Customer> - <account_num>88820129036</account_num> + <accountNum>88820129036</accountNum> <lname>Ingram</lname> <fname>Jeremy</fname> <mi>T.</mi> @@ -3999,28 +3999,28 @@ <address3></address3> <address4></address4> <city>Tixapan</city> - <state_province>DF</state_province> - <postal_code>60792</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>60792</postalCode> <country>Mexico</country> <phone1>257-555-3997</phone1> <phone2>676-555-6962</phone2> <birthdate>23.03.1924</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-08-02</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1994-08-02</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Jeremy Ingram</fullname> <test></test> </Customer> <Customer> - <account_num>88825504183</account_num> + <accountNum>88825504183</accountNum> <lname>Haddix</lname> <fname>Sharon</fname> <mi>A.</mi> @@ -4029,28 +4029,28 @@ <address3></address3> <address4></address4> <city>Lynnwood</city> - <state_province>WA</state_province> - <postal_code>60392</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>60392</postalCode> <country>USA</country> <phone1>153-555-4576</phone1> <phone2>772-555-4569</phone2> <birthdate>22.05.1956</birthdate> - <marital_status>M</marital_status> - <yearly_income>$150K +</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$150K +</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-09-12</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-09-12</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Sharon Haddix</fullname> <test></test> </Customer> <Customer> - <account_num>88846119642</account_num> + <accountNum>88846119642</accountNum> <lname>Thomas</lname> <fname>Leland</fname> <mi>P.</mi> @@ -4059,28 +4059,28 @@ <address3></address3> <address4></address4> <city>Newport Beach</city> - <state_province>CA</state_province> - <postal_code>48103</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>48103</postalCode> <country>USA</country> <phone1>557-555-1726</phone1> <phone2>384-555-4233</phone2> <birthdate>08.03.1943</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-07-13</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-07-13</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Leland Thomas</fullname> <test></test> </Customer> <Customer> - <account_num>88880816698</account_num> + <accountNum>88880816698</accountNum> <lname>Wilson</lname> <fname>Don</fname> <mi>R.</mi> @@ -4089,28 +4089,28 @@ <address3></address3> <address4></address4> <city>Oak Bay</city> - <state_province>BC</state_province> - <postal_code>13864</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>13864</postalCode> <country>Canada</country> <phone1>238-555-6276</phone1> <phone2>503-555-9469</phone2> <birthdate>22.09.1925</birthdate> - <marital_status>S</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-05-08</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-05-08</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Don Wilson</fullname> <test></test> </Customer> <Customer> - <account_num>88896459341</account_num> + <accountNum>88896459341</accountNum> <lname>Stovall</lname> <fname>Wayne</fname> <mi></mi> @@ -4119,28 +4119,28 @@ <address3></address3> <address4></address4> <city>Coronado</city> - <state_province>CA</state_province> - <postal_code>66736</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>66736</postalCode> <country>USA</country> <phone1>593-555-6287</phone1> <phone2>728-555-8337</phone2> <birthdate>05.04.1931</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-08-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-08-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Wayne Stovall</fullname> <test></test> </Customer> <Customer> - <account_num>88966604471</account_num> + <accountNum>88966604471</accountNum> <lname>Russell</lname> <fname>Douglas</fname> <mi>D.</mi> @@ -4149,28 +4149,28 @@ <address3></address3> <address4></address4> <city>La Mesa</city> - <state_province>CA</state_province> - <postal_code>71367</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>71367</postalCode> <country>USA</country> <phone1>536-555-4122</phone1> <phone2>209-555-6858</phone2> <birthdate>14.11.1947</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-10-21</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-10-21</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Douglas Russell</fullname> <test></test> </Customer> <Customer> - <account_num>88974345326</account_num> + <accountNum>88974345326</accountNum> <lname>Doose</lname> <fname>Maureen</fname> <mi></mi> @@ -4179,28 +4179,28 @@ <address3></address3> <address4></address4> <city>Santa Anita</city> - <state_province>DF</state_province> - <postal_code>90401</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>90401</postalCode> <country>Mexico</country> <phone1>324-555-2187</phone1> <phone2>767-555-3779</phone2> <birthdate>24.07.1939</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-11-13</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-11-13</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Maureen Doose</fullname> <test></test> </Customer> <Customer> - <account_num>87462024688</account_num> + <accountNum>87462024688</accountNum> <lname>Nowmer cdef</lname> <fname>Sheri</fname> <mi>A.</mi> @@ -4209,28 +4209,28 @@ <address3></address3> <address4></address4> <city>Tlaxiaco</city> - <state_province>Oaxaca</state_province> - <postal_code>15057</postal_code> + <stateProvince>Oaxaca</stateProvince> + <postalCode>15057</postalCode> <country>Mexico</country> <phone1>271-555-9715</phone1> <phone2>119-555-1969</phone2> <birthdate>26.08.1961</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-09-10</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-09-10</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Sheri Nowmer</fullname> <test></test> </Customer> <Customer> - <account_num>87470586299</account_num> + <accountNum>87470586299</accountNum> <lname>Whelply der 2.</lname> <fname>Derrick</fname> <mi>I.</mi> @@ -4239,28 +4239,28 @@ <address3></address3> <address4></address4> <city>Sooke</city> - <state_province>BC</state_province> - <postal_code>17172</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>17172</postalCode> <country>Canada</country> <phone1>211-555-7669</phone1> <phone2>807-555-9033</phone2> <birthdate>03.07.1915</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-03-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-03-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Derrick Whelply</fullname> <test></test> </Customer> <Customer> - <account_num>87475757600</account_num> + <accountNum>87475757600</accountNum> <lname>Derry who is this</lname> <fname>Jeanne</fname> <mi></mi> @@ -4269,28 +4269,28 @@ <address3></address3> <address4></address4> <city>Issaquah</city> - <state_province>WA</state_province> - <postal_code>73980</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>73980</postalCode> <country>USA</country> <phone1>656-555-2272</phone1> <phone2>221-555-2493</phone2> <birthdate>21.06.1910</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-06-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-06-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Jeanne Derry</fullname> <test></test> </Customer> <Customer> - <account_num>87500482201</account_num> + <accountNum>87500482201</accountNum> <lname>Spencertracy 2.</lname> <fname>Michael</fname> <mi>J.</mi> @@ -4299,28 +4299,28 @@ <address3></address3> <address4></address4> <city>Burnaby</city> - <state_province>BC</state_province> - <postal_code>74674</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>74674</postalCode> <country>Canada</country> <phone1>929-555-7279</phone1> <phone2>272-555-2844</phone2> <birthdate>20.06.1969</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-05-21</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1994-05-21</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Michael Spence</fullname> <test></test> </Customer> <Customer> - <account_num>87514054179</account_num> + <accountNum>87514054179</accountNum> <lname>Gutierrez</lname> <fname>Maya</fname> <mi></mi> @@ -4329,28 +4329,28 @@ <address3></address3> <address4></address4> <city>Novato</city> - <state_province>CA</state_province> - <postal_code>57355</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>57355</postalCode> <country>USA</country> <phone1>387-555-7172</phone1> <phone2>260-555-6936</phone2> <birthdate>10.05.1951</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-08-21</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1992-08-21</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Maya Gutierrez</fullname> <test></test> </Customer> <Customer> - <account_num>87517782449</account_num> + <accountNum>87517782449</accountNum> <lname>Damstra</lname> <fname>Robert</fname> <mi>F.</mi> @@ -4359,28 +4359,28 @@ <address3></address3> <address4></address4> <city>Lynnwood</city> - <state_province>WA</state_province> - <postal_code>90792</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>90792</postalCode> <country>USA</country> <phone1>922-555-5465</phone1> <phone2>333-555-5915</phone2> <birthdate>08.10.1942</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-04-05</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-04-05</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Robert Damstra</fullname> <test></test> </Customer> <Customer> - <account_num>87521172800</account_num> + <accountNum>87521172800</accountNum> <lname>Kanagaki</lname> <fname>Rebecca</fname> <mi></mi> @@ -4389,28 +4389,28 @@ <address3></address3> <address4></address4> <city>Tlaxiaco</city> - <state_province>Oaxaca</state_province> - <postal_code>13343</postal_code> + <stateProvince>Oaxaca</stateProvince> + <postalCode>13343</postalCode> <country>Mexico</country> <phone1>515-555-6247</phone1> <phone2>934-555-9211</phone2> <birthdate>27.03.1949</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-05-01</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-05-01</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Rebecca Kanagaki</fullname> <test></test> </Customer> <Customer> - <account_num>87539744377</account_num> + <accountNum>87539744377</accountNum> <lname>Brunner</lname> <fname>Kim</fname> <mi>H.</mi> @@ -4419,28 +4419,28 @@ <address3></address3> <address4></address4> <city>San Andres</city> - <state_province>DF</state_province> - <postal_code>12942</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>12942</postalCode> <country>Mexico</country> <phone1>411-555-6825</phone1> <phone2>130-555-6818</phone2> <birthdate>10.08.1922</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-06-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-06-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Kim Brunner</fullname> <test></test> </Customer> <Customer> - <account_num>87544797658</account_num> + <accountNum>87544797658</accountNum> <lname>Blumberg</lname> <fname>Brenda</fname> <mi>C.</mi> @@ -4449,28 +4449,28 @@ <address3></address3> <address4></address4> <city>Richmond</city> - <state_province>BC</state_province> - <postal_code>17256</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>17256</postalCode> <country>Canada</country> <phone1>815-555-3975</phone1> <phone2>642-555-6483</phone2> <birthdate>23.06.1979</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-11-14</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-11-14</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Brenda Blumberg</fullname> <test></test> </Customer> <Customer> - <account_num>87568712234</account_num> + <accountNum>87568712234</accountNum> <lname>Stanz</lname> <fname>Darren</fname> <mi>M.</mi> @@ -4479,28 +4479,28 @@ <address3></address3> <address4></address4> <city>Lake Oswego</city> - <state_province>OR</state_province> - <postal_code>82017</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>82017</postalCode> <country>USA</country> <phone1>847-555-5443</phone1> <phone2>212-555-8635</phone2> <birthdate>26.08.1949</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-05-04</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-05-04</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Darren Stanz</fullname> <test></test> </Customer> <Customer> - <account_num>87572821378</account_num> + <accountNum>87572821378</accountNum> <lname>Murraiin</lname> <fname>Jonathan</fname> <mi>V.</mi> @@ -4509,28 +4509,28 @@ <address3></address3> <address4></address4> <city>La Mesa</city> - <state_province>CA</state_province> - <postal_code>35890</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>35890</postalCode> <country>USA</country> <phone1>612-555-4878</phone1> <phone2>747-555-6928</phone2> <birthdate>20.06.1967</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-04-23</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-04-23</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Jonathan Murraiin</fullname> <test></test> </Customer> <Customer> - <account_num>87579237222</account_num> + <accountNum>87579237222</accountNum> <lname>Creek</lname> <fname>Jewel</fname> <mi>C.</mi> @@ -4539,28 +4539,28 @@ <address3></address3> <address4></address4> <city>Chula Vista</city> - <state_province>CA</state_province> - <postal_code>40520</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>40520</postalCode> <country>USA</country> <phone1>555-555-2714</phone1> <phone2>228-555-5450</phone2> <birthdate>18.10.1971</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-07-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Jewel Creek</fullname> <test></test> </Customer> <Customer> - <account_num>87587122917</account_num> + <accountNum>87587122917</accountNum> <lname>Medina</lname> <fname>Peggy</fname> <mi>A.</mi> @@ -4569,28 +4569,28 @@ <address3></address3> <address4></address4> <city>Mexico City</city> - <state_province>Mexico</state_province> - <postal_code>59554</postal_code> + <stateProvince>Mexico</stateProvince> + <postalCode>59554</postalCode> <country>Mexico</country> <phone1>343-555-9778</phone1> <phone2>785-555-2371</phone2> <birthdate>12.10.1975</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-10-09</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-10-09</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Peggy Medina</fullname> <test></test> </Customer> <Customer> - <account_num>87592626810</account_num> + <accountNum>87592626810</accountNum> <lname>Rutledge</lname> <fname>Bryan</fname> <mi>K.</mi> @@ -4599,28 +4599,28 @@ <address3></address3> <address4></address4> <city>Lincoln Acres</city> - <state_province>CA</state_province> - <postal_code>30346</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>30346</postalCode> <country>USA</country> <phone1>659-555-3160</phone1> <phone2>640-555-5439</phone2> <birthdate>09.07.1912</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-10-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-10-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Bryan Rutledge</fullname> <test></test> </Customer> <Customer> - <account_num>87597749829</account_num> + <accountNum>87597749829</accountNum> <lname>Cavestany</lname> <fname>Walter</fname> <mi>G.</mi> @@ -4629,28 +4629,28 @@ <address3></address3> <address4></address4> <city>Oak Bay</city> - <state_province>BC</state_province> - <postal_code>15542</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>15542</postalCode> <country>Canada</country> <phone1>471-555-8853</phone1> <phone2>560-555-4646</phone2> <birthdate>05.11.1941</birthdate> - <marital_status>S</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1991-08-09</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-08-09</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Walter Cavestany</fullname> <test></test> </Customer> <Customer> - <account_num>87603285908</account_num> + <accountNum>87603285908</accountNum> <lname>Planck</lname> <fname>Peggy</fname> <mi>M.</mi> @@ -4659,28 +4659,28 @@ <address3></address3> <address4></address4> <city>Camacho</city> - <state_province>Zacatecas</state_province> - <postal_code>77787</postal_code> + <stateProvince>Zacatecas</stateProvince> + <postalCode>77787</postalCode> <country>Mexico</country> <phone1>698-555-7603</phone1> <phone2>986-555-9424</phone2> <birthdate>02.06.1919</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-12-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-12-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Peggy Planck</fullname> <test></test> </Customer> <Customer> - <account_num>87625473141</account_num> + <accountNum>87625473141</accountNum> <lname>Marshall</lname> <fname>Brenda</fname> <mi>S.</mi> @@ -4689,28 +4689,28 @@ <address3></address3> <address4></address4> <city>Arcadia</city> - <state_province>CA</state_province> - <postal_code>28530</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>28530</postalCode> <country>USA</country> <phone1>771-555-6581</phone1> <phone2>929-555-7260</phone2> <birthdate>20.03.1928</birthdate> - <marital_status>S</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-10-23</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-10-23</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Brenda Marshall</fullname> <test></test> </Customer> <Customer> - <account_num>87637655735</account_num> + <accountNum>87637655735</accountNum> <lname>Wolter</lname> <fname>Daniel</fname> <mi>P.</mi> @@ -4719,28 +4719,28 @@ <address3></address3> <address4></address4> <city>Altadena</city> - <state_province>CA</state_province> - <postal_code>49680</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>49680</postalCode> <country>USA</country> <phone1>121-555-3960</phone1> <phone2>717-555-5324</phone2> <birthdate>21.09.1914</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-10-24</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-10-24</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Daniel Wolter</fullname> <test></test> </Customer> <Customer> - <account_num>87650814652</account_num> + <accountNum>87650814652</accountNum> <lname>Collins</lname> <fname>Dianne</fname> <mi></mi> @@ -4749,28 +4749,28 @@ <address3></address3> <address4></address4> <city>Oakland</city> - <state_province>CA</state_province> - <postal_code>21486</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>21486</postalCode> <country>USA</country> <phone1>217-555-1567</phone1> <phone2>921-555-5446</phone2> <birthdate>20.07.1953</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-09-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Dianne Collins</fullname> <test></test> </Customer> <Customer> - <account_num>87653979700</account_num> + <accountNum>87653979700</accountNum> <lname>Baker</lname> <fname>Beverly</fname> <mi></mi> @@ -4779,28 +4779,28 @@ <address3></address3> <address4></address4> <city>Spring Valley</city> - <state_province>CA</state_province> - <postal_code>88762</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>88762</postalCode> <country>USA</country> <phone1>617-555-7972</phone1> <phone2>860-555-3536</phone2> <birthdate>16.04.1974</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-04-02</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-04-02</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Beverly Baker</fullname> <test></test> </Customer> <Customer> - <account_num>87663244009</account_num> + <accountNum>87663244009</accountNum> <lname>Castillo</lname> <fname>Pedro</fname> <mi></mi> @@ -4809,28 +4809,28 @@ <address3></address3> <address4></address4> <city>Renton</city> - <state_province>WA</state_province> - <postal_code>71442</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>71442</postalCode> <country>USA</country> <phone1>975-555-7865</phone1> <phone2>187-555-2286</phone2> <birthdate>04.11.1918</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-04-26</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-04-26</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Pedro Castillo</fullname> <test></test> </Customer> <Customer> - <account_num>87675641200</account_num> + <accountNum>87675641200</accountNum> <lname>Borges</lname> <fname>Laurie</fname> <mi></mi> @@ -4839,28 +4839,28 @@ <address3></address3> <address4></address4> <city>Bellingham</city> - <state_province>WA</state_province> - <postal_code>78588</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>78588</postalCode> <country>USA</country> <phone1>610-555-6158</phone1> <phone2>921-555-6608</phone2> <birthdate>07.10.1947</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-08-08</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-08-08</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Laurie Borges</fullname> <test></test> </Customer> <Customer> - <account_num>87678398489</account_num> + <accountNum>87678398489</accountNum> <lname>Wyro</lname> <fname>Shauna</fname> <mi>K.</mi> @@ -4869,28 +4869,28 @@ <address3></address3> <address4></address4> <city>La Jolla</city> - <state_province>CA</state_province> - <postal_code>27430</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>27430</postalCode> <country>USA</country> <phone1>444-555-1517</phone1> <phone2>625-555-9824</phone2> <birthdate>24.10.1916</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-08-12</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1992-08-12</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Shauna Wyro</fullname> <test></test> </Customer> <Customer> - <account_num>87681713700</account_num> + <accountNum>87681713700</accountNum> <lname>Wyllie</lname> <fname>Jacqueline</fname> <mi></mi> @@ -4899,28 +4899,28 @@ <address3></address3> <address4></address4> <city>Santa Fe</city> - <state_province>DF</state_province> - <postal_code>99737</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>99737</postalCode> <country>Mexico</country> <phone1>102-555-7439</phone1> <phone2>721-555-7431</phone2> <birthdate>04.12.1921</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-05-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-05-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Jacqueline Wyllie</fullname> <test></test> </Customer> <Customer> - <account_num>87686740159</account_num> + <accountNum>87686740159</accountNum> <lname>Conley</lname> <fname>Lin</fname> <mi>N.</mi> @@ -4929,28 +4929,28 @@ <address3></address3> <address4></address4> <city>Haney</city> - <state_province>BC</state_province> - <postal_code>65710</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>65710</postalCode> <country>Canada</country> <phone1>506-555-4589</phone1> <phone2>333-555-7096</phone2> <birthdate>26.09.1952</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-11-18</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-11-18</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Lin Conley</fullname> <test></test> </Customer> <Customer> - <account_num>87691326700</account_num> + <accountNum>87691326700</accountNum> <lname>Bernard</lname> <fname>Jose</fname> <mi></mi> @@ -4959,28 +4959,28 @@ <address3></address3> <address4></address4> <city>Burbank</city> - <state_province>CA</state_province> - <postal_code>51809</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>51809</postalCode> <country>USA</country> <phone1>425-555-3796</phone1> <phone2>452-555-3332</phone2> <birthdate>25.08.1954</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-09-21</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-09-21</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Jose Bernard</fullname> <test></test> </Customer> <Customer> - <account_num>87700161933</account_num> + <accountNum>87700161933</accountNum> <lname>Macaluso</lname> <fname>Charles</fname> <mi>B.</mi> @@ -4989,28 +4989,28 @@ <address3></address3> <address4></address4> <city>Anacortes</city> - <state_province>WA</state_province> - <postal_code>58052</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>58052</postalCode> <country>USA</country> <phone1>852-555-8574</phone1> <phone2>986-555-1624</phone2> <birthdate>17.03.1934</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-10-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-10-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Charles Macaluso</fullname> <test></test> </Customer> <Customer> - <account_num>87709978818</account_num> + <accountNum>87709978818</accountNum> <lname>Wood</lname> <fname>Lois</fname> <mi>M.</mi> @@ -5019,28 +5019,28 @@ <address3></address3> <address4></address4> <city>Everett</city> - <state_province>WA</state_province> - <postal_code>88974</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>88974</postalCode> <country>USA</country> <phone1>794-555-6410</phone1> <phone2>467-555-9146</phone2> <birthdate>12.03.1970</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-09-28</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-09-28</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Lois Wood</fullname> <test></test> </Customer> <Customer> - <account_num>87717585563</account_num> + <accountNum>87717585563</accountNum> <lname>Armstrong</lname> <fname>Kevin</fname> <mi>A.</mi> @@ -5049,28 +5049,28 @@ <address3></address3> <address4></address4> <city>Oak Bay</city> - <state_province>BC</state_province> - <postal_code>90098</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>90098</postalCode> <country>Canada</country> <phone1>583-555-4474</phone1> <phone2>125-555-6067</phone2> <birthdate>04.10.1937</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-09-01</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-09-01</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Kevin Armstrong</fullname> <test></test> </Customer> <Customer> - <account_num>87718932032</account_num> + <accountNum>87718932032</accountNum> <lname>Goldey</lname> <fname>Cody</fname> <mi>A.</mi> @@ -5079,28 +5079,28 @@ <address3></address3> <address4></address4> <city>Milwaukie</city> - <state_province>OR</state_province> - <postal_code>78800</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>78800</postalCode> <country>USA</country> <phone1>548-555-9939</phone1> <phone2>529-555-3217</phone2> <birthdate>08.07.1917</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-05-09</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-05-09</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Cody Goldey</fullname> <test></test> </Customer> <Customer> - <account_num>87729650139</account_num> + <accountNum>87729650139</accountNum> <lname>Nickell</lname> <fname>Paula</fname> <mi>B.</mi> @@ -5109,28 +5109,28 @@ <address3></address3> <address4></address4> <city>Concord</city> - <state_province>CA</state_province> - <postal_code>63996</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>63996</postalCode> <country>USA</country> <phone1>598-555-1289</phone1> <phone2>448-555-2424</phone2> <birthdate>02.07.1978</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1991-02-06</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-02-06</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Paula Nickell</fullname> <test></test> </Customer> <Customer> - <account_num>87738383412</account_num> + <accountNum>87738383412</accountNum> <lname>Long</lname> <fname>Eric</fname> <mi>J.</mi> @@ -5139,28 +5139,28 @@ <address3></address3> <address4></address4> <city>Ladner</city> - <state_province>BC</state_province> - <postal_code>99949</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>99949</postalCode> <country>Canada</country> <phone1>937-555-2299</phone1> <phone2>326-555-4120</phone2> <birthdate>08.01.1930</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-06-23</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-06-23</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Eric Long</fullname> <test></test> </Customer> <Customer> - <account_num>87742803692</account_num> + <accountNum>87742803692</accountNum> <lname>Solimena</lname> <fname>Mary</fname> <mi>K.</mi> @@ -5169,28 +5169,28 @@ <address3></address3> <address4></address4> <city>Santa Cruz</city> - <state_province>CA</state_province> - <postal_code>51307</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>51307</postalCode> <country>USA</country> <phone1>111-555-1278</phone1> <phone2>268-555-1956</phone2> <birthdate>23.07.1971</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-08-15</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-08-15</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Mary Solimena</fullname> <test></test> </Customer> <Customer> - <account_num>87767067000</account_num> + <accountNum>87767067000</accountNum> <lname>Muenich</lname> <fname>Nathan</fname> <mi></mi> @@ -5199,28 +5199,28 @@ <address3></address3> <address4></address4> <city>La Mesa</city> - <state_province>CA</state_province> - <postal_code>53422</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>53422</postalCode> <country>USA</country> <phone1>361-555-7656</phone1> <phone2>957-555-9020</phone2> <birthdate>21.10.1919</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-02-27</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1990-02-27</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Nathan Muenich</fullname> <test></test> </Customer> <Customer> - <account_num>87771052718</account_num> + <accountNum>87771052718</accountNum> <lname>Young</lname> <fname>Ed</fname> <mi></mi> @@ -5229,28 +5229,28 @@ <address3></address3> <address4></address4> <city>Merida</city> - <state_province>Yucatan</state_province> - <postal_code>69940</postal_code> + <stateProvince>Yucatan</stateProvince> + <postalCode>69940</postalCode> <country>Mexico</country> <phone1>457-555-5263</phone1> <phone2>261-555-9142</phone2> <birthdate>17.04.1920</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-09-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Ed Young</fullname> <test></test> </Customer> <Customer> - <account_num>90762515068</account_num> + <accountNum>90762515068</accountNum> <lname>Megel</lname> <fname>Jerry</fname> <mi>W.</mi> @@ -5259,28 +5259,28 @@ <address3></address3> <address4></address4> <city>Bellflower</city> - <state_province>CA</state_province> - <postal_code>45713</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>45713</postalCode> <country>USA</country> <phone1>194-555-9583</phone1> <phone2>921-555-3090</phone2> <birthdate>12.08.1929</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-04-18</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-04-18</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Jerry Megel</fullname> <test></test> </Customer> <Customer> - <account_num>90780995500</account_num> + <accountNum>90780995500</accountNum> <lname>Styles</lname> <fname>John</fname> <mi>L.</mi> @@ -5289,28 +5289,28 @@ <address3></address3> <address4></address4> <city>Spring Valley</city> - <state_province>CA</state_province> - <postal_code>84181</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>84181</postalCode> <country>USA</country> <phone1>113-555-8790</phone1> <phone2>140-555-8325</phone2> <birthdate>12.08.1931</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-03-21</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1992-03-21</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>John Styles</fullname> <test></test> </Customer> <Customer> - <account_num>90796681000</account_num> + <accountNum>90796681000</accountNum> <lname>Head</lname> <fname>Shirley</fname> <mi></mi> @@ -5319,28 +5319,28 @@ <address3></address3> <address4></address4> <city>Novato</city> - <state_province>CA</state_province> - <postal_code>38054</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>38054</postalCode> <country>USA</country> <phone1>540-555-4568</phone1> <phone2>675-555-6618</phone2> <birthdate>03.02.1911</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1994-02-22</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-02-22</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Shirley Head</fullname> <test></test> </Customer> <Customer> - <account_num>90799674391</account_num> + <accountNum>90799674391</accountNum> <lname>Story</lname> <fname>James</fname> <mi>B.</mi> @@ -5349,28 +5349,28 @@ <address3></address3> <address4></address4> <city>San Carlos</city> - <state_province>CA</state_province> - <postal_code>68977</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>68977</postalCode> <country>USA</country> <phone1>482-555-2404</phone1> <phone2>155-555-5140</phone2> <birthdate>26.03.1947</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-12-02</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-12-02</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>James Story</fullname> <test></test> </Customer> <Customer> - <account_num>90800548791</account_num> + <accountNum>90800548791</accountNum> <lname>Boone</lname> <fname>Jean</fname> <mi>A.</mi> @@ -5379,28 +5379,28 @@ <address3></address3> <address4></address4> <city>Woodland Hills</city> - <state_province>CA</state_province> - <postal_code>88011</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>88011</postalCode> <country>USA</country> <phone1>271-555-9468</phone1> <phone2>713-555-2061</phone2> <birthdate>17.09.1913</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-11-02</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-11-02</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Clerical</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Jean Boone</fullname> <test></test> </Customer> <Customer> - <account_num>90812506079</account_num> + <accountNum>90812506079</accountNum> <lname>Mccoy</lname> <fname>Ralph</fname> <mi></mi> @@ -5409,28 +5409,28 @@ <address3></address3> <address4></address4> <city>Camacho</city> - <state_province>Zacatecas</state_province> - <postal_code>58803</postal_code> + <stateProvince>Zacatecas</stateProvince> + <postalCode>58803</postalCode> <country>Mexico</country> <phone1>587-555-2850</phone1> <phone2>568-555-5129</phone2> <birthdate>22.06.1964</birthdate> - <marital_status>S</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-08-10</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-08-10</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Ralph Mccoy</fullname> <test></test> </Customer> <Customer> - <account_num>90816207528</account_num> + <accountNum>90816207528</accountNum> <lname>Tuck</lname> <fname>Anne</fname> <mi>E.</mi> @@ -5439,28 +5439,28 @@ <address3></address3> <address4></address4> <city>Arcadia</city> - <state_province>CA</state_province> - <postal_code>43999</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>43999</postalCode> <country>USA</country> <phone1>638-555-3200</phone1> <phone2>487-555-4336</phone2> <birthdate>15.06.1955</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-05-07</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-05-07</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Anne Tuck</fullname> <test></test> </Customer> <Customer> - <account_num>90842300057</account_num> + <accountNum>90842300057</accountNum> <lname>Sincich</lname> <fname>Joy</fname> <mi>B.</mi> @@ -5469,28 +5469,28 @@ <address3></address3> <address4></address4> <city>Downey</city> - <state_province>CA</state_province> - <postal_code>79952</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>79952</postalCode> <country>USA</country> <phone1>626-555-7293</phone1> <phone2>914-555-9114</phone2> <birthdate>21.12.1976</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-09-24</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-09-24</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Joy Sincich</fullname> <test></test> </Customer> <Customer> - <account_num>90872421300</account_num> + <accountNum>90872421300</accountNum> <lname>Jameson</lname> <fname>Bertha</fname> <mi>E.</mi> @@ -5499,28 +5499,28 @@ <address3></address3> <address4></address4> <city>Los Angeles</city> - <state_province>CA</state_province> - <postal_code>31309</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>31309</postalCode> <country>USA</country> <phone1>699-555-6272</phone1> <phone2>856-555-6950</phone2> <birthdate>09.06.1948</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-11-16</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-11-16</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Bertha Jameson</fullname> <test></test> </Customer> <Customer> - <account_num>90882281100</account_num> + <accountNum>90882281100</accountNum> <lname>Sanchez</lname> <fname>Charles</fname> <mi></mi> @@ -5529,28 +5529,28 @@ <address3></address3> <address4></address4> <city>Everett</city> - <state_province>WA</state_province> - <postal_code>33424</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>33424</postalCode> <country>USA</country> <phone1>949-555-3650</phone1> <phone2>645-555-5014</phone2> <birthdate>07.09.1966</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-05-04</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-05-04</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Charles Sanchez</fullname> <test></test> </Customer> <Customer> - <account_num>90891700983</account_num> + <accountNum>90891700983</accountNum> <lname>Parks</lname> <fname>Wanda</fname> <mi>L.</mi> @@ -5559,28 +5559,28 @@ <address3></address3> <address4></address4> <city>N. Vancouver</city> - <state_province>BC</state_province> - <postal_code>49943</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>49943</postalCode> <country>Canada</country> <phone1>145-555-1257</phone1> <phone2>849-555-5136</phone2> <birthdate>03.03.1967</birthdate> - <marital_status>S</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-12-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-12-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Wanda Parks</fullname> <test></test> </Customer> <Customer> - <account_num>90904441475</account_num> + <accountNum>90904441475</accountNum> <lname>Vij</lname> <fname>Nathan</fname> <mi>R.</mi> @@ -5589,28 +5589,28 @@ <address3></address3> <address4></address4> <city>Daly City</city> - <state_province>CA</state_province> - <postal_code>18219</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>18219</postalCode> <country>USA</country> <phone1>657-555-9922</phone1> <phone2>660-555-1829</phone2> <birthdate>08.10.1962</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-03-03</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-03-03</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Nathan Vij</fullname> <test></test> </Customer> <Customer> - <account_num>90907547473</account_num> + <accountNum>90907547473</accountNum> <lname>Zugschwert</lname> <fname>Corinne</fname> <mi></mi> @@ -5619,28 +5619,28 @@ <address3></address3> <address4></address4> <city>Walla Walla</city> - <state_province>WA</state_province> - <postal_code>98284</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>98284</postalCode> <country>USA</country> <phone1>776-555-6157</phone1> <phone2>888-555-9579</phone2> <birthdate>20.03.1938</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-03-08</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-03-08</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Corinne Zugschwert</fullname> <test></test> </Customer> <Customer> - <account_num>90917686200</account_num> + <accountNum>90917686200</accountNum> <lname>Adams</lname> <fname>Michelle</fname> <mi>M.</mi> @@ -5649,28 +5649,28 @@ <address3></address3> <address4></address4> <city>Imperial Beach</city> - <state_province>CA</state_province> - <postal_code>32723</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>32723</postalCode> <country>USA</country> <phone1>411-555-4450</phone1> <phone2>722-555-4900</phone2> <birthdate>23.04.1935</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-03-14</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-03-14</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Michelle Adams</fullname> <test></test> </Customer> <Customer> - <account_num>90932449102</account_num> + <accountNum>90932449102</accountNum> <lname>Steen</lname> <fname>Donahue</fname> <mi>K.</mi> @@ -5679,28 +5679,28 @@ <address3></address3> <address4></address4> <city>Richmond</city> - <state_province>CA</state_province> - <postal_code>54272</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>54272</postalCode> <country>USA</country> <phone1>791-555-2972</phone1> <phone2>972-555-2279</phone2> <birthdate>17.05.1951</birthdate> - <marital_status>S</marital_status> - <yearly_income>$150K +</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$150K +</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-11-16</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1992-11-16</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Donahue Steen</fullname> <test></test> </Customer> <Customer> - <account_num>90945323700</account_num> + <accountNum>90945323700</accountNum> <lname>Baker</lname> <fname>John</fname> <mi>M.</mi> @@ -5709,28 +5709,28 @@ <address3></address3> <address4></address4> <city>Los Angeles</city> - <state_province>CA</state_province> - <postal_code>53872</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>53872</postalCode> <country>USA</country> <phone1>449-555-8893</phone1> <phone2>407-555-3543</phone2> <birthdate>21.03.1919</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-04-20</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-04-20</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>John Baker</fullname> <test></test> </Customer> <Customer> - <account_num>90948129296</account_num> + <accountNum>90948129296</accountNum> <lname>Pearl</lname> <fname>Keith</fname> <mi>B.</mi> @@ -5739,28 +5739,28 @@ <address3></address3> <address4></address4> <city>Newton</city> - <state_province>BC</state_province> - <postal_code>41583</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>41583</postalCode> <country>Canada</country> <phone1>853-555-6043</phone1> <phone2>680-555-8550</phone2> <birthdate>14.08.1912</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-06-16</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-06-16</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Keith Pearl</fullname> <test></test> </Customer> <Customer> - <account_num>91009777188</account_num> + <accountNum>91009777188</accountNum> <lname>Roundtree</lname> <fname>Sarah</fname> <mi>J.</mi> @@ -5769,28 +5769,28 @@ <address3></address3> <address4></address4> <city>Merida</city> - <state_province>Yucatan</state_province> - <postal_code>73444</postal_code> + <stateProvince>Yucatan</stateProvince> + <postalCode>73444</postalCode> <country>Mexico</country> <phone1>772-555-5250</phone1> <phone2>926-555-6183</phone2> <birthdate>21.07.1958</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-04-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-04-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Sarah Roundtree</fullname> <test></test> </Customer> <Customer> - <account_num>91010007858</account_num> + <accountNum>91010007858</accountNum> <lname>Bollin</lname> <fname>Lawrence</fname> <mi>L.</mi> @@ -5799,28 +5799,28 @@ <address3></address3> <address4></address4> <city>Ladner</city> - <state_province>BC</state_province> - <postal_code>60216</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>60216</postalCode> <country>Canada</country> <phone1>426-555-2426</phone1> <phone2>560-555-4476</phone2> <birthdate>10.09.1970</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1993-02-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-02-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Lawrence Bollin</fullname> <test></test> </Customer> <Customer> - <account_num>91039292216</account_num> + <accountNum>91039292216</accountNum> <lname>Hopkins</lname> <fname>Fred</fname> <mi></mi> @@ -5829,28 +5829,28 @@ <address3></address3> <address4></address4> <city>Port Hammond</city> - <state_province>BC</state_province> - <postal_code>64846</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>64846</postalCode> <country>Canada</country> <phone1>368-555-9262</phone1> <phone2>941-555-2998</phone2> <birthdate>14.09.1910</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-12-26</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-12-26</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Fred Hopkins</fullname> <test></test> </Customer> <Customer> - <account_num>91039576530</account_num> + <accountNum>91039576530</accountNum> <lname>Vicknair</lname> <fname>Caroline</fname> <mi>L.</mi> @@ -5859,28 +5859,28 @@ <address3></address3> <address4></address4> <city>Coronado</city> - <state_province>CA</state_province> - <postal_code>83880</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>83880</postalCode> <country>USA</country> <phone1>156-555-7326</phone1> <phone2>599-555-8919</phone2> <birthdate>03.01.1978</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>5</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>5</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-05-13</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1990-05-13</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Caroline Vicknair</fullname> <test></test> </Customer> <Customer> - <account_num>91041684746</account_num> + <accountNum>91041684746</accountNum> <lname>McPhearson</lname> <fname>Nancy</fname> <mi>R.</mi> @@ -5889,28 +5889,28 @@ <address3></address3> <address4></address4> <city>Marysville</city> - <state_province>WA</state_province> - <postal_code>80965</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>80965</postalCode> <country>USA</country> <phone1>122-555-3790</phone1> <phone2>102-555-6069</phone2> <birthdate>04.06.1921</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-12-02</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-12-02</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Nancy McPhearson</fullname> <test></test> </Customer> <Customer> - <account_num>91044484972</account_num> + <accountNum>91044484972</accountNum> <lname>Albright</lname> <fname>Anna</fname> <mi>L.</mi> @@ -5919,28 +5919,28 @@ <address3></address3> <address4></address4> <city>Fremont</city> - <state_province>CA</state_province> - <postal_code>66160</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>66160</postalCode> <country>USA</country> <phone1>172-555-4141</phone1> <phone2>922-555-5276</phone2> <birthdate>22.02.1944</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-06-24</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-06-24</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Anna Albright</fullname> <test></test> </Customer> <Customer> - <account_num>91044667400</account_num> + <accountNum>91044667400</accountNum> <lname>Thomas</lname> <fname>Phyllis</fname> <mi></mi> @@ -5949,28 +5949,28 @@ <address3></address3> <address4></address4> <city>Albany</city> - <state_province>OR</state_province> - <postal_code>31145</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>31145</postalCode> <country>USA</country> <phone1>160-555-8233</phone1> <phone2>688-555-4712</phone2> <birthdate>25.04.1927</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-06-11</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-06-11</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Phyllis Thomas</fullname> <test></test> </Customer> <Customer> - <account_num>91098547577</account_num> + <accountNum>91098547577</accountNum> <lname>Perko</lname> <fname>Tina</fname> <mi>V.</mi> @@ -5979,28 +5979,28 @@ <address3></address3> <address4></address4> <city>Langley</city> - <state_province>BC</state_province> - <postal_code>53471</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>53471</postalCode> <country>Canada</country> <phone1>233-555-7212</phone1> <phone2>630-555-2548</phone2> <birthdate>10.06.1931</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-05-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-05-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Tina Perko</fullname> <test></test> </Customer> <Customer> - <account_num>91104518175</account_num> + <accountNum>91104518175</accountNum> <lname>McCarty</lname> <fname>Jane</fname> <mi></mi> @@ -6009,28 +6009,28 @@ <address3></address3> <address4></address4> <city>Langley</city> - <state_province>BC</state_province> - <postal_code>55586</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>55586</postalCode> <country>Canada</country> <phone1>483-555-4590</phone1> <phone2>179-555-5955</phone2> <birthdate>17.08.1923</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-06-10</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-06-10</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Jane McCarty</fullname> <test></test> </Customer> <Customer> - <account_num>91105059981</account_num> + <accountNum>91105059981</accountNum> <lname>Bent</lname> <fname>Scot</fname> <mi>N.</mi> @@ -6039,28 +6039,28 @@ <address3></address3> <address4></address4> <city>Sedro Woolley</city> - <state_province>WA</state_province> - <postal_code>45813</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>45813</postalCode> <country>USA</country> <phone1>579-555-2198</phone1> <phone2>384-555-6076</phone2> <birthdate>10.10.1956</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-01-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-01-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Scot Bent</fullname> <test></test> </Customer> <Customer> - <account_num>91113573312</account_num> + <accountNum>91113573312</accountNum> <lname>Chambers</lname> <fname>Pat</fname> <mi></mi> @@ -6069,28 +6069,28 @@ <address3></address3> <address4></address4> <city>Burlingame</city> - <state_province>CA</state_province> - <postal_code>14089</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>14089</postalCode> <country>USA</country> <phone1>191-555-1862</phone1> <phone2>195-555-2769</phone2> <birthdate>12.03.1913</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-04-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-04-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Pat Chambers</fullname> <test></test> </Customer> <Customer> - <account_num>91115477700</account_num> + <accountNum>91115477700</accountNum> <lname>Bellifa</lname> <fname>Stanley</fname> <mi></mi> @@ -6099,28 +6099,28 @@ <address3></address3> <address4></address4> <city>Sooke</city> - <state_province>BC</state_province> - <postal_code>87695</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>87695</postalCode> <country>Canada</country> <phone1>310-555-7098</phone1> <phone2>422-555-1519</phone2> <birthdate>05.06.1933</birthdate> - <marital_status>S</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-10-13</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-10-13</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Stanley Bellifa</fullname> <test></test> </Customer> <Customer> - <account_num>91118540763</account_num> + <accountNum>91118540763</accountNum> <lname>Johnson</lname> <fname>Samuel</fname> <mi>K.</mi> @@ -6129,28 +6129,28 @@ <address3></address3> <address4></address4> <city>San Andres</city> - <state_province>DF</state_province> - <postal_code>22133</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>22133</postalCode> <country>Mexico</country> <phone1>845-555-5391</phone1> <phone2>256-555-5840</phone2> <birthdate>05.03.1962</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-09-28</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-28</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Samuel Johnson</fullname> <test></test> </Customer> <Customer> - <account_num>91123164892</account_num> + <accountNum>91123164892</accountNum> <lname>Vrins</lname> <fname>Janice</fname> <mi>E.</mi> @@ -6159,28 +6159,28 @@ <address3></address3> <address4></address4> <city>Pomona</city> - <state_province>CA</state_province> - <postal_code>43683</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>43683</postalCode> <country>USA</country> <phone1>677-555-9829</phone1> <phone2>196-555-3794</phone2> <birthdate>19.07.1965</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-03-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-03-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Janice Vrins</fullname> <test></test> </Customer> <Customer> - <account_num>91140733361</account_num> + <accountNum>91140733361</accountNum> <lname>Mcdonald</lname> <fname>Christinia</fname> <mi>A.</mi> @@ -6189,28 +6189,28 @@ <address3></address3> <address4></address4> <city>Downey</city> - <state_province>CA</state_province> - <postal_code>43282</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>43282</postalCode> <country>USA</country> <phone1>335-555-6751</phone1> <phone2>293-555-1401</phone2> <birthdate>04.05.1976</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-04-01</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-04-01</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Christinia Mcdonald</fullname> <test></test> </Customer> <Customer> - <account_num>91158838272</account_num> + <accountNum>91158838272</accountNum> <lname>Weldon</lname> <fname>Ole</fname> <mi></mi> @@ -6219,28 +6219,28 @@ <address3></address3> <address4></address4> <city>Palo Alto</city> - <state_province>CA</state_province> - <postal_code>30993</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>30993</postalCode> <country>USA</country> <phone1>738-555-3901</phone1> <phone2>565-555-6408</phone2> <birthdate>21.06.1931</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-05-05</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-05-05</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Ole Weldon</fullname> <test></test> </Customer> <Customer> - <account_num>91172544400</account_num> + <accountNum>91172544400</accountNum> <lname>Choin</lname> <fname>Ruth</fname> <mi></mi> @@ -6249,28 +6249,28 @@ <address3></address3> <address4></address4> <city>Everett</city> - <state_province>WA</state_province> - <postal_code>69462</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>69462</postalCode> <country>USA</country> <phone1>658-555-3108</phone1> <phone2>923-555-6301</phone2> <birthdate>15.09.1927</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-11-14</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-11-14</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Ruth Choin</fullname> <test></test> </Customer> <Customer> - <account_num>91176331639</account_num> + <accountNum>91176331639</accountNum> <lname>Crow</lname> <fname>Sharon</fname> <mi>L.</mi> @@ -6279,28 +6279,28 @@ <address3></address3> <address4></address4> <city>Acapulco</city> - <state_province>Guerrero</state_province> - <postal_code>49627</postal_code> + <stateProvince>Guerrero</stateProvince> + <postalCode>49627</postalCode> <country>Mexico</country> <phone1>184-555-7886</phone1> <phone2>319-555-9936</phone2> <birthdate>12.11.1913</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-03-09</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1990-03-09</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Sharon Crow</fullname> <test></test> </Customer> <Customer> - <account_num>91213276386</account_num> + <accountNum>91213276386</accountNum> <lname>Avalos</lname> <fname>Robert</fname> <mi>D.</mi> @@ -6309,28 +6309,28 @@ <address3></address3> <address4></address4> <city>Tlaxiaco</city> - <state_province>Oaxaca</state_province> - <postal_code>54257</postal_code> + <stateProvince>Oaxaca</stateProvince> + <postalCode>54257</postalCode> <country>Mexico</country> <phone1>127-555-5722</phone1> <phone2>700-555-8458</phone2> <birthdate>13.07.1955</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-08-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-08-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Robert Avalos</fullname> <test></test> </Customer> <Customer> - <account_num>92404407900</account_num> + <accountNum>92404407900</accountNum> <lname>Suffin</lname> <fname>Ruth</fname> <mi></mi> @@ -6339,28 +6339,28 @@ <address3></address3> <address4></address4> <city>Albany</city> - <state_province>OR</state_province> - <postal_code>55205</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>55205</postalCode> <country>USA</country> <phone1>886-555-2844</phone1> <phone2>297-555-3294</phone2> <birthdate>19.06.1947</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-10-13</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-10-13</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Ruth Suffin</fullname> <test></test> </Customer> <Customer> - <account_num>92408645749</account_num> + <accountNum>92408645749</accountNum> <lname>Cleary</lname> <fname>Kristine</fname> <mi>M.</mi> @@ -6369,28 +6369,28 @@ <address3></address3> <address4></address4> <city>Burnaby</city> - <state_province>BC</state_province> - <postal_code>76754</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>76754</postalCode> <country>Canada</country> <phone1>367-555-1366</phone1> <phone2>547-555-9673</phone2> <birthdate>06.02.1948</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-04-03</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-04-03</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Kristine Cleary</fullname> <test></test> </Customer> <Customer> - <account_num>92415699958</account_num> + <accountNum>92415699958</accountNum> <lname>Homax</lname> <fname>Jaunita</fname> <mi></mi> @@ -6399,28 +6399,28 @@ <address3></address3> <address4></address4> <city>West Covina</city> - <state_province>CA</state_province> - <postal_code>76354</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>76354</postalCode> <country>USA</country> <phone1>924-555-7287</phone1> <phone2>882-555-1937</phone2> <birthdate>10.11.1915</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1990-12-19</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-12-19</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Jaunita Homax</fullname> <test></test> </Customer> <Customer> - <account_num>92441642284</account_num> + <accountNum>92441642284</accountNum> <lname>Adams</lname> <fname>Margaret</fname> <mi>A.</mi> @@ -6429,28 +6429,28 @@ <address3></address3> <address4></address4> <city>San Carlos</city> - <state_province>CA</state_province> - <postal_code>64065</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>64065</postalCode> <country>USA</country> <phone1>428-555-4437</phone1> <phone2>255-555-6944</phone2> <birthdate>02.05.1979</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-03-15</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-03-15</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Margaret Adams</fullname> <test></test> </Customer> <Customer> - <account_num>92482240200</account_num> + <accountNum>92482240200</accountNum> <lname>Zubaty</lname> <fname>Carla</fname> <mi></mi> @@ -6459,28 +6459,28 @@ <address3></address3> <address4></address4> <city>Edmonds</city> - <state_province>WA</state_province> - <postal_code>81086</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>81086</postalCode> <country>USA</country> <phone1>348-555-3644</phone1> <phone2>374-555-3180</phone2> <birthdate>26.12.1943</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-12-26</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-12-26</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Carla Zubaty</fullname> <test></test> </Customer> <Customer> - <account_num>92483919262</account_num> + <accountNum>92483919262</accountNum> <lname>Khan</lname> <fname>Tammy</fname> <mi>L.</mi> @@ -6489,28 +6489,28 @@ <address3></address3> <address4></address4> <city>Tlaxiaco</city> - <state_province>Oaxaca</state_province> - <postal_code>34959</postal_code> + <stateProvince>Oaxaca</stateProvince> + <postalCode>34959</postalCode> <country>Mexico</country> <phone1>774-555-8423</phone1> <phone2>909-555-1473</phone2> <birthdate>15.03.1954</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-04-13</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-04-13</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Tammy Khan</fullname> <test></test> </Customer> <Customer> - <account_num>92485888004</account_num> + <accountNum>92485888004</accountNum> <lname>Brinkd</lname> <fname>David</fname> <mi></mi> @@ -6519,28 +6519,28 @@ <address3></address3> <address4></address4> <city>Colma</city> - <state_province>CA</state_province> - <postal_code>39589</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>39589</postalCode> <country>USA</country> <phone1>717-555-6258</phone1> <phone2>390-555-8994</phone2> <birthdate>18.03.1965</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-05-14</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-05-14</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>David Brinkd</fullname> <test></test> </Customer> <Customer> - <account_num>92489251494</account_num> + <accountNum>92489251494</accountNum> <lname>Clark</lname> <fname>James</fname> <mi>R.</mi> @@ -6549,28 +6549,28 @@ <address3></address3> <address4></address4> <city>Altadena</city> - <state_province>CA</state_province> - <postal_code>58623</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>58623</postalCode> <country>USA</country> <phone1>195-555-4898</phone1> <phone2>637-555-6490</phone2> <birthdate>07.06.1963</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-02-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-02-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>James Clark</fullname> <test></test> </Customer> <Customer> - <account_num>92492781281</account_num> + <accountNum>92492781281</accountNum> <lname>Dennis</lname> <fname>Helen</fname> <mi>F.</mi> @@ -6579,28 +6579,28 @@ <address3></address3> <address4></address4> <city>Spokane</city> - <state_province>WA</state_province> - <postal_code>55707</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>55707</postalCode> <country>USA</country> <phone1>160-555-1362</phone1> <phone2>141-555-3640</phone2> <birthdate>09.11.1976</birthdate> - <marital_status>S</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-05-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-05-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Helen Dennis</fullname> <test></test> </Customer> <Customer> - <account_num>92493425011</account_num> + <accountNum>92493425011</accountNum> <lname>Brumfield</lname> <fname>Eric</fname> <mi>J.</mi> @@ -6609,28 +6609,28 @@ <address3></address3> <address4></address4> <city>San Jose</city> - <state_province>CA</state_province> - <postal_code>40903</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>40903</postalCode> <country>USA</country> <phone1>211-555-1712</phone1> <phone2>961-555-2848</phone2> <birthdate>27.07.1929</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-02-23</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-02-23</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Eric Brumfield</fullname> <test></test> </Customer> <Customer> - <account_num>92519941329</account_num> + <accountNum>92519941329</accountNum> <lname>Sanchez</lname> <fname>Madalena</fname> <mi>A.</mi> @@ -6639,28 +6639,28 @@ <address3></address3> <address4></address4> <city>Lynnwood</city> - <state_province>WA</state_province> - <postal_code>76856</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>76856</postalCode> <country>USA</country> <phone1>199-555-5805</phone1> <phone2>726-555-2283</phone2> <birthdate>03.09.1912</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-10-26</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1990-10-26</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Madalena Sanchez</fullname> <test></test> </Customer> <Customer> - <account_num>92525187730</account_num> + <accountNum>92525187730</accountNum> <lname>Suess</lname> <fname>Gary</fname> <mi>P.</mi> @@ -6669,28 +6669,28 @@ <address3></address3> <address4></address4> <city>Oak Bay</city> - <state_province>BC</state_province> - <postal_code>28214</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>28214</postalCode> <country>Canada</country> <phone1>272-555-4783</phone1> <phone2>669-555-9119</phone2> <birthdate>26.03.1927</birthdate> - <marital_status>S</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-01-26</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-01-26</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Gary Suess</fullname> <test></test> </Customer> <Customer> - <account_num>92537268400</account_num> + <accountNum>92537268400</accountNum> <lname>Trach</lname> <fname>Glenn</fname> <mi></mi> @@ -6699,28 +6699,28 @@ <address3></address3> <address4></address4> <city>Oak Bay</city> - <state_province>BC</state_province> - <postal_code>30329</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>30329</postalCode> <country>Canada</country> <phone1>522-555-2162</phone1> <phone2>218-555-3526</phone2> <birthdate>05.05.1919</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-03-08</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1994-03-08</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Glenn Trach</fullname> <test></test> </Customer> <Customer> - <account_num>92544869780</account_num> + <accountNum>92544869780</accountNum> <lname>White</lname> <fname>Cynthia</fname> <mi>S.</mi> @@ -6729,28 +6729,28 @@ <address3></address3> <address4></address4> <city>Olympia</city> - <state_province>WA</state_province> - <postal_code>20555</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>20555</postalCode> <country>USA</country> <phone1>618-555-8769</phone1> <phone2>422-555-3648</phone2> <birthdate>15.04.1941</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-06-27</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1994-06-27</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Cynthia White</fullname> <test></test> </Customer> <Customer> - <account_num>92612928152</account_num> + <accountNum>92612928152</accountNum> <lname>Brian</lname> <fname>Walter</fname> <mi>L.</mi> @@ -6759,28 +6759,28 @@ <address3></address3> <address4></address4> <city>Long Beach</city> - <state_province>CA</state_province> - <postal_code>87831</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>87831</postalCode> <country>USA</country> <phone1>230-555-8433</phone1> <phone2>234-555-9340</phone2> <birthdate>17.08.1967</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-08-13</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-08-13</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Walter Brian</fullname> <test></test> </Customer> <Customer> - <account_num>92624906900</account_num> + <accountNum>92624906900</accountNum> <lname>Trujillo</lname> <fname>Christie</fname> <mi></mi> @@ -6789,28 +6789,28 @@ <address3></address3> <address4></address4> <city>Shawnee</city> - <state_province>BC</state_province> - <postal_code>70511</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>70511</postalCode> <country>Canada</country> <phone1>349-555-4669</phone1> <phone2>461-555-8091</phone2> <birthdate>10.11.1917</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-04-15</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-04-15</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Christie Trujillo</fullname> <test></test> </Customer> <Customer> - <account_num>92646418200</account_num> + <accountNum>92646418200</accountNum> <lname>Alameda</lname> <fname>Lili</fname> <mi>P.</mi> @@ -6819,28 +6819,28 @@ <address3></address3> <address4></address4> <city>Mexico City</city> - <state_province>Mexico</state_province> - <postal_code>49504</postal_code> + <stateProvince>Mexico</stateProvince> + <postalCode>49504</postalCode> <country>Mexico</country> <phone1>884-555-2962</phone1> <phone2>295-555-3412</phone2> <birthdate>10.08.1946</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-11-02</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-11-02</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Lili Alameda</fullname> <test></test> </Customer> <Customer> - <account_num>92651133537</account_num> + <accountNum>92651133537</accountNum> <lname>Fox</lname> <fname>Dorothy</fname> <mi>E.</mi> @@ -6849,28 +6849,28 @@ <address3></address3> <address4></address4> <city>Salem</city> - <state_province>OR</state_province> - <postal_code>26499</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>26499</postalCode> <country>USA</country> <phone1>365-555-1483</phone1> <phone2>784-555-4448</phone2> <birthdate>05.04.1921</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-04-28</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-04-28</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Dorothy Fox</fullname> <test></test> </Customer> <Customer> - <account_num>92666298747</account_num> + <accountNum>92666298747</accountNum> <lname>Gallagher</lname> <fname>Aldeen</fname> <mi></mi> @@ -6879,28 +6879,28 @@ <address3></address3> <address4></address4> <city>Ballard</city> - <state_province>WA</state_province> - <postal_code>26099</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>26099</postalCode> <country>USA</country> <phone1>922-555-7405</phone1> <phone2>880-555-2055</phone2> <birthdate>07.10.1920</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-08-13</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-08-13</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Aldeen Gallagher</fullname> <test></test> </Customer> <Customer> - <account_num>92701543000</account_num> + <accountNum>92701543000</accountNum> <lname>Myer</lname> <fname>Dorothy</fname> <mi>I.</mi> @@ -6909,28 +6909,28 @@ <address3></address3> <address4></address4> <city>Guadalajara</city> - <state_province>Jalisco</state_province> - <postal_code>13810</postal_code> + <stateProvince>Jalisco</stateProvince> + <postalCode>13810</postalCode> <country>Mexico</country> <phone1>426-555-4555</phone1> <phone2>368-555-9243</phone2> <birthdate>23.11.1946</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-07-06</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-07-06</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Dorothy Myer</fullname> <test></test> </Customer> <Customer> - <account_num>92703635100</account_num> + <accountNum>92703635100</accountNum> <lname>Byrnes</lname> <fname>David</fname> <mi>R.</mi> @@ -6939,28 +6939,28 @@ <address3></address3> <address4></address4> <city>Torrance</city> - <state_province>CA</state_province> - <postal_code>44494</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>44494</postalCode> <country>USA</country> <phone1>460-555-5943</phone1> <phone2>726-555-9136</phone2> <birthdate>01.06.1954</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-01-15</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-01-15</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>David Byrnes</fullname> <test></test> </Customer> <Customer> - <account_num>92745912100</account_num> + <accountNum>92745912100</accountNum> <lname>Ryan</lname> <fname>Justine</fname> <mi>L.</mi> @@ -6969,28 +6969,28 @@ <address3></address3> <address4></address4> <city>Guadalajara</city> - <state_province>Jalisco</state_province> - <postal_code>24659</postal_code> + <stateProvince>Jalisco</stateProvince> + <postalCode>24659</postalCode> <country>Mexico</country> <phone1>887-555-1721</phone1> <phone2>121-555-3771</phone2> <birthdate>14.05.1927</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-04-10</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-04-10</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Justine Ryan</fullname> <test></test> </Customer> <Customer> - <account_num>92747285366</account_num> + <accountNum>92747285366</accountNum> <lname>Chand</lname> <fname>Forrest</fname> <mi>H.</mi> @@ -6999,28 +6999,28 @@ <address3></address3> <address4></address4> <city>Victoria</city> - <state_province>BC</state_province> - <postal_code>29290</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>29290</postalCode> <country>Canada</country> <phone1>829-555-8557</phone1> <phone2>502-555-2293</phone2> <birthdate>23.06.1916</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>5</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>5</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-10-22</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-10-22</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Forrest Chand</fullname> <test></test> </Customer> <Customer> - <account_num>92753009200</account_num> + <accountNum>92753009200</accountNum> <lname>Vanderkamp</lname> <fname>Margaret</fname> <mi></mi> @@ -7029,28 +7029,28 @@ <address3></address3> <address4></address4> <city>Cliffside</city> - <state_province>BC</state_province> - <postal_code>48324</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>48324</postalCode> <country>Canada</country> <phone1>618-555-6621</phone1> <phone2>160-555-8214</phone2> <birthdate>09.06.1946</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-03-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-03-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Margaret Vanderkamp</fullname> <test></test> </Customer> <Customer> - <account_num>92757488489</account_num> + <accountNum>92757488489</accountNum> <lname>Carroll</lname> <fname>Rosmarie</fname> <mi>A.</mi> @@ -7059,28 +7059,28 @@ <address3></address3> <address4></address4> <city>Woodburn</city> - <state_province>OR</state_province> - <postal_code>19116</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>19116</postalCode> <country>USA</country> <phone1>822-555-6743</phone1> <phone2>803-555-9021</phone2> <birthdate>08.07.1921</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-06-03</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-06-03</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Rosmarie Carroll</fullname> <test></test> </Customer> <Customer> - <account_num>92767359018</account_num> + <accountNum>92767359018</accountNum> <lname>Contreras</lname> <fname>Dorothy</fname> <mi></mi> @@ -7089,28 +7089,28 @@ <address3></address3> <address4></address4> <city>Altadena</city> - <state_province>CA</state_province> - <postal_code>43124</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>43124</postalCode> <country>USA</country> <phone1>633-555-3436</phone1> <phone2>483-555-4571</phone2> <birthdate>23.11.1976</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-02-18</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-02-18</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Dorothy Contreras</fullname> <test></test> </Customer> <Customer> - <account_num>92775979638</account_num> + <accountNum>92775979638</accountNum> <lname>Cantoni</lname> <fname>Joseph</fname> <mi></mi> @@ -7119,28 +7119,28 @@ <address3></address3> <address4></address4> <city>Puyallup</city> - <state_province>WA</state_province> - <postal_code>40265</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>40265</postalCode> <country>USA</country> <phone1>860-555-2186</phone1> <phone2>249-555-4007</phone2> <birthdate>07.02.1933</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-07-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Joseph Cantoni</fullname> <test></test> </Customer> <Customer> - <account_num>92786858677</account_num> + <accountNum>92786858677</accountNum> <lname>Reed</lname> <fname>Celine</fname> <mi>C.</mi> @@ -7149,28 +7149,28 @@ <address3></address3> <address4></address4> <city>Mexico City</city> - <state_province>Mexico</state_province> - <postal_code>90621</postal_code> + <stateProvince>Mexico</stateProvince> + <postalCode>90621</postalCode> <country>Mexico</country> <phone1>695-555-6507</phone1> <phone2>191-555-1843</phone2> <birthdate>16.11.1968</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-06-16</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1992-06-16</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Celine Reed</fullname> <test></test> </Customer> <Customer> - <account_num>92798000574</account_num> + <accountNum>92798000574</accountNum> <lname>Peterson</lname> <fname>Glin</fname> <mi>E.</mi> @@ -7179,28 +7179,28 @@ <address3></address3> <address4></address4> <city>Mexico City</city> - <state_province>Mexico</state_province> - <postal_code>92736</postal_code> + <stateProvince>Mexico</stateProvince> + <postalCode>92736</postalCode> <country>Mexico</country> <phone1>945-555-3885</phone1> <phone2>880-555-8907</phone2> <birthdate>20.10.1922</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1991-07-07</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-07</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Glin Peterson</fullname> <test></test> </Customer> <Customer> - <account_num>92803354263</account_num> + <accountNum>92803354263</accountNum> <lname>Osborn</lname> <fname>Stephen</fname> <mi></mi> @@ -7209,28 +7209,28 @@ <address3></address3> <address4></address4> <city>Ladner</city> - <state_province>BC</state_province> - <postal_code>10256</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>10256</postalCode> <country>Canada</country> <phone1>141-555-1493</phone1> <phone2>845-555-5371</phone2> <birthdate>11.08.1918</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-06-22</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1992-06-22</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Stephen Osborn</fullname> <test></test> </Customer> <Customer> - <account_num>92810746400</account_num> + <accountNum>92810746400</accountNum> <lname>Graham.</lname> <fname>Lowell</fname> <mi>J.</mi> @@ -7239,28 +7239,28 @@ <address3></address3> <address4></address4> <city>Tlaxiaco</city> - <state_province>Oaxaca</state_province> - <postal_code>77531</postal_code> + <stateProvince>Oaxaca</stateProvince> + <postalCode>77531</postalCode> <country>Mexico</country> <phone1>653-555-1157</phone1> <phone2>656-555-2064</phone2> <birthdate>21.11.1918</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-05-06</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-05-06</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Lowell Graham.</fullname> <test></test> </Customer> <Customer> - <account_num>92819903492</account_num> + <accountNum>92819903492</accountNum> <lname>Shaddy</lname> <fname>Jamie</fname> <mi>C.</mi> @@ -7269,28 +7269,28 @@ <address3></address3> <address4></address4> <city>Coronado</city> - <state_province>CA</state_province> - <postal_code>33920</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>33920</postalCode> <country>USA</country> <phone1>771-555-6393</phone1> <phone2>883-555-9814</phone2> <birthdate>11.11.1970</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-09-05</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-05</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Jamie Shaddy</fullname> <test></test> </Customer> <Customer> - <account_num>92866139411</account_num> + <accountNum>92866139411</accountNum> <lname>Haemon</lname> <fname>Hattie</fname> <mi>M.</mi> @@ -7299,28 +7299,28 @@ <address3></address3> <address4></address4> <city>Tacoma</city> - <state_province>WA</state_province> - <postal_code>67358</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>67358</postalCode> <country>USA</country> <phone1>996-555-5260</phone1> <phone2>647-555-9368</phone2> <birthdate>09.04.1961</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-04-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-04-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Hattie Haemon</fullname> <test></test> </Customer> <Customer> - <account_num>92866815328</account_num> + <accountNum>92866815328</accountNum> <lname>Krow</lname> <fname>Jame</fname> <mi>C.</mi> @@ -7329,28 +7329,28 @@ <address3></address3> <address4></address4> <city>Shawnee</city> - <state_province>BC</state_province> - <postal_code>16200</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>16200</postalCode> <country>Canada</country> <phone1>477-555-3782</phone1> <phone2>897-555-6746</phone2> <birthdate>01.08.1968</birthdate> - <marital_status>S</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-06-13</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-06-13</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Jame Krow</fullname> <test></test> </Customer> <Customer> - <account_num>91214950084</account_num> + <accountNum>91214950084</accountNum> <lname>Jacobsen</lname> <fname>Eric</fname> <mi></mi> @@ -7359,28 +7359,28 @@ <address3></address3> <address4></address4> <city>Redmond</city> - <state_province>WA</state_province> - <postal_code>73291</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>73291</postalCode> <country>USA</country> <phone1>815-555-3786</phone1> <phone2>358-555-5379</phone2> <birthdate>26.07.1915</birthdate> - <marital_status>M</marital_status> - <yearly_income>$150K +</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$150K +</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-01-16</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-01-16</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Eric Jacobsen</fullname> <test></test> </Customer> <Customer> - <account_num>91217240691</account_num> + <accountNum>91217240691</accountNum> <lname>Castro</lname> <fname>Pamela</fname> <mi>S.</mi> @@ -7389,28 +7389,28 @@ <address3></address3> <address4></address4> <city>Haney</city> - <state_province>BC</state_province> - <postal_code>44083</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>44083</postalCode> <country>Canada</country> <phone1>120-555-3908</phone1> <phone2>100-555-6187</phone2> <birthdate>09.11.1972</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-07-16</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-07-16</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Pamela Castro</fullname> <test></test> </Customer> <Customer> - <account_num>91224150061</account_num> + <accountNum>91224150061</accountNum> <lname>Caldwell</lname> <fname>Sylvia</fname> <mi></mi> @@ -7419,28 +7419,28 @@ <address3></address3> <address4></address4> <city>Burien</city> - <state_province>WA</state_province> - <postal_code>29279</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>29279</postalCode> <country>USA</country> <phone1>831-555-9601</phone1> <phone2>681-555-1736</phone2> <birthdate>24.04.1957</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-09-08</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-08</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Sylvia Caldwell</fullname> <test></test> </Customer> <Customer> - <account_num>91229932904</account_num> + <accountNum>91229932904</accountNum> <lname>Reed</lname> <fname>Russell</fname> <mi>L.</mi> @@ -7449,28 +7449,28 @@ <address3></address3> <address4></address4> <city>Mexico City</city> - <state_province>Mexico</state_province> - <postal_code>65232</postal_code> + <stateProvince>Mexico</stateProvince> + <postalCode>65232</postalCode> <country>Mexico</country> <phone1>158-555-8351</phone1> <phone2>446-555-1172</phone2> <birthdate>24.02.1972</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1993-05-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-05-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Russell Reed</fullname> <test></test> </Customer> <Customer> - <account_num>91242796778</account_num> + <accountNum>91242796778</accountNum> <lname>Kelley</lname> <fname>Victor</fname> <mi></mi> @@ -7479,28 +7479,28 @@ <address3></address3> <address4></address4> <city>Merida</city> - <state_province>Yucatan</state_province> - <postal_code>16590</postal_code> + <stateProvince>Yucatan</stateProvince> + <postalCode>16590</postalCode> <country>Mexico</country> <phone1>892-555-3672</phone1> <phone2>389-555-8008</phone2> <birthdate>18.03.1950</birthdate> - <marital_status>S</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-04-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-04-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Victor Kelley</fullname> <test></test> </Customer> <Customer> - <account_num>91248332858</account_num> + <accountNum>91248332858</accountNum> <lname>Taylor</lname> <fname>Damon</fname> <mi>T.</mi> @@ -7509,28 +7509,28 @@ <address3></address3> <address4></address4> <city>Hidalgo</city> - <state_province>Zacatecas</state_province> - <postal_code>18704</postal_code> + <stateProvince>Zacatecas</stateProvince> + <postalCode>18704</postalCode> <country>Mexico</country> <phone1>242-555-1051</phone1> <phone2>177-555-6072</phone2> <birthdate>22.02.1974</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-02-24</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-02-24</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Damon Taylor</fullname> <test></test> </Customer> <Customer> - <account_num>91257978081</account_num> + <accountNum>91257978081</accountNum> <lname>Robinson</lname> <fname>Rebecca</fname> <mi>D.</mi> @@ -7539,28 +7539,28 @@ <address3></address3> <address4></address4> <city>Lemon Grove</city> - <state_province>CA</state_province> - <postal_code>35223</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>35223</postalCode> <country>USA</country> <phone1>689-555-4575</phone1> <phone2>494-555-8454</phone2> <birthdate>12.12.1969</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1994-04-23</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1994-04-23</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Rebecca Robinson</fullname> <test></test> </Customer> <Customer> - <account_num>91259067058</account_num> + <accountNum>91259067058</accountNum> <lname>Thomsen</lname> <fname>Andrea</fname> <mi>C.</mi> @@ -7569,28 +7569,28 @@ <address3></address3> <address4></address4> <city>Ladner</city> - <state_province>BC</state_province> - <postal_code>35005</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>35005</postalCode> <country>Canada</country> <phone1>301-555-4240</phone1> <phone2>305-555-5147</phone2> <birthdate>11.12.1958</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-03-07</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-03-07</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Clerical</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Andrea Thomsen</fullname> <test></test> </Customer> <Customer> - <account_num>91263970100</account_num> + <accountNum>91263970100</accountNum> <lname>Baldwin</lname> <fname>Douglas</fname> <mi>R.</mi> @@ -7599,28 +7599,28 @@ <address3></address3> <address4></address4> <city>Burien</city> - <state_province>WA</state_province> - <postal_code>10857</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>10857</postalCode> <country>USA</country> <phone1>420-555-9475</phone1> <phone2>532-555-3897</phone2> <birthdate>01.11.1940</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-07-06</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-07-06</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Douglas Baldwin</fullname> <test></test> </Customer> <Customer> - <account_num>91285358071</account_num> + <accountNum>91285358071</accountNum> <lname>Yuhasz</lname> <fname>Ian</fname> <mi>R.</mi> @@ -7629,28 +7629,28 @@ <address3></address3> <address4></address4> <city>Anacortes</city> - <state_province>WA</state_province> - <postal_code>44295</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>44295</postalCode> <country>USA</country> <phone1>955-555-7768</phone1> <phone2>605-555-2875</phone2> <birthdate>10.08.1943</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-11-07</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-11-07</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Ian Yuhasz</fullname> <test></test> </Customer> <Customer> - <account_num>91299525500</account_num> + <accountNum>91299525500</accountNum> <lname>Carmody</lname> <fname>Jovita</fname> <mi></mi> @@ -7659,28 +7659,28 @@ <address3></address3> <address4></address4> <city>Royal Oak</city> - <state_province>BC</state_province> - <postal_code>92137</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>92137</postalCode> <country>Canada</country> <phone1>436-555-6290</phone1> <phone2>855-555-9254</phone2> <birthdate>18.09.1938</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-08-24</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-08-24</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Jovita Carmody</fullname> <test></test> </Customer> <Customer> - <account_num>91309235100</account_num> + <accountNum>91309235100</accountNum> <lname>Gonzales</lname> <fname>Lynn</fname> <mi></mi> @@ -7689,28 +7689,28 @@ <address3></address3> <address4></address4> <city>Oregon City</city> - <state_province>OR</state_province> - <postal_code>65444</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>65444</postalCode> <country>USA</country> <phone1>993-555-3211</phone1> <phone2>951-555-6861</phone2> <birthdate>01.03.1911</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-09-07</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-09-07</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Lynn Gonzales</fullname> <test></test> </Customer> <Customer> - <account_num>91321036800</account_num> + <accountNum>91321036800</accountNum> <lname>Allen</lname> <fname>Phyllis</fname> <mi></mi> @@ -7719,28 +7719,28 @@ <address3></address3> <address4></address4> <city>San Gabriel</city> - <state_province>CA</state_province> - <postal_code>79447</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>79447</postalCode> <country>USA</country> <phone1>497-555-9361</phone1> <phone2>324-555-2868</phone2> <birthdate>15.12.1968</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-04-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-04-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Phyllis Allen</fullname> <test></test> </Customer> <Customer> - <account_num>91321187000</account_num> + <accountNum>91321187000</accountNum> <lname>Caprio</lname> <fname>Johnny</fname> <mi></mi> @@ -7749,28 +7749,28 @@ <address3></address3> <address4></address4> <city>Westminster</city> - <state_province>BC</state_province> - <postal_code>18917</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>18917</postalCode> <country>Canada</country> <phone1>417-555-8568</phone1> <phone2>682-555-2761</phone2> <birthdate>17.03.1938</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-09-14</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-09-14</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Johnny Caprio</fullname> <test></test> </Customer> <Customer> - <account_num>91323767304</account_num> + <accountNum>91323767304</accountNum> <lname>Slaven</lname> <fname>Lanna</fname> <mi>B.</mi> @@ -7779,28 +7779,28 @@ <address3></address3> <address4></address4> <city>Mill Valley</city> - <state_province>CA</state_province> - <postal_code>71789</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>71789</postalCode> <country>USA</country> <phone1>843-555-4347</phone1> <phone2>978-555-6397</phone2> <birthdate>12.02.1956</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-08-07</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-08-07</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Lanna Slaven</fullname> <test></test> </Customer> <Customer> - <account_num>91327012800</account_num> + <accountNum>91327012800</accountNum> <lname>Ortiz</lname> <fname>Fred</fname> <mi></mi> @@ -7809,28 +7809,28 @@ <address3></address3> <address4></address4> <city>Palo Alto</city> - <state_province>CA</state_province> - <postal_code>37125</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>37125</postalCode> <country>USA</country> <phone1>786-555-2182</phone1> <phone2>459-555-4918</phone2> <birthdate>10.06.1960</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-11-16</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-11-16</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Fred Ortiz</fullname> <test></test> </Customer> <Customer> - <account_num>91333943605</account_num> + <accountNum>91333943605</accountNum> <lname>Beaver</lname> <fname>John</fname> <mi>G.</mi> @@ -7839,28 +7839,28 @@ <address3></address3> <address4></address4> <city>Newport Beach</city> - <state_province>CA</state_province> - <postal_code>22746</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>22746</postalCode> <country>USA</country> <phone1>574-555-9247</phone1> <phone2>355-555-5497</phone2> <birthdate>04.05.1964</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1992-11-08</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-11-08</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>John Beaver</fullname> <test></test> </Customer> <Customer> - <account_num>91334227919</account_num> + <accountNum>91334227919</accountNum> <lname>Rhodes</lname> <fname>Albert</fname> <mi>C.</mi> @@ -7869,28 +7869,28 @@ <address3></address3> <address4></address4> <city>Orizaba</city> - <state_province>Veracruz</state_province> - <postal_code>92537</postal_code> + <stateProvince>Veracruz</stateProvince> + <postalCode>92537</postalCode> <country>Mexico</country> <phone1>778-555-9368</phone1> <phone2>759-555-2647</phone2> <birthdate>11.05.1913</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-11-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-11-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Albert Rhodes</fullname> <test></test> </Customer> <Customer> - <account_num>91352697610</account_num> + <accountNum>91352697610</accountNum> <lname>Kaffer</lname> <fname>Scott</fname> <mi>V.</mi> @@ -7899,28 +7899,28 @@ <address3></address3> <address4></address4> <city>Tacoma</city> - <state_province>WA</state_province> - <postal_code>77733</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>77733</postalCode> <country>USA</country> <phone1>590-555-6061</phone1> <phone2>440-555-7197</phone2> <birthdate>24.06.1930</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-11-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-11-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Scott Kaffer</fullname> <test></test> </Customer> <Customer> - <account_num>91359724998</account_num> + <accountNum>91359724998</accountNum> <lname>Bales</lname> <fname>Jennifer</fname> <mi>K.</mi> @@ -7929,28 +7929,28 @@ <address3></address3> <address4></address4> <city>Bellflower</city> - <state_province>CA</state_province> - <postal_code>14687</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>14687</postalCode> <country>USA</country> <phone1>271-555-1649</phone1> <phone2>559-555-3471</phone2> <birthdate>12.09.1935</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-08-14</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1990-08-14</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Jennifer Bales</fullname> <test></test> </Customer> <Customer> - <account_num>91388601660</account_num> + <accountNum>91388601660</accountNum> <lname>Stotka</lname> <fname>Louis</fname> <mi>C.</mi> @@ -7959,28 +7959,28 @@ <address3></address3> <address4></address4> <city>Santa Anita</city> - <state_province>DF</state_province> - <postal_code>65044</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>65044</postalCode> <country>Mexico</country> <phone1>105-555-5971</phone1> <phone2>501-555-1306</phone2> <birthdate>19.03.1933</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-02-08</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-02-08</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Louis Stotka</fullname> <test></test> </Customer> <Customer> - <account_num>91397506594</account_num> + <accountNum>91397506594</accountNum> <lname>Maynard</lname> <fname>Sandra</fname> <mi>Z</mi> @@ -7989,28 +7989,28 @@ <address3></address3> <address4></address4> <city>Bellingham</city> - <state_province>WA</state_province> - <postal_code>67158</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>67158</postalCode> <country>USA</country> <phone1>355-555-3349</phone1> <phone2>290-555-8371</phone2> <birthdate>04.02.1931</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-11-24</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1994-11-24</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Sandra Maynard</fullname> <test></test> </Customer> <Customer> - <account_num>91412441134</account_num> + <accountNum>91412441134</accountNum> <lname>Tuell</lname> <fname>Gracia</fname> <mi></mi> @@ -8019,28 +8019,28 @@ <address3></address3> <address4></address4> <city>Langley</city> - <state_province>BC</state_province> - <postal_code>83677</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>83677</postalCode> <country>Canada</country> <phone1>690-555-4614</phone1> <phone2>255-555-4835</phone2> <birthdate>19.08.1958</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1994-10-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-10-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Gracia Tuell</fullname> <test></test> </Customer> <Customer> - <account_num>91423320174</account_num> + <accountNum>91423320174</accountNum> <lname>Burnett</lname> <fname>Timothy</fname> <mi>A.</mi> @@ -8049,28 +8049,28 @@ <address3></address3> <address4></address4> <city>Acapulco</city> - <state_province>Guerrero</state_province> - <postal_code>25662</postal_code> + <stateProvince>Guerrero</stateProvince> + <postalCode>25662</postalCode> <country>Mexico</country> <phone1>963-555-9621</phone1> <phone2>966-555-1528</phone2> <birthdate>26.07.1921</birthdate> - <marital_status>M</marital_status> - <yearly_income>$150K +</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$150K +</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-05-01</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1990-05-01</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Timothy Burnett</fullname> <test></test> </Customer> <Customer> - <account_num>91427676081</account_num> + <accountNum>91427676081</accountNum> <lname>Haugh</lname> <fname>James</fname> <mi>A.</mi> @@ -8079,28 +8079,28 @@ <address3></address3> <address4></address4> <city>Olympia</city> - <state_province>WA</state_province> - <postal_code>83425</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>83425</postalCode> <country>USA</country> <phone1>182-555-5856</phone1> <phone2>293-555-9278</phone2> <birthdate>14.03.1935</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-05-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-05-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>James Haugh</fullname> <test></test> </Customer> <Customer> - <account_num>91434070467</account_num> + <accountNum>91434070467</accountNum> <lname>Moberly</lname> <fname>Paula</fname> <mi>L.</mi> @@ -8109,28 +8109,28 @@ <address3></address3> <address4></address4> <city>La Mesa</city> - <state_province>CA</state_province> - <postal_code>93185</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>93185</postalCode> <country>USA</country> <phone1>716-555-4149</phone1> <phone2>367-555-8257</phone2> <birthdate>20.07.1970</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-09-07</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-09-07</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Paula Moberly</fullname> <test></test> </Customer> <Customer> - <account_num>91436216200</account_num> + <accountNum>91436216200</accountNum> <lname>Meyer</lname> <fname>Eric</fname> <mi></mi> @@ -8139,28 +8139,28 @@ <address3></address3> <address4></address4> <city>Colma</city> - <state_province>CA</state_province> - <postal_code>30868</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>30868</postalCode> <country>USA</country> <phone1>197-555-2671</phone1> <phone2>617-555-5635</phone2> <birthdate>09.08.1939</birthdate> - <marital_status>M</marital_status> - <yearly_income>$150K +</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$150K +</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-06-27</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-06-27</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Eric Meyer</fullname> <test></test> </Customer> <Customer> - <account_num>91439402699</account_num> + <accountNum>91439402699</accountNum> <lname>Orona</lname> <fname>Gloria</fname> <mi></mi> @@ -8169,28 +8169,28 @@ <address3></address3> <address4></address4> <city>Santa Anita</city> - <state_province>DF</state_province> - <postal_code>30467</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>30467</postalCode> <country>Mexico</country> <phone1>755-555-8592</phone1> <phone2>713-555-3242</phone2> <birthdate>05.06.1932</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-06-18</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-06-18</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Gloria Orona</fullname> <test></test> </Customer> <Customer> - <account_num>91445936560</account_num> + <accountNum>91445936560</accountNum> <lname>Warmack</lname> <fname>Ruth</fname> <mi>L.</mi> @@ -8199,28 +8199,28 @@ <address3></address3> <address4></address4> <city>Burnaby</city> - <state_province>BC</state_province> - <postal_code>18178</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>18178</postalCode> <country>Canada</country> <phone1>259-555-5742</phone1> <phone2>986-555-8249</phone2> <birthdate>27.04.1963</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-12-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-12-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Ruth Warmack</fullname> <test></test> </Customer> <Customer> - <account_num>91464626193</account_num> + <accountNum>91464626193</accountNum> <lname>Wall</lname> <fname>Joanna</fname> <mi>C.</mi> @@ -8229,28 +8229,28 @@ <address3></address3> <address4></address4> <city>Salem</city> - <state_province>OR</state_province> - <postal_code>82939</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>82939</postalCode> <country>USA</country> <phone1>178-555-4949</phone1> <phone2>444-555-8142</phone2> <birthdate>27.03.1965</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-09-05</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-09-05</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Joanna Wall</fullname> <test></test> </Customer> <Customer> - <account_num>91485365000</account_num> + <accountNum>91485365000</accountNum> <lname>Appelbaum</lname> <fname>Sabria</fname> <mi></mi> @@ -8259,28 +8259,28 @@ <address3></address3> <address4></address4> <city>Bellingham</city> - <state_province>WA</state_province> - <postal_code>36812</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>36812</postalCode> <country>USA</country> <phone1>844-555-4385</phone1> <phone2>978-555-6435</phone2> <birthdate>19.09.1945</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-08-07</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-08-07</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Sabria Appelbaum</fullname> <test></test> </Customer> <Customer> - <account_num>91490407586</account_num> + <accountNum>91490407586</accountNum> <lname>Kung</lname> <fname>Jeffrey</fname> <mi>A.</mi> @@ -8289,28 +8289,28 @@ <address3></address3> <address4></address4> <city>Sedro Woolley</city> - <state_province>WA</state_province> - <postal_code>41442</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>41442</postalCode> <country>USA</country> <phone1>898-555-4481</phone1> <phone2>332-555-3559</phone2> <birthdate>25.12.1923</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-07-13</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-13</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Jeffrey Kung</fullname> <test></test> </Customer> <Customer> - <account_num>91494795680</account_num> + <accountNum>91494795680</accountNum> <lname>Wilson</lname> <fname>Gloria</fname> <mi></mi> @@ -8319,28 +8319,28 @@ <address3></address3> <address4></address4> <city>Guadalajara</city> - <state_province>Jalisco</state_province> - <postal_code>60476</postal_code> + <stateProvince>Jalisco</stateProvince> + <postalCode>60476</postalCode> <country>Mexico</country> <phone1>448-555-7888</phone1> <phone2>229-555-4138</phone2> <birthdate>16.08.1959</birthdate> - <marital_status>S</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-07-14</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-07-14</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Gloria Wilson</fullname> <test></test> </Customer> <Customer> - <account_num>91509091854</account_num> + <accountNum>91509091854</accountNum> <lname>Tuffield</lname> <fname>Phyllis</fname> <mi>J.</mi> @@ -8349,28 +8349,28 @@ <address3></address3> <address4></address4> <city>Long Beach</city> - <state_province>CA</state_province> - <postal_code>57560</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>57560</postalCode> <country>USA</country> <phone1>652-555-8009</phone1> <phone2>633-555-1288</phone2> <birthdate>10.02.1928</birthdate> - <marital_status>S</marital_status> - <yearly_income>$150K +</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$150K +</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-03-21</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1992-03-21</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Phyllis Tuffield</fullname> <test></test> </Customer> <Customer> - <account_num>91536670327</account_num> + <accountNum>91536670327</accountNum> <lname>Ping</lname> <fname>Patricia</fname> <mi>J.</mi> @@ -8379,28 +8379,28 @@ <address3></address3> <address4></address4> <city>Tlaxiaco</city> - <state_province>Oaxaca</state_province> - <postal_code>42756</postal_code> + <stateProvince>Oaxaca</stateProvince> + <postalCode>42756</postalCode> <country>Mexico</country> <phone1>463-555-4702</phone1> <phone2>313-555-5838</phone2> <birthdate>04.02.1919</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-11-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-11-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Patricia Ping</fullname> <test></test> </Customer> <Customer> - <account_num>91548761725</account_num> + <accountNum>91548761725</accountNum> <lname>Shepard</lname> <fname>David</fname> <mi>C.</mi> @@ -8409,28 +8409,28 @@ <address3></address3> <address4></address4> <city>W. Linn</city> - <state_province>OR</state_province> - <postal_code>78709</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>78709</postalCode> <country>USA</country> <phone1>690-555-3452</phone1> <phone2>979-555-5273</phone2> <birthdate>09.07.1940</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-01-25</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-01-25</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>David Shepard</fullname> <test></test> </Customer> <Customer> - <account_num>91554399728</account_num> + <accountNum>91554399728</accountNum> <lname>Bailey</lname> <fname>James</fname> <mi></mi> @@ -8439,28 +8439,28 @@ <address3></address3> <address4></address4> <city>Richmond</city> - <state_province>BC</state_province> - <postal_code>30067</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>30067</postalCode> <country>Canada</country> <phone1>525-555-7773</phone1> <phone2>921-555-3109</phone2> <birthdate>24.01.1912</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>5</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>5</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-07-27</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-07-27</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>James Bailey</fullname> <test></test> </Customer> <Customer> - <account_num>91554464101</account_num> + <accountNum>91554464101</accountNum> <lname>Chestnut</lname> <fname>Susan</fname> <mi>J.</mi> @@ -8469,28 +8469,28 @@ <address3></address3> <address4></address4> <city>Yakima</city> - <state_province>WA</state_province> - <postal_code>32182</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>32182</postalCode> <country>USA</country> <phone1>114-555-8809</phone1> <phone2>710-555-1174</phone2> <birthdate>06.07.1942</birthdate> - <marital_status>M</marital_status> - <yearly_income>$150K +</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$150K +</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-12-13</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-12-13</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Susan Chestnut</fullname> <test></test> </Customer> <Customer> - <account_num>91557757854</account_num> + <accountNum>91557757854</accountNum> <lname>Toone</lname> <fname>Delia</fname> <mi>C.</mi> @@ -8499,28 +8499,28 @@ <address3></address3> <address4></address4> <city>Bremerton</city> - <state_province>WA</state_province> - <postal_code>22408</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>22408</postalCode> <country>USA</country> <phone1>210-555-6416</phone1> <phone2>675-555-6638</phone2> <birthdate>18.09.1931</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-02-05</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-02-05</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Delia Toone</fullname> <test></test> </Customer> <Customer> - <account_num>91561319828</account_num> + <accountNum>91561319828</accountNum> <lname>Armstrong</lname> <fname>Thomas</fname> <mi>C.</mi> @@ -8529,28 +8529,28 @@ <address3></address3> <address4></address4> <city>Mill Valley</city> - <state_province>CA</state_province> - <postal_code>89684</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>89684</postalCode> <country>USA</country> <phone1>483-555-2423</phone1> <phone2>486-555-3330</phone2> <birthdate>23.06.1926</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-05-10</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-05-10</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Thomas Armstrong</fullname> <test></test> </Customer> <Customer> - <account_num>91567671298</account_num> + <accountNum>91567671298</accountNum> <lname>Billstrom</lname> <fname>Mary</fname> <mi>S.</mi> @@ -8559,28 +8559,28 @@ <address3></address3> <address4></address4> <city>Ladner</city> - <state_province>BC</state_province> - <postal_code>72364</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>72364</postalCode> <country>Canada</country> <phone1>841-555-2316</phone1> <phone2>713-555-2081</phone2> <birthdate>08.09.1972</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-01-04</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-01-04</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Mary Billstrom</fullname> <test></test> </Customer> <Customer> - <account_num>91583045721</account_num> + <accountNum>91583045721</accountNum> <lname>Stotka</lname> <fname>Robert</fname> <mi>C.</mi> @@ -8589,28 +8589,28 @@ <address3></address3> <address4></address4> <city>Sooke</city> - <state_province>BC</state_province> - <postal_code>31770</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>31770</postalCode> <country>Canada</country> <phone1>236-555-5952</phone1> <phone2>787-555-1059</phone2> <birthdate>11.10.1969</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-04-21</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-04-21</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Robert Stotka</fullname> <test></test> </Customer> <Customer> - <account_num>91589563488</account_num> + <accountNum>91589563488</accountNum> <lname>Johnson</lname> <fname>Danielle</fname> <mi>C.</mi> @@ -8619,28 +8619,28 @@ <address3></address3> <address4></address4> <city>Imperial Beach</city> - <state_province>CA</state_province> - <postal_code>79612</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>79612</postalCode> <country>USA</country> <phone1>617-555-4473</phone1> <phone2>136-555-7438</phone2> <birthdate>09.10.1912</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-09-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-09-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Danielle Johnson</fullname> <test></test> </Customer> <Customer> - <account_num>91590405702</account_num> + <accountNum>91590405702</accountNum> <lname>Lepro</lname> <fname>Bonnie</fname> <mi>L.</mi> @@ -8649,28 +8649,28 @@ <address3></address3> <address4></address4> <city>La Mesa</city> - <state_province>CA</state_province> - <postal_code>79211</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>79211</postalCode> <country>USA</country> <phone1>275-555-1395</phone1> <phone2>233-555-5045</phone2> <birthdate>13.08.1949</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-06-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-06-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Bonnie Lepro</fullname> <test></test> </Customer> <Customer> - <account_num>91597867608</account_num> + <accountNum>91597867608</accountNum> <lname>Elliott</lname> <fname>Carol</fname> <mi></mi> @@ -8679,28 +8679,28 @@ <address3></address3> <address4></address4> <city>Milwaukie</city> - <state_province>OR</state_province> - <postal_code>66922</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>66922</postalCode> <country>USA</country> <phone1>608-555-2777</phone1> <phone2>196-555-1627</phone2> <birthdate>24.09.1967</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-08-23</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-08-23</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Carol Elliott</fullname> <test></test> </Customer> <Customer> - <account_num>91612346200</account_num> + <accountNum>91612346200</accountNum> <lname>Steelman</lname> <fname>Shanay</fname> <mi></mi> @@ -8709,28 +8709,28 @@ <address3></address3> <address4></address4> <city>Shawnee</city> - <state_province>BC</state_province> - <postal_code>63923</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>63923</postalCode> <country>Canada</country> <phone1>288-555-7327</phone1> <phone2>554-555-1520</phone2> <birthdate>05.08.1942</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-06-07</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-06-07</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Shanay Steelman</fullname> <test></test> </Customer> <Customer> - <account_num>91623246669</account_num> + <accountNum>91623246669</accountNum> <lname>Adams</lname> <fname>Frances</fname> <mi>L.</mi> @@ -8739,28 +8739,28 @@ <address3></address3> <address4></address4> <city>San Gabriel</city> - <state_province>CA</state_province> - <postal_code>85556</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>85556</postalCode> <country>USA</country> <phone1>954-555-6763</phone1> <phone2>188-555-8813</phone2> <birthdate>21.10.1954</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-12-05</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-12-05</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Frances Adams</fullname> <test></test> </Customer> <Customer> - <account_num>91668173670</account_num> + <accountNum>91668173670</accountNum> <lname>Poorbaugh</lname> <fname>Alma</fname> <mi></mi> @@ -8769,28 +8769,28 @@ <address3></address3> <address4></address4> <city>Glendale</city> - <state_province>CA</state_province> - <postal_code>90186</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>90186</postalCode> <country>USA</country> <phone1>896-555-4598</phone1> <phone2>569-555-7334</phone2> <birthdate>24.10.1965</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-04-08</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-04-08</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Alma Poorbaugh</fullname> <test></test> </Customer> <Customer> - <account_num>91673296700</account_num> + <accountNum>91673296700</accountNum> <lname>Hasty</lname> <fname>Neal</fname> <mi></mi> @@ -8799,28 +8799,28 @@ <address3></address3> <address4></address4> <city>Burlingame</city> - <state_province>CA</state_province> - <postal_code>10221</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>10221</postalCode> <country>USA</country> <phone1>685-555-2663</phone1> <phone2>227-555-4256</phone2> <birthdate>13.02.1963</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-11-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-11-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Neal Hasty</fullname> <test></test> </Customer> <Customer> - <account_num>91676284700</account_num> + <accountNum>91676284700</accountNum> <lname>Betsekas</lname> <fname>Steven</fname> <mi></mi> @@ -8829,28 +8829,28 @@ <address3></address3> <address4></address4> <city>National City</city> - <state_province>CA</state_province> - <postal_code>80012</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>80012</postalCode> <country>USA</country> <phone1>650-555-8127</phone1> <phone2>631-555-1405</phone2> <birthdate>15.07.1976</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-07-22</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-07-22</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Steven Betsekas</fullname> <test></test> </Customer> <Customer> - <account_num>91693692207</account_num> + <accountNum>91693692207</accountNum> <lname>Ziegler</lname> <fname>Arvid</fname> <mi></mi> @@ -8859,28 +8859,28 @@ <address3></address3> <address4></address4> <city>Port Hammond</city> - <state_province>BC</state_province> - <postal_code>65208</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>65208</postalCode> <country>Canada</country> <phone1>461-555-4820</phone1> <phone2>550-555-9613</phone2> <birthdate>06.03.1928</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-12-16</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-12-16</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Arvid Ziegler</fullname> <test></test> </Customer> <Customer> - <account_num>91694641709</account_num> + <accountNum>91694641709</accountNum> <lname>Weyerhaeuser</lname> <fname>Ann</fname> <mi>H.</mi> @@ -8889,28 +8889,28 @@ <address3></address3> <address4></address4> <city>Shawnee</city> - <state_province>BC</state_province> - <postal_code>21626</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>21626</postalCode> <country>Canada</country> <phone1>688-555-3570</phone1> <phone2>977-555-5391</phone2> <birthdate>09.05.1912</birthdate> - <marital_status>S</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1993-12-03</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-12-03</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Ann Weyerhaeuser</fullname> <test></test> </Customer> <Customer> - <account_num>91718824505</account_num> + <accountNum>91718824505</accountNum> <lname>Robinson</lname> <fname>Dorothy</fname> <mi></mi> @@ -8919,28 +8919,28 @@ <address3></address3> <address4></address4> <city>Altadena</city> - <state_province>CA</state_province> - <postal_code>52519</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>52519</postalCode> <country>USA</country> <phone1>762-555-2548</phone1> <phone2>919-555-3227</phone2> <birthdate>05.10.1927</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-11-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-11-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Dorothy Robinson</fullname> <test></test> </Customer> <Customer> - <account_num>91719006896</account_num> + <accountNum>91719006896</accountNum> <lname>Brunner</lname> <fname>June</fname> <mi></mi> @@ -8949,28 +8949,28 @@ <address3></address3> <address4></address4> <city>Santa Monica</city> - <state_province>CA</state_province> - <postal_code>54634</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>54634</postalCode> <country>USA</country> <phone1>111-555-8927</phone1> <phone2>707-555-1291</phone2> <birthdate>27.09.1977</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-01-02</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-01-02</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>June Brunner</fullname> <test></test> </Customer> <Customer> - <account_num>91733206510</account_num> + <accountNum>91733206510</accountNum> <lname>Frazier</lname> <fname>Judith</fname> <mi>A.</mi> @@ -8979,28 +8979,28 @@ <address3></address3> <address4></address4> <city>Berkeley</city> - <state_province>CA</state_province> - <postal_code>71152</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>71152</postalCode> <country>USA</country> <phone1>208-555-6534</phone1> <phone2>673-555-6755</phone2> <birthdate>21.11.1941</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-07-04</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-07-04</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Judith Frazier</fullname> <test></test> </Customer> <Customer> - <account_num>91742315300</account_num> + <accountNum>91742315300</accountNum> <lname>Rector</lname> <fname>Michelle</fname> <mi>D.</mi> @@ -9009,28 +9009,28 @@ <address3></address3> <address4></address4> <city>Bellingham</city> - <state_province>WA</state_province> - <postal_code>39429</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>39429</postalCode> <country>USA</country> <phone1>480-555-2541</phone1> <phone2>723-555-7106</phone2> <birthdate>23.04.1967</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-07-07</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-07-07</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Michelle Rector</fullname> <test></test> </Customer> <Customer> - <account_num>91756214499</account_num> + <accountNum>91756214499</accountNum> <lname>Caldwell</lname> <fname>Mari</fname> <mi>V.</mi> @@ -9039,28 +9039,28 @@ <address3></address3> <address4></address4> <city>Corvallis</city> - <state_province>OR</state_province> - <postal_code>94816</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>94816</postalCode> <country>USA</country> <phone1>951-555-4694</phone1> <phone2>823-555-4458</phone2> <birthdate>16.07.1917</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-08-06</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-08-06</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Mari Caldwell</fullname> <test></test> </Customer> <Customer> - <account_num>91759245395</account_num> + <accountNum>91759245395</accountNum> <lname>Gonzales</lname> <fname>Linda</fname> <mi></mi> @@ -9069,28 +9069,28 @@ <address3></address3> <address4></address4> <city>Lynnwood</city> - <state_province>WA</state_province> - <postal_code>29255</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>29255</postalCode> <country>USA</country> <phone1>346-555-8329</phone1> <phone2>897-555-3437</phone2> <birthdate>16.04.1946</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-08-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-08-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Linda Gonzales</fullname> <test></test> </Customer> <Customer> - <account_num>91776534914</account_num> + <accountNum>91776534914</accountNum> <lname>Monitor</lname> <fname>Alan</fname> <mi></mi> @@ -9099,28 +9099,28 @@ <address3></address3> <address4></address4> <city>Newton</city> - <state_province>BC</state_province> - <postal_code>43020</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>43020</postalCode> <country>Canada</country> <phone1>727-555-6851</phone1> <phone2>246-555-9815</phone2> <birthdate>11.11.1921</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-09-09</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-09-09</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Alan Monitor</fullname> <test></test> </Customer> <Customer> - <account_num>91781228780</account_num> + <accountNum>91781228780</accountNum> <lname>Lewin</lname> <fname>Elsie</fname> <mi>M.</mi> @@ -9129,28 +9129,28 @@ <address3></address3> <address4></address4> <city>Lake Oswego</city> - <state_province>OR</state_province> - <postal_code>42620</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>42620</postalCode> <country>USA</country> <phone1>624-555-7430</phone1> <phone2>343-555-7422</phone2> <birthdate>12.06.1920</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-02-21</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-02-21</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Elsie Lewin</fullname> <test></test> </Customer> <Customer> - <account_num>91826574206</account_num> + <accountNum>91826574206</accountNum> <lname>Desalvo</lname> <fname>Bev</fname> <mi>O.</mi> @@ -9159,28 +9159,28 @@ <address3></address3> <address4></address4> <city>Beverly Hills</city> - <state_province>CA</state_province> - <postal_code>30331</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>30331</postalCode> <country>USA</country> <phone1>127-555-4580</phone1> <phone2>854-555-7087</phone2> <birthdate>02.07.1946</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-12-15</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-12-15</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Bev Desalvo</fullname> <test></test> </Customer> <Customer> - <account_num>91839717000</account_num> + <accountNum>91839717000</accountNum> <lname>Alpuerto</lname> <fname>Oscar</fname> <mi></mi> @@ -9189,28 +9189,28 @@ <address3></address3> <address4></address4> <city>Spokane</city> - <state_province>WA</state_province> - <postal_code>95091</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>95091</postalCode> <country>USA</country> <phone1>708-555-9130</phone1> <phone2>973-555-3322</phone2> <birthdate>15.07.1969</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-09-07</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1992-09-07</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Oscar Alpuerto</fullname> <test></test> </Customer> <Customer> - <account_num>91854072213</account_num> + <accountNum>91854072213</accountNum> <lname>Marshall</lname> <fname>Cecelia</fname> <mi>M.</mi> @@ -9219,28 +9219,28 @@ <address3></address3> <address4></address4> <city>Fremont</city> - <state_province>CA</state_province> - <postal_code>48964</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>48964</postalCode> <country>USA</country> <phone1>474-555-8565</phone1> <phone2>608-555-1615</phone2> <birthdate>28.06.1943</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-01-02</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-01-02</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Cecelia Marshall</fullname> <test></test> </Customer> <Customer> - <account_num>91879279613</account_num> + <accountNum>91879279613</accountNum> <lname>Bockenkamp</lname> <fname>Gabriel</fname> <mi></mi> @@ -9249,28 +9249,28 @@ <address3></address3> <address4></address4> <city>Berkeley</city> - <state_province>CA</state_province> - <postal_code>79887</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>79887</postalCode> <country>USA</country> <phone1>416-555-6401</phone1> <phone2>989-555-9137</phone2> <birthdate>02.02.1916</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-07-14</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-07-14</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Gabriel Bockenkamp</fullname> <test></test> </Customer> <Customer> - <account_num>91896783700</account_num> + <accountNum>91896783700</accountNum> <lname>Kesterson</lname> <fname>Alice</fname> <mi></mi> @@ -9279,28 +9279,28 @@ <address3></address3> <address4></address4> <city>Glendale</city> - <state_province>CA</state_province> - <postal_code>98921</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>98921</postalCode> <country>USA</country> <phone1>204-555-4465</phone1> <phone2>647-555-6058</phone2> <birthdate>26.05.1958</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-11-09</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-11-09</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Alice Kesterson</fullname> <test></test> </Customer> <Customer> - <account_num>91900667500</account_num> + <accountNum>91900667500</accountNum> <lname>Alexander</lname> <fname>J. Phillip</fname> <mi></mi> @@ -9309,28 +9309,28 @@ <address3></address3> <address4></address4> <city>Richmond</city> - <state_province>BC</state_province> - <postal_code>69713</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>69713</postalCode> <country>Canada</country> <phone1>757-555-1584</phone1> <phone2>738-555-3862</phone2> <birthdate>25.06.1933</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-11-12</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1990-11-12</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>J. Phillip Alexander</fullname> <test></test> </Customer> <Customer> - <account_num>91901751160</account_num> + <accountNum>91901751160</accountNum> <lname>Mendoza</lname> <fname>R. Morgan</fname> <mi></mi> @@ -9339,28 +9339,28 @@ <address3></address3> <address4></address4> <city>Novato</city> - <state_province>CA</state_province> - <postal_code>54909</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>54909</postalCode> <country>USA</country> <phone1>569-555-7276</phone1> <phone2>657-555-3069</phone2> <birthdate>13.10.1917</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-04-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-04-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>R. Morgan Mendoza</fullname> <test></test> </Customer> <Customer> - <account_num>91909561753</account_num> + <accountNum>91909561753</accountNum> <lname>Herrick</lname> <fname>Pam</fname> <mi></mi> @@ -9369,28 +9369,28 @@ <address3></address3> <address4></address4> <city>Anacortes</city> - <state_province>WA</state_province> - <postal_code>90861</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>90861</postalCode> <country>USA</country> <phone1>796-555-6026</phone1> <phone2>184-555-7848</phone2> <birthdate>13.09.1933</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-11-11</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-11-11</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Pam Herrick</fullname> <test></test> </Customer> <Customer> - <account_num>91912469300</account_num> + <accountNum>91912469300</accountNum> <lname>McCoy</lname> <fname>James</fname> <mi></mi> @@ -9399,28 +9399,28 @@ <address3></address3> <address4></address4> <city>Langford</city> - <state_province>BC</state_province> - <postal_code>42219</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>42219</postalCode> <country>Canada</country> <phone1>869-555-5005</phone1> <phone2>126-555-5684</phone2> <birthdate>06.10.1910</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-10-09</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-10-09</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>James McCoy</fullname> <test></test> </Customer> <Customer> - <account_num>91916025876</account_num> + <accountNum>91916025876</accountNum> <lname>Thoreson</lname> <fname>Rossane</fname> <mi></mi> @@ -9429,28 +9429,28 @@ <address3></address3> <address4></address4> <city>Langford</city> - <state_province>BC</state_province> - <postal_code>44334</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>44334</postalCode> <country>Canada</country> <phone1>219-555-2384</phone1> <phone2>815-555-3748</phone2> <birthdate>10.08.1934</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-08-15</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-08-15</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Rossane Thoreson</fullname> <test></test> </Customer> <Customer> - <account_num>91929034590</account_num> + <accountNum>91929034590</accountNum> <lname>Snowden</lname> <fname>Victoria</fname> <mi></mi> @@ -9459,28 +9459,28 @@ <address3></address3> <address4></address4> <city>Walla Walla</city> - <state_province>WA</state_province> - <postal_code>34561</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>34561</postalCode> <country>USA</country> <phone1>315-555-8991</phone1> <phone2>780-555-9212</phone2> <birthdate>28.07.1930</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-10-15</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-10-15</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Victoria Snowden</fullname> <test></test> </Customer> <Customer> - <account_num>91966392397</account_num> + <accountNum>91966392397</accountNum> <lname>Blanton</lname> <fname>Donald</fname> <mi>R.</mi> @@ -9489,28 +9489,28 @@ <address3></address3> <address4></address4> <city>Arcadia</city> - <state_province>CA</state_province> - <postal_code>28375</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>28375</postalCode> <country>USA</country> <phone1>588-555-4998</phone1> <phone2>830-555-9562</phone2> <birthdate>27.07.1918</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-09-26</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-26</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Donald Blanton</fullname> <test></test> </Customer> <Customer> - <account_num>91993128657</account_num> + <accountNum>91993128657</accountNum> <lname>Gibbens</lname> <fname>Cornett</fname> <mi></mi> @@ -9519,28 +9519,28 @@ <address3></address3> <address4></address4> <city>Santa Fe</city> - <state_province>DF</state_province> - <postal_code>84517</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>84517</postalCode> <country>Mexico</country> <phone1>946-555-4891</phone1> <phone2>818-555-4655</phone2> <birthdate>17.07.1970</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-10-14</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-10-14</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Cornett Gibbens</fullname> <test></test> </Customer> <Customer> - <account_num>92005987200</account_num> + <accountNum>92005987200</accountNum> <lname>Alcorn</lname> <fname>Paul</fname> <mi></mi> @@ -9549,28 +9549,28 @@ <address3></address3> <address4></address4> <city>Fremont</city> - <state_province>CA</state_province> - <postal_code>18956</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>18956</postalCode> <country>USA</country> <phone1>580-555-3184</phone1> <phone2>892-555-3634</phone2> <birthdate>26.03.1973</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-06-26</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-06-26</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Paul Alcorn</fullname> <test></test> </Customer> <Customer> - <account_num>92015659213</account_num> + <accountNum>92015659213</accountNum> <lname>Miller</lname> <fname>Virginia</fname> <mi>C.</mi> @@ -9579,28 +9579,28 @@ <address3></address3> <address4></address4> <city>Bellflower</city> - <state_province>CA</state_province> - <postal_code>40505</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>40505</postalCode> <country>USA</country> <phone1>722-555-7048</phone1> <phone2>242-555-1012</phone2> <birthdate>18.07.1980</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-07-22</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-07-22</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Virginia Miller</fullname> <test></test> </Customer> <Customer> - <account_num>92029435038</account_num> + <accountNum>92029435038</accountNum> <lname>Campen</lname> <fname>Henry</fname> <mi>D.</mi> @@ -9609,28 +9609,28 @@ <address3></address3> <address4></address4> <city>Salem</city> - <state_province>OR</state_province> - <postal_code>90784</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>90784</postalCode> <country>USA</country> <phone1>619-555-7627</phone1> <phone2>338-555-7619</phone2> <birthdate>17.09.1941</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-02-02</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-02-02</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Henry Campen</fullname> <test></test> </Customer> <Customer> - <account_num>92043457627</account_num> + <accountNum>92043457627</accountNum> <lname>Coffman</lname> <fname>Connie</fname> <mi>A.</mi> @@ -9639,28 +9639,28 @@ <address3></address3> <address4></address4> <city>San Diego</city> - <state_province>CA</state_province> - <postal_code>78495</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>78495</postalCode> <country>USA</country> <phone1>123-555-4777</phone1> <phone2>850-555-7284</phone2> <birthdate>03.07.1929</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-11-04</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-11-04</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Connie Coffman</fullname> <test></test> </Customer> <Customer> - <account_num>92050951719</account_num> + <accountNum>92050951719</accountNum> <lname>Bustamante</lname> <fname>Jared</fname> <mi>C.</mi> @@ -9669,28 +9669,28 @@ <address3></address3> <address4></address4> <city>Concord</city> - <state_province>CA</state_province> - <postal_code>44256</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>44256</postalCode> <country>USA</country> <phone1>815-555-2586</phone1> <phone2>181-555-5779</phone2> <birthdate>17.02.1910</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-02-09</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-02-09</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Jared Bustamante</fullname> <test></test> </Customer> <Customer> - <account_num>92053923606</account_num> + <accountNum>92053923606</accountNum> <lname>Eldridge</lname> <fname>Carla</fname> <mi>J.</mi> @@ -9699,28 +9699,28 @@ <address3></address3> <address4></address4> <city>San Diego</city> - <state_province>CA</state_province> - <postal_code>97128</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>97128</postalCode> <country>USA</country> <phone1>581-555-2022</phone1> <phone2>716-555-4072</phone2> <birthdate>03.08.1956</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-04-13</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1994-04-13</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Carla Eldridge</fullname> <test></test> </Customer> <Customer> - <account_num>92061052918</account_num> + <accountNum>92061052918</accountNum> <lname>Sipsy</lname> <fname>Barbara</fname> <mi></mi> @@ -9729,28 +9729,28 @@ <address3></address3> <address4></address4> <city>National City</city> - <state_province>CA</state_province> - <postal_code>27594</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>27594</postalCode> <country>USA</country> <phone1>523-555-8858</phone1> <phone2>196-555-2594</phone2> <birthdate>12.04.1973</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-07-22</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-07-22</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Barbara Sipsy</fullname> <test></test> </Customer> <Customer> - <account_num>92065156698</account_num> + <accountNum>92065156698</accountNum> <lname>Weimer</lname> <fname>Dorothy</fname> <mi>L.</mi> @@ -9759,28 +9759,28 @@ <address3></address3> <address4></address4> <city>San Andres</city> - <state_province>DF</state_province> - <postal_code>21793</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>21793</postalCode> <country>Mexico</country> <phone1>312-555-6922</phone1> <phone2>754-555-8515</phone2> <birthdate>22.11.1965</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-07-15</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-15</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Dorothy Weimer</fullname> <test></test> </Customer> <Customer> - <account_num>92121091485</account_num> + <accountNum>92121091485</accountNum> <lname>Irwin</lname> <fname>Richard</fname> <mi>J.</mi> @@ -9789,28 +9789,28 @@ <address3></address3> <address4></address4> <city>Lebanon</city> - <state_province>OR</state_province> - <postal_code>91585</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>91585</postalCode> <country>USA</country> <phone1>277-555-3386</phone1> <phone2>258-555-5665</phone2> <birthdate>02.11.1914</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-07-25</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-07-25</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Richard Irwin</fullname> <test></test> </Customer> <Customer> - <account_num>92153497934</account_num> + <accountNum>92153497934</accountNum> <lname>Son</lname> <fname>Alma</fname> <mi>H.</mi> @@ -9819,28 +9819,28 @@ <address3></address3> <address4></address4> <city>Burbank</city> - <state_province>CA</state_province> - <postal_code>76780</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>76780</postalCode> <country>USA</country> <phone1>988-555-9079</phone1> <phone2>177-555-4872</phone2> <birthdate>15.12.1930</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-07-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-07-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Alma Son</fullname> <test></test> </Customer> <Customer> - <account_num>92159720659</account_num> + <accountNum>92159720659</accountNum> <lname>Brandon</lname> <fname>Cornelius</fname> <mi>G.</mi> @@ -9849,28 +9849,28 @@ <address3></address3> <address4></address4> <city>Yakima</city> - <state_province>WA</state_province> - <postal_code>40026</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>40026</postalCode> <country>USA</country> <phone1>315-555-7829</phone1> <phone2>604-555-9651</phone2> <birthdate>23.10.1920</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-12-07</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-12-07</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Cornelius Brandon</fullname> <test></test> </Customer> <Customer> - <account_num>92164339400</account_num> + <accountNum>92164339400</accountNum> <lname>Quintana</lname> <fname>Monica</fname> <mi></mi> @@ -9879,28 +9879,28 @@ <address3></address3> <address4></address4> <city>Vancouver</city> - <state_province>BC</state_province> - <postal_code>64091</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>64091</postalCode> <country>Canada</country> <phone1>389-555-6808</phone1> <phone2>546-555-7486</phone2> <birthdate>14.07.1929</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-08-28</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-08-28</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Monica Quintana</fullname> <test></test> </Customer> <Customer> - <account_num>92178785800</account_num> + <accountNum>92178785800</accountNum> <lname>Colon</lname> <fname>John</fname> <mi></mi> @@ -9909,28 +9909,28 @@ <address3></address3> <address4></address4> <city>Guadalajara</city> - <state_province>Jalisco</state_province> - <postal_code>66206</postal_code> + <stateProvince>Jalisco</stateProvince> + <postalCode>66206</postalCode> <country>Mexico</country> <phone1>639-555-4186</phone1> <phone2>335-555-5551</phone2> <birthdate>15.03.1915</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-06-16</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-06-16</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>John Colon</fullname> <test></test> </Customer> <Customer> - <account_num>92179268598</account_num> + <accountNum>92179268598</accountNum> <lname>Barlow</lname> <fname>Brenda</fname> <mi></mi> @@ -9939,28 +9939,28 @@ <address3></address3> <address4></address4> <city>Oak Bay</city> - <state_province>BC</state_province> - <postal_code>82725</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>82725</postalCode> <country>Canada</country> <phone1>735-555-1793</phone1> <phone2>539-555-5672</phone2> <birthdate>03.09.1943</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-05-13</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-05-13</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Brenda Barlow</fullname> <test></test> </Customer> <Customer> - <account_num>92180470228</account_num> + <accountNum>92180470228</accountNum> <lname>Adina</lname> <fname>Ronald</fname> <mi>H.</mi> @@ -9969,28 +9969,28 @@ <address3></address3> <address4></address4> <city>Woodland Hills</city> - <state_province>CA</state_province> - <postal_code>51001</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>51001</postalCode> <country>USA</country> <phone1>108-555-6800</phone1> <phone2>350-555-2365</phone2> <birthdate>10.08.1975</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-11-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-11-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Ronald Adina</fullname> <test></test> </Customer> <Customer> - <account_num>92186092138</account_num> + <accountNum>92186092138</accountNum> <lname>Bohling</lname> <fname>Michael</fname> <mi>J.</mi> @@ -9999,28 +9999,28 @@ <address3></address3> <address4></address4> <city>Bellflower</city> - <state_province>CA</state_province> - <postal_code>33682</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>33682</postalCode> <country>USA</country> <phone1>831-555-2749</phone1> <phone2>943-555-6170</phone2> <birthdate>24.04.1919</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-11-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-11-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Michael Bohling</fullname> <test></test> </Customer> <Customer> - <account_num>92215971946</account_num> + <accountNum>92215971946</accountNum> <lname>Wheeler</lname> <fname>Sam</fname> <mi>R.</mi> @@ -10029,28 +10029,28 @@ <address3></address3> <address4></address4> <city>West Covina</city> - <state_province>CA</state_province> - <postal_code>40827</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>40827</postalCode> <country>USA</country> <phone1>466-555-1042</phone1> <phone2>777-555-1491</phone2> <birthdate>03.08.1954</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-04-26</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-04-26</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Sam Wheeler</fullname> <test></test> </Customer> <Customer> - <account_num>92219464200</account_num> + <accountNum>92219464200</accountNum> <lname>Swearengin</lname> <fname>Abraham</fname> <mi></mi> @@ -10059,28 +10059,28 @@ <address3></address3> <address4></address4> <city>Everett</city> - <state_province>WA</state_province> - <postal_code>88669</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>88669</postalCode> <country>USA</country> <phone1>847-555-8563</phone1> <phone2>127-555-7870</phone2> <birthdate>20.09.1923</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-01-20</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-01-20</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Abraham Swearengin</fullname> <test></test> </Customer> <Customer> - <account_num>92227548360</account_num> + <accountNum>92227548360</accountNum> <lname>Givens</lname> <fname>David</fname> <mi>R.</mi> @@ -10089,28 +10089,28 @@ <address3></address3> <address4></address4> <city>Santa Monica</city> - <state_province>CA</state_province> - <postal_code>61976</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>61976</postalCode> <country>USA</country> <phone1>505-555-5484</phone1> <phone2>223-555-5477</phone2> <birthdate>16.07.1916</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-09-27</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-09-27</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>David Givens</fullname> <test></test> </Customer> <Customer> - <account_num>92243067600</account_num> + <accountNum>92243067600</accountNum> <lname>Beanston</lname> <fname>Glenna</fname> <mi></mi> @@ -10119,28 +10119,28 @@ <address3></address3> <address4></address4> <city>La Jolla</city> - <state_province>CA</state_province> - <postal_code>92873</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>92873</postalCode> <country>USA</country> <phone1>908-555-2634</phone1> <phone2>735-555-5141</phone2> <birthdate>11.05.1948</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-04-25</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-04-25</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Glenna Beanston</fullname> <test></test> </Customer> <Customer> - <account_num>92276691794</account_num> + <accountNum>92276691794</accountNum> <lname>Bruno</lname> <fname>Dirk</fname> <mi>W.</mi> @@ -10149,28 +10149,28 @@ <address3></address3> <address4></address4> <city>Sooke</city> - <state_province>BC</state_province> - <postal_code>32342</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>32342</postalCode> <country>Canada</country> <phone1>828-555-1842</phone1> <phone2>854-555-1377</phone2> <birthdate>10.04.1950</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-11-10</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-11-10</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Dirk Bruno</fullname> <test></test> </Customer> <Customer> - <account_num>92282093763</account_num> + <accountNum>92282093763</accountNum> <lname>Berger</lname> <fname>Alexander</fname> <mi></mi> @@ -10179,28 +10179,28 @@ <address3></address3> <address4></address4> <city>Redmond</city> - <state_province>WA</state_province> - <postal_code>85214</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>85214</postalCode> <country>USA</country> <phone1>354-555-6620</phone1> <phone2>489-555-8670</phone2> <birthdate>02.10.1929</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-10-11</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-10-11</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Alexander Berger</fullname> <test></test> </Customer> <Customer> - <account_num>92287597656</account_num> + <accountNum>92287597656</accountNum> <lname>Sultan</lname> <fname>Marcia</fname> <mi>K.</mi> @@ -10209,28 +10209,28 @@ <address3></address3> <address4></address4> <city>Portland</city> - <state_province>OR</state_province> - <postal_code>17137</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>17137</postalCode> <country>USA</country> <phone1>297-555-4456</phone1> <phone2>870-555-7191</phone2> <birthdate>22.05.1960</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-09-17</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-09-17</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Marcia Sultan</fullname> <test></test> </Customer> <Customer> - <account_num>92287656664</account_num> + <accountNum>92287656664</accountNum> <lname>Svoboda</lname> <fname>Martin</fname> <mi>C.</mi> @@ -10239,28 +10239,28 @@ <address3></address3> <address4></address4> <city>Santa Cruz</city> - <state_province>CA</state_province> - <postal_code>36171</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>36171</postalCode> <country>USA</country> <phone1>985-555-2520</phone1> <phone2>527-555-4113</phone2> <birthdate>13.11.1926</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-09-18</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-09-18</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Martin Svoboda</fullname> <test></test> </Customer> <Customer> - <account_num>92296341657</account_num> + <accountNum>92296341657</accountNum> <lname>Tullao</lname> <fname>Mary</fname> <mi></mi> @@ -10269,28 +10269,28 @@ <address3></address3> <address4></address4> <city>Vancouver</city> - <state_province>BC</state_province> - <postal_code>69633</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>69633</postalCode> <country>Canada</country> <phone1>950-555-7984</phone1> <phone2>931-555-1263</phone2> <birthdate>18.08.1977</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-05-25</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-05-25</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Mary Tullao</fullname> <test></test> </Customer> <Customer> - <account_num>92305718660</account_num> + <accountNum>92305718660</accountNum> <lname>Hernandez</lname> <fname>Irene</fname> <mi></mi> @@ -10299,28 +10299,28 @@ <address3></address3> <address4></address4> <city>Langley</city> - <state_province>BC</state_province> - <postal_code>91158</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>91158</postalCode> <country>Canada</country> <phone1>101-555-8334</phone1> <phone2>851-555-9470</phone2> <birthdate>28.06.1956</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-02-23</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-02-23</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Irene Hernandez</fullname> <test></test> </Customer> <Customer> - <account_num>92319483757</account_num> + <accountNum>92319483757</accountNum> <lname>Wilkie</lname> <fname>Jay Saxema</fname> <mi></mi> @@ -10329,28 +10329,28 @@ <address3></address3> <address4></address4> <city>Langford</city> - <state_province>BC</state_province> - <postal_code>28112</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>28112</postalCode> <country>Canada</country> <phone1>989-555-3427</phone1> <phone2>377-555-5248</phone2> <birthdate>06.11.1977</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-03-02</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-03-02</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Jay Saxema Wilkie</fullname> <test></test> </Customer> <Customer> - <account_num>92330749034</account_num> + <accountNum>92330749034</accountNum> <lname>OSBPt</lname> <fname>Sean</fname> <mi>A.</mi> @@ -10359,28 +10359,28 @@ <address3></address3> <address4></address4> <city>West Covina</city> - <state_province>CA</state_province> - <postal_code>78469</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>78469</postalCode> <country>USA</country> <phone1>274-555-4666</phone1> <phone2>432-555-5344</phone2> <birthdate>21.05.1948</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-08-05</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-08-05</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Sean OSBPt</fullname> <test></test> </Customer> <Customer> - <account_num>92332229614</account_num> + <accountNum>92332229614</accountNum> <lname>Fulton</lname> <fname>Paul</fname> <mi>A.</mi> @@ -10389,28 +10389,28 @@ <address3></address3> <address4></address4> <city>Tlaxiaco</city> - <state_province>Oaxaca</state_province> - <postal_code>80584</postal_code> + <stateProvince>Oaxaca</stateProvince> + <postalCode>80584</postalCode> <country>Mexico</country> <phone1>524-555-2044</phone1> <phone2>220-555-3408</phone2> <birthdate>03.11.1978</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-10-06</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-10-06</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Paul Fulton</fullname> <test></test> </Customer> <Customer> - <account_num>92345173954</account_num> + <accountNum>92345173954</accountNum> <lname>Dillon</lname> <fname>Rudolph</fname> <mi>J.</mi> @@ -10419,28 +10419,28 @@ <address3></address3> <address4></address4> <city>Concord</city> - <state_province>CA</state_province> - <postal_code>97102</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>97102</postalCode> <country>USA</country> <phone1>620-555-8651</phone1> <phone2>424-555-3530</phone2> <birthdate>15.02.1968</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-08-24</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1994-08-24</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Rudolph Dillon</fullname> <test></test> </Customer> <Customer> - <account_num>92369560599</account_num> + <accountNum>92369560599</accountNum> <lname>Miller</lname> <fname>Matthew</fname> <mi>H.</mi> @@ -10449,28 +10449,28 @@ <address3></address3> <address4></address4> <city>Walla Walla</city> - <state_province>WA</state_province> - <postal_code>65379</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>65379</postalCode> <country>USA</country> <phone1>232-555-8316</phone1> <phone2>236-555-9223</phone2> <birthdate>20.09.1962</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-11-02</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-11-02</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Matthew Miller</fullname> <test></test> </Customer> <Customer> - <account_num>92376920580</account_num> + <accountNum>92376920580</accountNum> <lname>Stern</lname> <fname>Vassar</fname> <mi>E.</mi> @@ -10479,28 +10479,28 @@ <address3></address3> <address4></address4> <city>Oakland</city> - <state_province>CA</state_province> - <postal_code>21767</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>21767</postalCode> <country>USA</country> <phone1>351-555-4551</phone1> <phone2>463-555-7973</phone2> <birthdate>16.05.1950</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-07-22</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-07-22</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Vassar Stern</fullname> <test></test> </Customer> <Customer> - <account_num>89395151734</account_num> + <accountNum>89395151734</accountNum> <lname>Jones</lname> <fname>Julie</fname> <mi>M.</mi> @@ -10509,28 +10509,28 @@ <address3></address3> <address4></address4> <city>Concord</city> - <state_province>CA</state_province> - <postal_code>44269</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>44269</postalCode> <country>USA</country> <phone1>855-555-7353</phone1> <phone2>483-555-3832</phone2> <birthdate>16.05.1960</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-06-08</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1992-06-08</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Julie Jones</fullname> <test></test> </Customer> <Customer> - <account_num>89434499740</account_num> + <accountNum>89434499740</accountNum> <lname>Bury</lname> <fname>Janet</fname> <mi>I.</mi> @@ -10539,28 +10539,28 @@ <address3></address3> <address4></address4> <city>Corvallis</city> - <state_province>OR</state_province> - <postal_code>94626</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>94626</postalCode> <country>USA</country> <phone1>928-555-6332</phone1> <phone2>425-555-1668</phone2> <birthdate>13.09.1975</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-08-08</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-08-08</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Janet Bury</fullname> <test></test> </Customer> <Customer> - <account_num>89487226605</account_num> + <accountNum>89487226605</accountNum> <lname>Bevan</lname> <fname>Onita</fname> <mi>M.</mi> @@ -10569,28 +10569,28 @@ <address3></address3> <address4></address4> <city>Woodburn</city> - <state_province>OR</state_province> - <postal_code>96741</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>96741</postalCode> <country>USA</country> <phone1>278-555-3710</phone1> <phone2>874-555-5074</phone2> <birthdate>19.12.1967</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-09-18</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-09-18</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Onita Bevan</fullname> <test></test> </Customer> <Customer> - <account_num>89488111734</account_num> + <accountNum>89488111734</accountNum> <lname>Monarco</lname> <fname>Mary</fname> <mi></mi> @@ -10599,28 +10599,28 @@ <address3></address3> <address4></address4> <city>Lakewood</city> - <state_province>CA</state_province> - <postal_code>86967</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>86967</postalCode> <country>USA</country> <phone1>374-555-1317</phone1> <phone2>179-555-5196</phone2> <birthdate>01.11.1918</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1991-02-09</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-02-09</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Mary Monarco</fullname> <test></test> </Customer> <Customer> - <account_num>89504757523</account_num> + <accountNum>89504757523</accountNum> <lname>Zingarelli</lname> <fname>Vicky</fname> <mi>E.</mi> @@ -10629,28 +10629,28 @@ <address3></address3> <address4></address4> <city>Seattle</city> - <state_province>WA</state_province> - <postal_code>55244</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>55244</postalCode> <country>USA</country> <phone1>886-555-9982</phone1> <phone2>890-555-1889</phone2> <birthdate>03.03.1945</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-04-23</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-04-23</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Vicky Zingarelli</fullname> <test></test> </Customer> <Customer> - <account_num>89505116939</account_num> + <accountNum>89505116939</accountNum> <lname>Valentine</lname> <fname>Helen</fname> <mi></mi> @@ -10659,28 +10659,28 @@ <address3></address3> <address4></address4> <city>Bremerton</city> - <state_province>WA</state_province> - <postal_code>37925</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>37925</postalCode> <country>USA</country> <phone1>105-555-6217</phone1> <phone2>217-555-9639</phone2> <birthdate>23.06.1965</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-11-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-11-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Helen Valentine</fullname> <test></test> </Customer> <Customer> - <account_num>89507606029</account_num> + <accountNum>89507606029</accountNum> <lname>Scheulen</lname> <fname>Carol</fname> <mi>S.</mi> @@ -10689,28 +10689,28 @@ <address3></address3> <address4></address4> <city>Everett</city> - <state_province>WA</state_province> - <postal_code>71362</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>71362</postalCode> <country>USA</country> <phone1>640-555-4510</phone1> <phone2>951-555-4960</phone2> <birthdate>24.03.1924</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1990-07-01</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-07-01</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Carol Scheulen</fullname> <test></test> </Customer> <Customer> - <account_num>89526268839</account_num> + <accountNum>89526268839</accountNum> <lname>Koon</lname> <fname>Virgie</fname> <mi></mi> @@ -10719,28 +10719,28 @@ <address3></address3> <address4></address4> <city>Langford</city> - <state_province>BC</state_province> - <postal_code>92912</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>92912</postalCode> <country>Canada</country> <phone1>121-555-3032</phone1> <phone2>540-555-5996</phone2> <birthdate>19.11.1969</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1991-12-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-12-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Virgie Koon</fullname> <test></test> </Customer> <Customer> - <account_num>89532577395</account_num> + <accountNum>89532577395</accountNum> <lname>Amole</lname> <fname>Sarah</fname> <mi>E.</mi> @@ -10749,28 +10749,28 @@ <address3></address3> <address4></address4> <city>Oak Bay</city> - <state_province>BC</state_province> - <postal_code>92511</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>92511</postalCode> <country>Canada</country> <phone1>678-555-8953</phone1> <phone2>636-555-3603</phone2> <birthdate>20.05.1968</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-08-26</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-08-26</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Sarah Amole</fullname> <test></test> </Customer> <Customer> - <account_num>89536622166</account_num> + <accountNum>89536622166</accountNum> <lname>Hill</lname> <fname>Cecil</fname> <mi>C.</mi> @@ -10779,28 +10779,28 @@ <address3></address3> <address4></address4> <city>Edmonds</city> - <state_province>WA</state_province> - <postal_code>80222</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>80222</postalCode> <country>USA</country> <phone1>182-555-6103</phone1> <phone2>909-555-8610</phone2> <birthdate>10.07.1923</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-06-20</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-06-20</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Cecil Hill</fullname> <test></test> </Customer> <Customer> - <account_num>89555376172</account_num> + <accountNum>89555376172</accountNum> <lname>Tate</lname> <fname>Ruth</fname> <mi>A.</mi> @@ -10809,28 +10809,28 @@ <address3></address3> <address4></address4> <city>Imperial Beach</city> - <state_province>CA</state_province> - <postal_code>19692</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>19692</postalCode> <country>USA</country> <phone1>102-555-5310</phone1> <phone2>367-555-8503</phone2> <birthdate>15.02.1931</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-11-28</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-11-28</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Ruth Tate</fullname> <test></test> </Customer> <Customer> - <account_num>89556261301</account_num> + <accountNum>89556261301</accountNum> <lname>Schnurr</lname> <fname>Larry</fname> <mi>E.</mi> @@ -10839,28 +10839,28 @@ <address3></address3> <address4></address4> <city>Woodburn</city> - <state_province>OR</state_province> - <postal_code>98856</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>98856</postalCode> <country>USA</country> <phone1>528-555-1089</phone1> <phone2>663-555-3139</phone2> <birthdate>01.12.1975</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-03-23</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-03-23</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Larry Schnurr</fullname> <test></test> </Customer> <Customer> - <account_num>89562725400</account_num> + <accountNum>89562725400</accountNum> <lname>Sutton</lname> <fname>Jerry</fname> <mi></mi> @@ -10869,28 +10869,28 @@ <address3></address3> <address4></address4> <city>Albany</city> - <state_province>OR</state_province> - <postal_code>44872</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>44872</postalCode> <country>USA</country> <phone1>836-555-3980</phone1> <phone2>510-555-6715</phone2> <birthdate>13.11.1959</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-09-08</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-09-08</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Jerry Sutton</fullname> <test></test> </Customer> <Customer> - <account_num>89589413404</account_num> + <accountNum>89589413404</accountNum> <lname>Mlincek</lname> <fname>Kevin</fname> <mi>R.</mi> @@ -10899,28 +10899,28 @@ <address3></address3> <address4></address4> <city>Metchosin</city> - <state_province>BC</state_province> - <postal_code>23521</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>23521</postalCode> <country>Canada</country> <phone1>625-555-2044</phone1> <phone2>167-555-3637</phone2> <birthdate>26.11.1919</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-02-04</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-02-04</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Kevin Mlincek</fullname> <test></test> </Customer> <Customer> - <account_num>89596188700</account_num> + <accountNum>89596188700</accountNum> <lname>Tucker</lname> <fname>Edward</fname> <mi></mi> @@ -10929,28 +10929,28 @@ <address3></address3> <address4></address4> <city>Corvallis</city> - <state_province>OR</state_province> - <postal_code>93312</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>93312</postalCode> <country>USA</country> <phone1>829-555-2166</phone1> <phone2>810-555-4444</phone2> <birthdate>25.12.1964</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-05-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-05-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Edward Tucker</fullname> <test></test> </Customer> <Customer> - <account_num>89630166888</account_num> + <accountNum>89630166888</accountNum> <lname>Forham</lname> <fname>Kenton</fname> <mi>M.</mi> @@ -10959,28 +10959,28 @@ <address3></address3> <address4></address4> <city>Arcadia</city> - <state_province>CA</state_province> - <postal_code>78508</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>78508</postalCode> <country>USA</country> <phone1>641-555-7858</phone1> <phone2>490-555-8994</phone2> <birthdate>13.05.1949</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-10-20</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-10-20</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Kenton Forham</fullname> <test></test> </Customer> <Customer> - <account_num>89668130874</account_num> + <accountNum>89668130874</accountNum> <lname>Malik</lname> <fname>Brittany</fname> <mi>M.</mi> @@ -10989,28 +10989,28 @@ <address3></address3> <address4></address4> <city>Spokane</city> - <state_province>WA</state_province> - <postal_code>15462</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>15462</postalCode> <country>USA</country> <phone1>868-555-6608</phone1> <phone2>256-555-8430</phone2> <birthdate>24.06.1977</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-03-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-03-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Brittany Malik</fullname> <test></test> </Customer> <Customer> - <account_num>89673307538</account_num> + <accountNum>89673307538</accountNum> <lname>Eldridge</lname> <fname>Jeannette</fname> <mi></mi> @@ -11019,28 +11019,28 @@ <address3></address3> <address4></address4> <city>Los Angeles</city> - <state_province>CA</state_province> - <postal_code>11910</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>11910</postalCode> <country>USA</country> <phone1>702-555-1930</phone1> <phone2>198-555-6265</phone2> <birthdate>07.04.1942</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-12-03</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-12-03</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Jeannette Eldridge</fullname> <test></test> </Customer> <Customer> - <account_num>89674021000</account_num> + <accountNum>89674021000</accountNum> <lname>Anderson</lname> <fname>Terry</fname> <mi></mi> @@ -11049,28 +11049,28 @@ <address3></address3> <address4></address4> <city>Mexico City</city> - <state_province>Mexico</state_province> - <postal_code>14025</postal_code> + <stateProvince>Mexico</stateProvince> + <postalCode>14025</postalCode> <country>Mexico</country> <phone1>952-555-8308</phone1> <phone2>887-555-4330</phone2> <birthdate>07.05.1970</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1994-02-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-02-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Terry Anderson</fullname> <test></test> </Customer> <Customer> - <account_num>89703101515</account_num> + <accountNum>89703101515</accountNum> <lname>Sosa</lname> <fname>Loni</fname> <mi></mi> @@ -11079,28 +11079,28 @@ <address3></address3> <address4></address4> <city>N. Vancouver</city> - <state_province>BC</state_province> - <postal_code>30543</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>30543</postalCode> <country>Canada</country> <phone1>148-555-5915</phone1> <phone2>852-555-9794</phone2> <birthdate>24.04.1965</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-01-10</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-01-10</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Loni Sosa</fullname> <test></test> </Customer> <Customer> - <account_num>89705392100</account_num> + <accountNum>89705392100</accountNum> <lname>Mann</lname> <fname>Marie</fname> <mi>T.</mi> @@ -11109,28 +11109,28 @@ <address3></address3> <address4></address4> <city>Daly City</city> - <state_province>CA</state_province> - <postal_code>97819</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>97819</postalCode> <country>USA</country> <phone1>660-555-5580</phone1> <phone2>663-555-6487</phone2> <birthdate>08.07.1966</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-11-20</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1994-11-20</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Marie Mann</fullname> <test></test> </Customer> <Customer> - <account_num>89723159074</account_num> + <accountNum>89723159074</accountNum> <lname>Prater</lname> <fname>Michael</fname> <mi>A.</mi> @@ -11139,28 +11139,28 @@ <address3></address3> <address4></address4> <city>National City</city> - <state_province>CA</state_province> - <postal_code>54207</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>54207</postalCode> <country>USA</country> <phone1>779-555-1815</phone1> <phone2>890-555-5237</phone2> <birthdate>25.06.1948</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-04-20</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-04-20</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Michael Prater</fullname> <test></test> </Customer> <Customer> - <account_num>89727890491</account_num> + <accountNum>89727890491</accountNum> <lname>Ansaldo</lname> <fname>Karen</fname> <mi>A.</mi> @@ -11169,28 +11169,28 @@ <address3></address3> <address4></address4> <city>Imperial Beach</city> - <state_province>CA</state_province> - <postal_code>87645</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>87645</postalCode> <country>USA</country> <phone1>413-555-9108</phone1> <phone2>964-555-4215</phone2> <birthdate>22.11.1939</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-11-04</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-11-04</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Karen Ansaldo</fullname> <test></test> </Customer> <Customer> - <account_num>89730272293</account_num> + <accountNum>89730272293</accountNum> <lname>Caijem</lname> <fname>Lance</fname> <mi>L.</mi> @@ -11199,28 +11199,28 @@ <address3></address3> <address4></address4> <city>Richmond</city> - <state_province>CA</state_province> - <postal_code>36487</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>36487</postalCode> <country>USA</country> <phone1>794-555-7630</phone1> <phone2>314-555-1594</phone2> <birthdate>15.04.1946</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-12-27</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-12-27</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Lance Caijem</fullname> <test></test> </Customer> <Customer> - <account_num>89739643931</account_num> + <accountNum>89739643931</accountNum> <lname>Yates</lname> <fname>Pamela</fname> <mi>J.</mi> @@ -11229,28 +11229,28 @@ <address3></address3> <address4></address4> <city>Los Angeles</city> - <state_province>CA</state_province> - <postal_code>97953</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>97953</postalCode> <country>USA</country> <phone1>564-555-6811</phone1> <phone2>522-555-1461</phone2> <birthdate>13.06.1977</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-07-08</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-07-08</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Pamela Yates</fullname> <test></test> </Customer> <Customer> - <account_num>89755527973</account_num> + <accountNum>89755527973</accountNum> <lname>Turner</lname> <fname>Iwona</fname> <mi></mi> @@ -11259,28 +11259,28 @@ <address3></address3> <address4></address4> <city>Santa Fe</city> - <state_province>DF</state_province> - <postal_code>23798</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>23798</postalCode> <country>Mexico</country> <phone1>968-555-3961</phone1> <phone2>795-555-6468</phone2> <birthdate>11.07.1976</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-05-09</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-05-09</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Iwona Turner</fullname> <test></test> </Customer> <Customer> - <account_num>89757743477</account_num> + <accountNum>89757743477</accountNum> <lname>Fulcher</lname> <fname>Mary</fname> <mi>M.</mi> @@ -11289,28 +11289,28 @@ <address3></address3> <address4></address4> <city>Santa Cruz</city> - <state_province>CA</state_province> - <postal_code>62266</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>62266</postalCode> <country>USA</country> <phone1>887-555-3168</phone1> <phone2>253-555-6361</phone2> <birthdate>13.09.1946</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-07-15</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-07-15</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Mary Fulcher</fullname> <test></test> </Customer> <Customer> - <account_num>89760017991</account_num> + <accountNum>89760017991</accountNum> <lname>Berg</lname> <fname>Raymond</fname> <mi>A.</mi> @@ -11319,28 +11319,28 @@ <address3></address3> <address4></address4> <city>Newton</city> - <state_province>BC</state_province> - <postal_code>16139</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>16139</postalCode> <country>Canada</country> <phone1>414-555-7947</phone1> <phone2>548-555-9996</phone2> <birthdate>24.04.1952</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-06-08</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1992-06-08</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Raymond Berg</fullname> <test></test> </Customer> <Customer> - <account_num>89764738678</account_num> + <accountNum>89764738678</accountNum> <lname>Lopez</lname> <fname>Ramona</fname> <mi>J.</mi> @@ -11349,28 +11349,28 @@ <address3></address3> <address4></address4> <city>N. Vancouver</city> - <state_province>BC</state_province> - <postal_code>47062</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>47062</postalCode> <country>Canada</country> <phone1>356-555-5782</phone1> <phone2>929-555-8518</phone2> <birthdate>06.11.1968</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-09-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-09-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Ramona Lopez</fullname> <test></test> </Customer> <Customer> - <account_num>89781025052</account_num> + <accountNum>89781025052</accountNum> <lname>Valdivia</lname> <fname>Helen</fname> <mi>E.</mi> @@ -11379,28 +11379,28 @@ <address3></address3> <address4></address4> <city>San Diego</city> - <state_province>CA</state_province> - <postal_code>66096</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>66096</postalCode> <country>USA</country> <phone1>145-555-3847</phone1> <phone2>826-555-9097</phone2> <birthdate>16.08.1960</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-12-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-12-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Helen Valdivia</fullname> <test></test> </Customer> <Customer> - <account_num>89788991212</account_num> + <accountNum>89788991212</accountNum> <lname>Cardoza</lname> <fname>Beverly</fname> <mi></mi> @@ -11409,28 +11409,28 @@ <address3></address3> <address4></address4> <city>Sedro Woolley</city> - <state_province>WA</state_province> - <postal_code>36888</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>36888</postalCode> <country>USA</country> <phone1>349-555-3968</phone1> <phone2>330-555-6247</phone2> <birthdate>23.08.1979</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-12-03</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-12-03</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Beverly Cardoza</fullname> <test></test> </Customer> <Customer> - <account_num>89812578558</account_num> + <accountNum>89812578558</accountNum> <lname>Hall</lname> <fname>Mary</fname> <mi>L.</mi> @@ -11439,28 +11439,28 @@ <address3></address3> <address4></address4> <city>La Jolla</city> - <state_province>CA</state_province> - <postal_code>22084</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>22084</postalCode> <country>USA</country> <phone1>160-555-9661</phone1> <phone2>910-555-1797</phone2> <birthdate>20.12.1938</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1992-06-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-06-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Mary Hall</fullname> <test></test> </Customer> <Customer> - <account_num>89814718961</account_num> + <accountNum>89814718961</accountNum> <lname>Minarick</lname> <fname>Rachel</fname> <mi>C.</mi> @@ -11469,28 +11469,28 @@ <address3></address3> <address4></address4> <city>Woodburn</city> - <state_province>OR</state_province> - <postal_code>58037</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>58037</postalCode> <country>USA</country> <phone1>387-555-8411</phone1> <phone2>676-555-1232</phone2> <birthdate>17.06.1916</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1990-02-12</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1990-02-12</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Rachel Minarick</fullname> <test></test> </Customer> <Customer> - <account_num>89819675700</account_num> + <accountNum>89819675700</accountNum> <lname>Los Olmos</lname> <fname>Dorine</fname> <mi>C.</mi> @@ -11499,28 +11499,28 @@ <address3></address3> <address4></address4> <city>Imperial Beach</city> - <state_province>CA</state_province> - <postal_code>93945</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>93945</postalCode> <country>USA</country> <phone1>222-555-3732</phone1> <phone2>618-555-8068</phone2> <birthdate>08.04.1925</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-08-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-08-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Dorine Los Olmos</fullname> <test></test> </Customer> <Customer> - <account_num>89869988560</account_num> + <accountNum>89869988560</accountNum> <lname>Garner</lname> <fname>Dave</fname> <mi></mi> @@ -11529,28 +11529,28 @@ <address3></address3> <address4></address4> <city>Burnaby</city> - <state_province>BC</state_province> - <postal_code>84216</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>84216</postalCode> <country>Canada</country> <phone1>472-555-1111</phone1> <phone2>407-555-6132</phone2> <birthdate>09.10.1911</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1993-02-10</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-02-10</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Dave Garner</fullname> <test></test> </Customer> <Customer> - <account_num>89879821538</account_num> + <accountNum>89879821538</accountNum> <lname>Leong</lname> <fname>Lois</fname> <mi>M.</mi> @@ -11559,28 +11559,28 @@ <address3></address3> <address4></address4> <city>Santa Anita</city> - <state_province>DF</state_province> - <postal_code>17364</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>17364</postalCode> <country>Mexico</country> <phone1>807-555-2375</phone1> <phone2>372-555-2597</phone2> <birthdate>24.05.1938</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-02-07</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-02-07</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Lois Leong</fullname> <test></test> </Customer> <Customer> - <account_num>89889901280</account_num> + <accountNum>89889901280</accountNum> <lname>Tate</lname> <fname>Larasa</fname> <mi>A.</mi> @@ -11589,28 +11589,28 @@ <address3></address3> <address4></address4> <city>Novato</city> - <state_province>CA</state_province> - <postal_code>42719</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>42719</postalCode> <country>USA</country> <phone1>770-555-7957</phone1> <phone2>773-555-8864</phone2> <birthdate>04.05.1971</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-11-26</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-11-26</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Larasa Tate</fullname> <test></test> </Customer> <Customer> - <account_num>89905924797</account_num> + <accountNum>89905924797</accountNum> <lname>Watson</lname> <fname>David</fname> <mi>W.</mi> @@ -11619,28 +11619,28 @@ <address3></address3> <address4></address4> <city>Woodland Hills</city> - <state_province>CA</state_province> - <postal_code>25400</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>25400</postalCode> <country>USA</country> <phone1>889-555-4193</phone1> <phone2>100-555-7614</phone2> <birthdate>19.12.1915</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-11-22</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-11-22</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>David Watson</fullname> <test></test> </Customer> <Customer> - <account_num>89910447001</account_num> + <accountNum>89910447001</accountNum> <lname>Frank</lname> <fname>James</fname> <mi>K.</mi> @@ -11649,28 +11649,28 @@ <address3></address3> <address4></address4> <city>Ladner</city> - <state_province>BC</state_province> - <postal_code>58838</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>58838</postalCode> <country>Canada</country> <phone1>523-555-2486</phone1> <phone2>174-555-6593</phone2> <birthdate>24.05.1950</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-03-04</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-03-04</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>James Frank</fullname> <test></test> </Customer> <Customer> - <account_num>89918450713</account_num> + <accountNum>89918450713</accountNum> <lname>Wood</lname> <fname>Alfredo</fname> <mi>S.</mi> @@ -11679,28 +11679,28 @@ <address3></address3> <address4></address4> <city>National City</city> - <state_province>CA</state_province> - <postal_code>80387</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>80387</postalCode> <country>USA</country> <phone1>904-555-1007</phone1> <phone2>424-555-3972</phone2> <birthdate>14.06.1919</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-12-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-12-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Alfredo Wood</fullname> <test></test> </Customer> <Customer> - <account_num>89920961300</account_num> + <accountNum>89920961300</accountNum> <lname>Baird</lname> <fname>Dorothy</fname> <mi></mi> @@ -11709,28 +11709,28 @@ <address3></address3> <address4></address4> <city>Olympia</city> - <state_province>WA</state_province> - <postal_code>79986</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>79986</postalCode> <country>USA</country> <phone1>562-555-6929</phone1> <phone2>520-555-1579</phone2> <birthdate>21.07.1924</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-09-07</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-09-07</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Dorothy Baird</fullname> <test></test> </Customer> <Customer> - <account_num>89927994012</account_num> + <accountNum>89927994012</accountNum> <lname>Jans</lname> <fname>George</fname> <mi>W.</mi> @@ -11739,28 +11739,28 @@ <address3></address3> <address4></address4> <city>Woodburn</city> - <state_province>OR</state_province> - <postal_code>67698</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>67698</postalCode> <country>USA</country> <phone1>966-555-4079</phone1> <phone2>793-555-6586</phone2> <birthdate>18.04.1925</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1994-03-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-03-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>George Jans</fullname> <test></test> </Customer> <Customer> - <account_num>89933717846</account_num> + <accountNum>89933717846</accountNum> <lname>Garrison</lname> <fname>Bernadine</fname> <mi>C.</mi> @@ -11769,28 +11769,28 @@ <address3></address3> <address4></address4> <city>Santa Anita</city> - <state_province>DF</state_province> - <postal_code>33459</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>33459</postalCode> <country>Mexico</country> <phone1>885-555-3286</phone1> <phone2>251-555-6479</phone2> <birthdate>02.06.1939</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-05-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-05-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Bernadine Garrison</fullname> <test></test> </Customer> <Customer> - <account_num>89951946139</account_num> + <accountNum>89951946139</accountNum> <lname>Zeller</lname> <fname>Sam</fname> <mi>S.</mi> @@ -11799,28 +11799,28 @@ <address3></address3> <address4></address4> <city>Bellflower</city> - <state_province>CA</state_province> - <postal_code>86331</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>86331</postalCode> <country>USA</country> <phone1>651-555-2722</phone1> <phone2>785-555-4772</phone2> <birthdate>10.09.1977</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-12-10</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-12-10</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Sam Zeller</fullname> <test></test> </Customer> <Customer> - <account_num>89972035884</account_num> + <accountNum>89972035884</accountNum> <lname>Ace</lname> <fname>Dorothy</fname> <mi>S.</mi> @@ -11829,28 +11829,28 @@ <address3></address3> <address4></address4> <city>Torrance</city> - <state_province>CA</state_province> - <postal_code>90961</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>90961</postalCode> <country>USA</country> <phone1>593-555-9557</phone1> <phone2>927-555-8636</phone2> <birthdate>16.01.1955</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-02-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-02-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Dorothy Ace</fullname> <test></test> </Customer> <Customer> - <account_num>89974734187</account_num> + <accountNum>89974734187</accountNum> <lname>Trujillo</lname> <fname>Adria</fname> <mi></mi> @@ -11859,28 +11859,28 @@ <address3></address3> <address4></address4> <city>Lynnwood</city> - <state_province>WA</state_province> - <postal_code>10996</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>10996</postalCode> <country>USA</country> <phone1>143-555-3964</phone1> <phone2>824-555-9215</phone2> <birthdate>08.08.1922</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1990-10-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-10-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Adria Trujillo</fullname> <test></test> </Customer> <Customer> - <account_num>89976944327</account_num> + <accountNum>89976944327</accountNum> <lname>McCown</lname> <fname>Bunny</fname> <mi></mi> @@ -11889,28 +11889,28 @@ <address3></address3> <address4></address4> <city>Lemon Grove</city> - <state_province>CA</state_province> - <postal_code>80803</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>80803</postalCode> <country>USA</country> <phone1>347-555-4086</phone1> <phone2>328-555-6364</phone2> <birthdate>12.05.1972</birthdate> - <marital_status>S</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-09-08</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-09-08</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Bunny McCown</fullname> <test></test> </Customer> <Customer> - <account_num>89995655417</account_num> + <accountNum>89995655417</accountNum> <lname>Miller</lname> <fname>Nancy</fname> <mi>A.</mi> @@ -11919,28 +11919,28 @@ <address3></address3> <address4></address4> <city>Sooke</city> - <state_province>BC</state_province> - <postal_code>92275</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>92275</postalCode> <country>Canada</country> <phone1>158-555-9779</phone1> <phone2>908-555-1914</phone2> <birthdate>06.05.1963</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-04-22</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-04-22</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Nancy Miller</fullname> <test></test> </Customer> <Customer> - <account_num>90026039481</account_num> + <accountNum>90026039481</accountNum> <lname>Hollar</lname> <fname>Wanda</fname> <mi></mi> @@ -11949,28 +11949,28 @@ <address3></address3> <address4></address4> <city>La Cruz</city> - <state_province>Sinaloa</state_province> - <postal_code>29229</postal_code> + <stateProvince>Sinaloa</stateProvince> + <postalCode>29229</postalCode> <country>Mexico</country> <phone1>385-555-8529</phone1> <phone2>788-555-3531</phone2> <birthdate>27.08.1973</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-08-12</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-08-12</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Wanda Hollar</fullname> <test></test> </Customer> <Customer> - <account_num>90040008425</account_num> + <accountNum>90040008425</accountNum> <lname>Wallin</lname> <fname>Barbara</fname> <mi>J.</mi> @@ -11979,28 +11979,28 @@ <address3></address3> <address4></address4> <city>Beaverton</city> - <state_province>OR</state_province> - <postal_code>79586</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>79586</postalCode> <country>USA</country> <phone1>334-555-6031</phone1> <phone2>731-555-1367</phone2> <birthdate>26.05.1956</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-04-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-04-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Barbara Wallin</fullname> <test></test> </Customer> <Customer> - <account_num>90055570602</account_num> + <accountNum>90055570602</accountNum> <lname>Bruha</lname> <fname>Michael</fname> <mi>C.</mi> @@ -12009,28 +12009,28 @@ <address3></address3> <address4></address4> <city>W. Linn</city> - <state_province>OR</state_province> - <postal_code>27502</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>27502</postalCode> <country>USA</country> <phone1>823-555-7067</phone1> <phone2>519-555-8431</phone2> <birthdate>25.08.1974</birthdate> - <marital_status>S</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1992-09-24</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-24</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Michael Bruha</fullname> <test></test> </Customer> <Customer> - <account_num>90065194368</account_num> + <accountNum>90065194368</accountNum> <lname>Suggs</lname> <fname>Michael</fname> <mi>J.</mi> @@ -12039,28 +12039,28 @@ <address3></address3> <address4></address4> <city>Burbank</city> - <state_province>CA</state_province> - <postal_code>17728</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>17728</postalCode> <country>USA</country> <phone1>919-555-4674</phone1> <phone2>484-555-4895</phone2> <birthdate>10.10.1963</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-05-18</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-05-18</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Michael Suggs</fullname> <test></test> </Customer> <Customer> - <account_num>90083347600</account_num> + <accountNum>90083347600</accountNum> <lname>Turner</lname> <fname>Kenneth</fname> <mi>R.</mi> @@ -12069,28 +12069,28 @@ <address3></address3> <address4></address4> <city>El Cajon</city> - <state_province>CA</state_province> - <postal_code>85004</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>85004</postalCode> <country>USA</country> <phone1>292-555-9681</phone1> <phone2>296-555-1588</phone2> <birthdate>14.06.1958</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-10-07</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-10-07</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Kenneth Turner</fullname> <test></test> </Customer> <Customer> - <account_num>90100100636</account_num> + <accountNum>90100100636</accountNum> <lname>Griffin</lname> <fname>Lois</fname> <mi></mi> @@ -12099,28 +12099,28 @@ <address3></address3> <address4></address4> <city>Renton</city> - <state_province>WA</state_province> - <postal_code>67685</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>67685</postalCode> <country>USA</country> <phone1>650-555-9574</phone1> <phone2>523-555-9338</phone2> <birthdate>10.02.1946</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1990-07-28</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-07-28</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Lois Griffin</fullname> <test></test> </Customer> <Customer> - <account_num>90102021100</account_num> + <accountNum>90102021100</accountNum> <lname>Guardamondo</lname> <fname>Robert</fname> <mi>C.</mi> @@ -12129,28 +12129,28 @@ <address3></address3> <address4></address4> <city>Bellingham</city> - <state_province>WA</state_province> - <postal_code>74830</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>74830</postalCode> <country>USA</country> <phone1>946-555-4209</phone1> <phone2>596-555-8317</phone2> <birthdate>13.02.1943</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-07-07</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-07-07</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Robert Guardamondo</fullname> <test></test> </Customer> <Customer> - <account_num>90121451020</account_num> + <accountNum>90121451020</accountNum> <lname>West</lname> <fname>Bryan</fname> <mi>R.</mi> @@ -12159,28 +12159,28 @@ <address3></address3> <address4></address4> <city>Oak Bay</city> - <state_province>BC</state_province> - <postal_code>23672</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>23672</postalCode> <country>Canada</country> <phone1>427-555-2731</phone1> <phone2>846-555-5695</phone2> <birthdate>27.10.1944</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1994-04-08</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-04-08</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Clerical</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Bryan West</fullname> <test></test> </Customer> <Customer> - <account_num>90127062201</account_num> + <accountNum>90127062201</accountNum> <lname>Welsh</lname> <fname>Vicki</fname> <mi>R.</mi> @@ -12189,28 +12189,28 @@ <address3></address3> <address4></address4> <city>Ladner</city> - <state_province>BC</state_province> - <postal_code>23272</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>23272</postalCode> <country>Canada</country> <phone1>984-555-8652</phone1> <phone2>942-555-3302</phone2> <birthdate>04.08.1911</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-08-13</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1990-08-13</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Vicki Welsh</fullname> <test></test> </Customer> <Customer> - <account_num>90142817497</account_num> + <accountNum>90142817497</accountNum> <lname>McCollum</lname> <fname>Harvey</fname> <mi></mi> @@ -12219,28 +12219,28 @@ <address3></address3> <address4></address4> <city>Sedro Woolley</city> - <state_province>WA</state_province> - <postal_code>10983</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>10983</postalCode> <country>USA</country> <phone1>727-555-9460</phone1> <phone2>315-555-8309</phone2> <birthdate>23.02.1974</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-10-09</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-10-09</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Harvey McCollum</fullname> <test></test> </Customer> <Customer> - <account_num>90146937370</account_num> + <accountNum>90146937370</accountNum> <lname>Cramer</lname> <fname>Mary</fname> <mi>J.</mi> @@ -12249,28 +12249,28 @@ <address3></address3> <address4></address4> <city>La Mesa</city> - <state_province>CA</state_province> - <postal_code>49452</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>49452</postalCode> <country>USA</country> <phone1>408-555-5009</phone1> <phone2>673-555-8202</phone2> <birthdate>20.09.1938</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-08-20</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-08-20</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Mary Cramer</fullname> <test></test> </Customer> <Customer> - <account_num>90158658623</account_num> + <accountNum>90158658623</accountNum> <lname>Fike</lname> <fname>Linda</fname> <mi></mi> @@ -12279,28 +12279,28 @@ <address3></address3> <address4></address4> <city>W. Linn</city> - <state_province>OR</state_province> - <postal_code>29617</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>29617</postalCode> <country>USA</country> <phone1>173-555-4445</phone1> <phone2>308-555-6495</phone2> <birthdate>12.11.1920</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-03-21</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-03-21</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Linda Fike</fullname> <test></test> </Customer> <Customer> - <account_num>90168706178</account_num> + <accountNum>90168706178</accountNum> <lname>Adair</lname> <fname>Sam</fname> <mi>W.</mi> @@ -12309,28 +12309,28 @@ <address3></address3> <address4></address4> <city>Oregon City</city> - <state_province>OR</state_province> - <postal_code>34247</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>34247</postalCode> <country>USA</country> <phone1>116-555-2281</phone1> <phone2>689-555-5017</phone2> <birthdate>15.11.1930</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-02-09</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-02-09</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Sam Adair</fullname> <test></test> </Customer> <Customer> - <account_num>90174725055</account_num> + <accountNum>90174725055</accountNum> <lname>Kolosso</lname> <fname>Jerry</fname> <mi>N.</mi> @@ -12339,28 +12339,28 @@ <address3></address3> <address4></address4> <city>Royal Oak</city> - <state_province>BC</state_province> - <postal_code>53281</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>53281</postalCode> <country>Canada</country> <phone1>255-555-6263</phone1> <phone2>697-555-7855</phone2> <birthdate>15.06.1941</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-09-07</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-09-07</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Jerry Kolosso</fullname> <test></test> </Customer> <Customer> - <account_num>90178142189</account_num> + <accountNum>90178142189</accountNum> <lname>Carpenter</lname> <fname>Todd</fname> <mi>R.</mi> @@ -12369,28 +12369,28 @@ <address3></address3> <address4></address4> <city>Milwaukie</city> - <state_province>OR</state_province> - <postal_code>24073</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>24073</postalCode> <country>USA</country> <phone1>220-555-2727</phone1> <phone2>201-555-5005</phone2> <birthdate>17.10.1954</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-02-11</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-02-11</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Todd Carpenter</fullname> <test></test> </Customer> <Customer> - <account_num>90189155340</account_num> + <accountNum>90189155340</accountNum> <lname>Watkins</lname> <fname>Lisa</fname> <mi>D.</mi> @@ -12399,28 +12399,28 @@ <address3></address3> <address4></address4> <city>Concord</city> - <state_province>CA</state_province> - <postal_code>92694</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>92694</postalCode> <country>USA</country> <phone1>932-555-8420</phone1> <phone2>121-555-4213</phone2> <birthdate>08.07.1976</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1992-07-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-07-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Lisa Watkins</fullname> <test></test> </Customer> <Customer> - <account_num>90251591801</account_num> + <accountNum>90251591801</accountNum> <lname>Barrera</lname> <fname>Kevin</fname> <mi>L.</mi> @@ -12429,28 +12429,28 @@ <address3></address3> <address4></address4> <city>Glendale</city> - <state_province>CA</state_province> - <postal_code>45222</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>45222</postalCode> <country>USA</country> <phone1>259-555-7170</phone1> <phone2>547-555-8991</phone2> <birthdate>10.09.1960</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-07-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-07-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Kevin Barrera</fullname> <test></test> </Customer> <Customer> - <account_num>90256194472</account_num> + <accountNum>90256194472</accountNum> <lname>Price</lname> <fname>Maria</fname> <mi></mi> @@ -12459,28 +12459,28 @@ <address3></address3> <address4></address4> <city>San Andres</city> - <state_province>DF</state_province> - <postal_code>95578</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>95578</postalCode> <country>Mexico</country> <phone1>332-555-6148</phone1> <phone2>490-555-6827</phone2> <birthdate>23.10.1963</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-09-20</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1994-09-20</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Maria Price</fullname> <test></test> </Customer> <Customer> - <account_num>90308722853</account_num> + <accountNum>90308722853</accountNum> <lname>Rosemont</lname> <fname>Flossie</fname> <mi></mi> @@ -12489,28 +12489,28 @@ <address3></address3> <address4></address4> <city>San Andres</city> - <state_province>DF</state_province> - <postal_code>97693</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>97693</postalCode> <country>Mexico</country> <phone1>582-555-3527</phone1> <phone2>278-555-4891</phone2> <birthdate>02.02.1955</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-10-03</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1994-10-03</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Flossie Rosemont</fullname> <test></test> </Customer> <Customer> - <account_num>90318523645</account_num> + <accountNum>90318523645</accountNum> <lname>McMenama</lname> <fname>Betty</fname> <mi></mi> @@ -12519,28 +12519,28 @@ <address3></address3> <address4></address4> <city>Burnaby</city> - <state_province>BC</state_province> - <postal_code>15628</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>15628</postalCode> <country>Canada</country> <phone1>678-555-1134</phone1> <phone2>243-555-1355</phone2> <birthdate>22.04.1918</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-03-21</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1994-03-21</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Betty McMenama</fullname> <test></test> </Customer> <Customer> - <account_num>90320428000</account_num> + <accountNum>90320428000</accountNum> <lname>Lyons</lname> <fname>Max</fname> <mi></mi> @@ -12549,28 +12549,28 @@ <address3></address3> <address4></address4> <city>Merida</city> - <state_province>Yucatan</state_province> - <postal_code>82904</postal_code> + <stateProvince>Yucatan</stateProvince> + <postalCode>82904</postalCode> <country>Mexico</country> <phone1>951-555-6141</phone1> <phone2>294-555-1706</phone2> <birthdate>24.07.1945</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-01-02</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1990-01-02</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Max Lyons</fullname> <test></test> </Customer> <Customer> - <account_num>90344433784</account_num> + <accountNum>90344433784</accountNum> <lname>Sandy Kurtz</lname> <fname>Christine</fname> <mi></mi> @@ -12579,28 +12579,28 @@ <address3></address3> <address4></address4> <city>Vancouver</city> - <state_province>BC</state_province> - <postal_code>39293</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>39293</postalCode> <country>Canada</country> <phone1>409-555-6034</phone1> <phone2>282-555-5798</phone2> <birthdate>06.07.1953</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-06-20</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-06-20</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Christine Sandy Kurtz</fullname> <test></test> </Customer> <Customer> - <account_num>90350758433</account_num> + <accountNum>90350758433</accountNum> <lname>Santry</lname> <fname>Rita</fname> <mi>A.</mi> @@ -12609,28 +12609,28 @@ <address3></address3> <address4></address4> <city>Lincoln Acres</city> - <state_province>CA</state_province> - <postal_code>72730</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>72730</postalCode> <country>USA</country> <phone1>705-555-9670</phone1> <phone2>355-555-4777</phone2> <birthdate>18.08.1924</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-05-07</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-05-07</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Rita Santry</fullname> <test></test> </Customer> <Customer> - <account_num>90351412892</account_num> + <accountNum>90351412892</accountNum> <lname>Quigle</lname> <fname>Catherine</fname> <mi>A.</mi> @@ -12639,28 +12639,28 @@ <address3></address3> <address4></address4> <city>Tlaxiaco</city> - <state_province>Oaxaca</state_province> - <postal_code>94279</postal_code> + <stateProvince>Oaxaca</stateProvince> + <postalCode>94279</postalCode> <country>Mexico</country> <phone1>186-555-8191</phone1> <phone2>605-555-2155</phone2> <birthdate>02.12.1957</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-09-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-09-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Catherine Quigle</fullname> <test></test> </Customer> <Customer> - <account_num>90362629890</account_num> + <accountNum>90362629890</accountNum> <lname>Christensen</lname> <fname>Patricia</fname> <mi>L.</mi> @@ -12669,28 +12669,28 @@ <address3></address3> <address4></address4> <city>Tixapan</city> - <state_province>DF</state_province> - <postal_code>93879</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>93879</postalCode> <country>Mexico</country> <phone1>982-555-8770</phone1> <phone2>701-555-8763</phone2> <birthdate>03.06.1956</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-03-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-03-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Clerical</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Patricia Christensen</fullname> <test></test> </Customer> <Customer> - <account_num>90365693000</account_num> + <accountNum>90365693000</accountNum> <lname>Mercurio</lname> <fname>Anne</fname> <mi>P.</mi> @@ -12699,28 +12699,28 @@ <address3></address3> <address4></address4> <city>Richmond</city> - <state_province>BC</state_province> - <postal_code>81590</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>81590</postalCode> <country>Canada</country> <phone1>837-555-2837</phone1> <phone2>664-555-5344</phone2> <birthdate>20.08.1911</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-01-12</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-01-12</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Anne Mercurio</fullname> <test></test> </Customer> <Customer> - <account_num>90399290323</account_num> + <accountNum>90399290323</accountNum> <lname>McGrath</lname> <fname>Louis</fname> <mi>P.</mi> @@ -12729,28 +12729,28 @@ <address3></address3> <address4></address4> <city>Lake Oswego</city> - <state_province>OR</state_province> - <postal_code>47352</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>47352</postalCode> <country>USA</country> <phone1>518-555-7387</phone1> <phone2>783-555-1580</phone2> <birthdate>25.03.1919</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-06-20</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-06-20</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Louis McGrath</fullname> <test></test> </Customer> <Customer> - <account_num>90412417054</account_num> + <accountNum>90412417054</accountNum> <lname>Wright</lname> <fname>Rachael</fname> <mi></mi> @@ -12759,28 +12759,28 @@ <address3></address3> <address4></address4> <city>La Mesa</city> - <state_province>CA</state_province> - <postal_code>12255</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>12255</postalCode> <country>USA</country> <phone1>283-555-6823</phone1> <phone2>418-555-8873</phone2> <birthdate>22.05.1975</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-09-16</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-09-16</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Rachael Wright</fullname> <test></test> </Customer> <Customer> - <account_num>90422035455</account_num> + <accountNum>90422035455</accountNum> <lname>Skuce</lname> <fname>Richard</fname> <mi></mi> @@ -12789,28 +12789,28 @@ <address3></address3> <address4></address4> <city>Chula Vista</city> - <state_province>CA</state_province> - <postal_code>32147</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>32147</postalCode> <country>USA</country> <phone1>226-555-4659</phone1> <phone2>799-555-7394</phone2> <birthdate>03.06.1963</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-04-28</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-04-28</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Richard Skuce</fullname> <test></test> </Customer> <Customer> - <account_num>90427480340</account_num> + <accountNum>90427480340</accountNum> <lname>Coleman</lname> <fname>George</fname> <mi>E.</mi> @@ -12819,28 +12819,28 @@ <address3></address3> <address4></address4> <city>Daly City</city> - <state_province>CA</state_province> - <postal_code>51181</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>51181</postalCode> <country>USA</country> <phone1>914-555-2723</phone1> <phone2>456-555-4316</phone2> <birthdate>16.06.1924</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-08-25</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-08-25</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>George Coleman</fullname> <test></test> </Customer> <Customer> - <account_num>90438354015</account_num> + <accountNum>90438354015</accountNum> <lname>Barnes</lname> <fname>Lois</fname> <mi>D.</mi> @@ -12849,28 +12849,28 @@ <address3></address3> <address4></address4> <city>Metchosin</city> - <state_province>BC</state_province> - <postal_code>21973</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>21973</postalCode> <country>Canada</country> <phone1>879-555-8187</phone1> <phone2>860-555-1466</phone2> <birthdate>26.10.1911</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-11-11</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-11-11</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Lois Barnes</fullname> <test></test> </Customer> <Customer> - <account_num>90442248582</account_num> + <accountNum>90442248582</accountNum> <lname>Camille</lname> <fname>Jacky</fname> <mi>R.</mi> @@ -12879,28 +12879,28 @@ <address3></address3> <address4></address4> <city>Torrance</city> - <state_province>CA</state_province> - <postal_code>71696</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>71696</postalCode> <country>USA</country> <phone1>691-555-4880</phone1> <phone2>779-555-9673</phone2> <birthdate>15.03.1965</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-01-03</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-01-03</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Jacky Camille</fullname> <test></test> </Customer> <Customer> - <account_num>90451266169</account_num> + <accountNum>90451266169</accountNum> <lname>Allenbach</lname> <fname>Michelle</fname> <mi>K.</mi> @@ -12909,28 +12909,28 @@ <address3></address3> <address4></address4> <city>Haney</city> - <state_province>BC</state_province> - <postal_code>43122</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>43122</postalCode> <country>Canada</country> <phone1>918-555-3630</phone1> <phone2>306-555-5451</phone2> <birthdate>15.01.1911</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-09-15</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-09-15</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Michelle Allenbach</fullname> <test></test> </Customer> <Customer> - <account_num>90458486676</account_num> + <accountNum>90458486676</accountNum> <lname>Smith</lname> <fname>Franklin</fname> <mi></mi> @@ -12939,28 +12939,28 @@ <address3></address3> <address4></address4> <city>National City</city> - <state_province>CA</state_province> - <postal_code>93479</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>93479</postalCode> <country>USA</country> <phone1>991-555-2609</phone1> <phone2>248-555-3287</phone2> <birthdate>08.02.1958</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-07-12</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-07-12</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Franklin Smith</fullname> <test></test> </Customer> <Customer> - <account_num>90463679432</account_num> + <accountNum>90463679432</accountNum> <lname>Minker</lname> <fname>John</fname> <mi>A.</mi> @@ -12969,28 +12969,28 @@ <address3></address3> <address4></address4> <city>Coronado</city> - <state_province>CA</state_province> - <postal_code>95593</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>95593</postalCode> <country>USA</country> <phone1>341-555-8987</phone1> <phone2>937-555-1351</phone2> <birthdate>12.01.1912</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-06-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-06-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>John Minker</fullname> <test></test> </Customer> <Customer> - <account_num>90478168725</account_num> + <accountNum>90478168725</accountNum> <lname>Jimenez</lname> <fname>Sarah</fname> <mi></mi> @@ -12999,28 +12999,28 @@ <address3></address3> <address4></address4> <city>Cliffside</city> - <state_province>BC</state_province> - <postal_code>11498</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>11498</postalCode> <country>Canada</country> <phone1>437-555-6594</phone1> <phone2>902-555-6815</phone2> <birthdate>02.11.1977</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-08-18</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-08-18</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Sarah Jimenez</fullname> <test></test> </Customer> <Customer> - <account_num>90502533900</account_num> + <accountNum>90502533900</accountNum> <lname>Malaby</lname> <fname>Darwin</fname> <mi>G.</mi> @@ -13029,28 +13029,28 @@ <address3></address3> <address4></address4> <city>W. Linn</city> - <state_province>OR</state_province> - <postal_code>78774</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>78774</postalCode> <country>USA</country> <phone1>710-555-2601</phone1> <phone2>952-555-7166</phone2> <birthdate>02.11.1966</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>5</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>5</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-07-02</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-07-02</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Darwin Malaby</fullname> <test></test> </Customer> <Customer> - <account_num>90518219500</account_num> + <accountNum>90518219500</accountNum> <lname>Caldwell</lname> <fname>Pamela</fname> <mi></mi> @@ -13059,28 +13059,28 @@ <address3></address3> <address4></address4> <city>Spring Valley</city> - <state_province>CA</state_province> - <postal_code>61454</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>61454</postalCode> <country>USA</country> <phone1>168-555-2494</phone1> <phone2>941-555-2258</phone2> <birthdate>19.10.1948</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-11-01</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-11-01</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Pamela Caldwell</fullname> <test></test> </Customer> <Customer> - <account_num>90521304011</account_num> + <accountNum>90521304011</accountNum> <lname>Tinder</lname> <fname>Roger</fname> <mi>D.</mi> @@ -13089,28 +13089,28 @@ <address3></address3> <address4></address4> <city>Westminster</city> - <state_province>BC</state_province> - <postal_code>94892</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>94892</postalCode> <country>Canada</country> <phone1>154-555-6705</phone1> <phone2>465-555-7154</phone2> <birthdate>16.04.1939</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-11-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-11-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Roger Tinder</fullname> <test></test> </Customer> <Customer> - <account_num>90526491403</account_num> + <accountNum>90526491403</accountNum> <lname>Kropff</lname> <fname>Joseph</fname> <mi>S.</mi> @@ -13119,28 +13119,28 @@ <address3></address3> <address4></address4> <city>Guadalajara</city> - <state_province>Jalisco</state_province> - <postal_code>17442</postal_code> + <stateProvince>Jalisco</stateProvince> + <postalCode>17442</postalCode> <country>Mexico</country> <phone1>296-555-1569</phone1> <phone2>715-555-4533</phone2> <birthdate>09.08.1946</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-01-17</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1994-01-17</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Joseph Kropff</fullname> <test></test> </Customer> <Customer> - <account_num>90534779429</account_num> + <accountNum>90534779429</accountNum> <lname>Worsham</lname> <fname>Mimi</fname> <mi>M.</mi> @@ -13149,28 +13149,28 @@ <address3></address3> <address4></address4> <city>Sedro Woolley</city> - <state_province>WA</state_province> - <postal_code>17042</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>17042</postalCode> <country>USA</country> <phone1>192-555-2147</phone1> <phone2>811-555-2140</phone2> <birthdate>18.02.1919</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-02-27</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-02-27</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Mimi Worsham</fullname> <test></test> </Customer> <Customer> - <account_num>90566268563</account_num> + <accountNum>90566268563</accountNum> <lname>Bernal</lname> <fname>Ruth</fname> <mi>W.</mi> @@ -13179,28 +13179,28 @@ <address3></address3> <address4></address4> <city>Lake Oswego</city> - <state_province>OR</state_province> - <postal_code>4753</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>4753</postalCode> <country>USA</country> <phone1>596-555-8297</phone1> <phone2>423-555-1805</phone2> <birthdate>05.11.1976</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-08-17</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-08-17</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Ruth Bernal</fullname> <test></test> </Customer> <Customer> - <account_num>90577142238</account_num> + <accountNum>90577142238</accountNum> <lname>Zimmerman</lname> <fname>Yolanda</fname> <mi></mi> @@ -13209,28 +13209,28 @@ <address3></address3> <address4></address4> <city>Cliffside</city> - <state_province>BC</state_province> - <postal_code>69514</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>69514</postalCode> <country>Canada</country> <phone1>276-555-3847</phone1> <phone2>542-555-7040</phone2> <birthdate>08.02.1946</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-02-07</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-02-07</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Yolanda Zimmerman</fullname> <test></test> </Customer> <Customer> - <account_num>90578027367</account_num> + <accountNum>90578027367</accountNum> <lname>Evans</lname> <fname>Sandra</fname> <mi>A.</mi> @@ -13239,28 +13239,28 @@ <address3></address3> <address4></address4> <city>Altadena</city> - <state_province>CA</state_province> - <postal_code>23387</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>23387</postalCode> <country>USA</country> <phone1>942-555-3283</phone1> <phone2>177-555-5333</phone2> <birthdate>02.11.1964</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1991-01-26</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-01-26</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Sandra Evans</fullname> <test></test> </Customer> <Customer> - <account_num>90593197941</account_num> + <accountNum>90593197941</accountNum> <lname>Bowman</lname> <fname>Virginia</fname> <mi></mi> @@ -13269,28 +13269,28 @@ <address3></address3> <address4></address4> <city>San Gabriel</city> - <state_province>CA</state_province> - <postal_code>28017</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>28017</postalCode> <country>USA</country> <phone1>884-555-1119</phone1> <phone2>557-555-3855</phone2> <birthdate>27.04.1968</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-04-09</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-04-09</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Virginia Bowman</fullname> <test></test> </Customer> <Customer> - <account_num>90600139498</account_num> + <accountNum>90600139498</accountNum> <lname>Coleman</lname> <fname>Mary</fname> <mi></mi> @@ -13299,28 +13299,28 @@ <address3></address3> <address4></address4> <city>Novato</city> - <state_province>CA</state_province> - <postal_code>47051</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>47051</postalCode> <country>USA</country> <phone1>673-555-8183</phone1> <phone2>215-555-9776</phone2> <birthdate>21.04.1973</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-07-12</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-07-12</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Mary Coleman</fullname> <test></test> </Customer> <Customer> - <account_num>90604929924</account_num> + <accountNum>90604929924</accountNum> <lname>Chrisulis</lname> <fname>Kevin</fname> <mi>J.</mi> @@ -13329,28 +13329,28 @@ <address3></address3> <address4></address4> <city>San Diego</city> - <state_province>CA</state_province> - <postal_code>17843</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>17843</postalCode> <country>USA</country> <phone1>638-555-4647</phone1> <phone2>619-555-6926</phone2> <birthdate>17.01.1980</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-07-22</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-22</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Kevin Chrisulis</fullname> <test></test> </Customer> <Customer> - <account_num>90632100701</account_num> + <accountNum>90632100701</accountNum> <lname>Whitcomb</lname> <fname>Lee</fname> <mi>C.</mi> @@ -13359,28 +13359,28 @@ <address3></address3> <address4></address4> <city>Ladner</city> - <state_province>BC</state_province> - <postal_code>30396</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>30396</postalCode> <country>Canada</country> <phone1>449-555-1340</phone1> <phone2>538-555-6133</phone2> <birthdate>14.05.1938</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-05-12</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-05-12</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Lee Whitcomb</fullname> <test></test> </Customer> <Customer> - <account_num>90634986758</account_num> + <accountNum>90634986758</accountNum> <lname>Turcios</lname> <fname>Brian</fname> <mi>T.</mi> @@ -13389,28 +13389,28 @@ <address3></address3> <address4></address4> <city>Hidalgo</city> - <state_province>Zacatecas</state_province> - <postal_code>65284</postal_code> + <stateProvince>Zacatecas</stateProvince> + <postalCode>65284</postalCode> <country>Mexico</country> <phone1>676-555-9090</phone1> <phone2>965-555-1911</phone2> <birthdate>11.10.1916</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-09-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-09-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Brian Turcios</fullname> <test></test> </Customer> <Customer> - <account_num>90642099976</account_num> + <accountNum>90642099976</accountNum> <lname>Confetti</lname> <fname>Jennifer</fname> <mi>J.</mi> @@ -13419,28 +13419,28 @@ <address3></address3> <address4></address4> <city>Long Beach</city> - <state_province>CA</state_province> - <postal_code>89348</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>89348</postalCode> <country>USA</country> <phone1>750-555-8069</phone1> <phone2>907-555-8747</phone2> <birthdate>02.08.1925</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-07-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Jennifer Confetti</fullname> <test></test> </Customer> <Customer> - <account_num>90643049478</account_num> + <accountNum>90643049478</accountNum> <lname>Takemura</lname> <fname>Geneva</fname> <mi>H.</mi> @@ -13449,28 +13449,28 @@ <address3></address3> <address4></address4> <city>Albany</city> - <state_province>OR</state_province> - <postal_code>91463</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>91463</postalCode> <country>USA</country> <phone1>290-555-7190</phone1> <phone2>886-555-8554</phone2> <birthdate>03.03.1911</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-01-04</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-01-04</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Geneva Takemura</fullname> <test></test> </Customer> <Customer> - <account_num>90685133337</account_num> + <accountNum>90685133337</accountNum> <lname>Campbell</lname> <fname>Lynn</fname> <mi></mi> @@ -13479,28 +13479,28 @@ <address3></address3> <address4></address4> <city>Torrance</city> - <state_province>CA</state_province> - <postal_code>89834</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>89834</postalCode> <country>USA</country> <phone1>386-555-4797</phone1> <phone2>190-555-8676</phone2> <birthdate>02.01.1950</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-11-28</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-11-28</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Lynn Campbell</fullname> <test></test> </Customer> <Customer> - <account_num>90687225461</account_num> + <accountNum>90687225461</accountNum> <lname>Smith</lname> <fname>Nina</fname> <mi></mi> @@ -13509,28 +13509,28 @@ <address3></address3> <address4></address4> <city>Ballard</city> - <state_province>WA</state_province> - <postal_code>20735</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>20735</postalCode> <country>USA</country> <phone1>659-555-9804</phone1> <phone2>902-555-5368</phone2> <birthdate>25.09.1971</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-07-09</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-09</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Nina Smith</fullname> <test></test> </Customer> <Customer> - <account_num>90689290761</account_num> + <accountNum>90689290761</accountNum> <lname>Vuong</lname> <fname>Darrell</fname> <mi>L.</mi> @@ -13539,28 +13539,28 @@ <address3></address3> <address4></address4> <city>Bellingham</city> - <state_province>WA</state_province> - <postal_code>34155</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>34155</postalCode> <country>USA</country> <phone1>117-555-9697</phone1> <phone2>229-555-4119</phone2> <birthdate>15.05.1959</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-07-05</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-05</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Darrell Vuong</fullname> <test></test> </Customer> <Customer> - <account_num>90720983743</account_num> + <accountNum>90720983743</accountNum> <lname>Abbott</lname> <fname>Eric</fname> <mi>C.</mi> @@ -13569,28 +13569,28 @@ <address3></address3> <address4></address4> <city>Edmonds</city> - <state_province>WA</state_province> - <postal_code>10561</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>10561</postalCode> <country>USA</country> <phone1>652-555-7990</phone1> <phone2>963-555-8440</phone2> <birthdate>21.09.1924</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-10-14</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-10-14</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Eric Abbott</fullname> <test></test> </Customer> <Customer> - <account_num>90735408663</account_num> + <accountNum>90735408663</accountNum> <lname>Liff</lname> <fname>Doris</fname> <mi>W.</mi> @@ -13599,28 +13599,28 @@ <address3></address3> <address4></address4> <city>Cliffside</city> - <state_province>BC</state_province> - <postal_code>58402</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>58402</postalCode> <country>Canada</country> <phone1>133-555-6511</phone1> <phone2>313-555-5818</phone2> <birthdate>10.10.1962</birthdate> - <marital_status>S</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-11-18</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-11-18</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Doris Liff</fullname> <test></test> </Customer> <Customer> - <account_num>90746867060</account_num> + <accountNum>90746867060</accountNum> <lname>Steinberg</lname> <fname>John</fname> <mi>P.</mi> @@ -13629,28 +13629,28 @@ <address3></address3> <address4></address4> <city>Lebanon</city> - <state_province>OR</state_province> - <postal_code>31710</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>31710</postalCode> <country>USA</country> <phone1>690-555-3433</phone1> <phone2>409-555-3425</phone2> <birthdate>17.11.1968</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-08-26</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-08-26</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>John Steinberg</fullname> <test></test> </Customer> <Customer> - <account_num>95625220537</account_num> + <accountNum>95625220537</accountNum> <lname>Styles</lname> <fname>Ruby Sue</fname> <mi></mi> @@ -13659,28 +13659,28 @@ <address3></address3> <address4></address4> <city>Lemon Grove</city> - <state_province>CA</state_province> - <postal_code>20129</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>20129</postalCode> <country>USA</country> <phone1>989-555-1356</phone1> <phone2>116-555-9892</phone2> <birthdate>15.02.1928</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-02-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-02-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Ruby Sue Styles</fullname> <test></test> </Customer> <Customer> - <account_num>95664895772</account_num> + <accountNum>95664895772</accountNum> <lname>Glenn</lname> <fname>Jeanie</fname> <mi>C.</mi> @@ -13689,28 +13689,28 @@ <address3></address3> <address4></address4> <city>San Jose</city> - <state_province>CA</state_province> - <postal_code>73001</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>73001</postalCode> <country>USA</country> <phone1>516-555-6135</phone1> <phone2>650-555-8185</phone2> <birthdate>06.08.1978</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1994-12-13</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-12-13</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Clerical</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Jeanie Glenn</fullname> <test></test> </Customer> <Customer> - <account_num>95685098171</account_num> + <accountNum>95685098171</accountNum> <lname>Smith</lname> <fname>Peggy</fname> <mi>A.</mi> @@ -13719,28 +13719,28 @@ <address3></address3> <address4></address4> <city>Palo Alto</city> - <state_province>CA</state_province> - <postal_code>49244</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>49244</postalCode> <country>USA</country> <phone1>458-555-3971</phone1> <phone2>131-555-6706</phone2> <birthdate>13.11.1957</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-11-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-11-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Peggy Smith</fullname> <test></test> </Customer> <Customer> - <account_num>95687796473</account_num> + <accountNum>95687796473</accountNum> <lname>Duff</lname> <fname>Tish</fname> <mi>K.</mi> @@ -13749,28 +13749,28 @@ <address3></address3> <address4></address4> <city>Newport Beach</city> - <state_province>CA</state_province> - <postal_code>23958</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>23958</postalCode> <country>USA</country> <phone1>247-555-2035</phone1> <phone2>689-555-3628</phone2> <birthdate>04.07.1923</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-10-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-10-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Tish Duff</fullname> <test></test> </Customer> <Customer> - <account_num>95704914331</account_num> + <accountNum>95704914331</accountNum> <lname>Lucero</lname> <fname>Anita</fname> <mi>A.</mi> @@ -13779,28 +13779,28 @@ <address3></address3> <address4></address4> <city>Orizaba</city> - <state_province>Veracruz</state_province> - <postal_code>93749</postal_code> + <stateProvince>Veracruz</stateProvince> + <postalCode>93749</postalCode> <country>Mexico</country> <phone1>212-555-7499</phone1> <phone2>193-555-9778</phone2> <birthdate>08.04.1974</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-07-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Anita Lucero</fullname> <test></test> </Customer> <Customer> - <account_num>95712215304</account_num> + <accountNum>95712215304</accountNum> <lname>Burton</lname> <fname>Stephen</fname> <mi>W.</mi> @@ -13809,28 +13809,28 @@ <address3></address3> <address4></address4> <city>Vancouver</city> - <state_province>BC</state_province> - <postal_code>78945</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>78945</postalCode> <country>Canada</country> <phone1>262-555-7849</phone1> <phone2>112-555-8985</phone2> <birthdate>18.12.1952</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1993-04-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-04-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Stephen Burton</fullname> <test></test> </Customer> <Customer> - <account_num>95718813538</account_num> + <accountNum>95718813538</accountNum> <lname>Consentino</lname> <fname>Amy</fname> <mi>G.</mi> @@ -13839,28 +13839,28 @@ <address3></address3> <address4></address4> <city>Chula Vista</city> - <state_province>CA</state_province> - <postal_code>15899</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>15899</postalCode> <country>USA</country> <phone1>250-555-2942</phone1> <phone2>539-555-4763</phone2> <birthdate>24.06.1974</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-05-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-05-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Amy Consentino</fullname> <test></test> </Customer> <Customer> - <account_num>95751772500</account_num> + <accountNum>95751772500</accountNum> <lname>Lutes</lname> <fname>Helen</fname> <mi></mi> @@ -13869,28 +13869,28 @@ <address3></address3> <address4></address4> <city>Milwaukie</city> - <state_province>OR</state_province> - <postal_code>66256</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>66256</postalCode> <country>USA</country> <phone1>324-555-1921</phone1> <phone2>481-555-2599</phone2> <birthdate>12.11.1945</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-10-09</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-10-09</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Helen Lutes</fullname> <test></test> </Customer> <Customer> - <account_num>95765510797</account_num> + <accountNum>95765510797</accountNum> <lname>Ecoffey</lname> <fname>Linda</fname> <mi></mi> @@ -13899,28 +13899,28 @@ <address3></address3> <address4></address4> <city>Berkeley</city> - <state_province>CA</state_province> - <postal_code>68370</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>68370</postalCode> <country>USA</country> <phone1>574-555-8299</phone1> <phone2>270-555-9663</phone2> <birthdate>21.06.1975</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-12-10</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-12-10</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Linda Ecoffey</fullname> <test></test> </Customer> <Customer> - <account_num>95802176594</account_num> + <accountNum>95802176594</accountNum> <lname>Swint</lname> <fname>Katherine</fname> <mi></mi> @@ -13929,28 +13929,28 @@ <address3></address3> <address4></address4> <city>San Gabriel</city> - <state_province>CA</state_province> - <postal_code>84889</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>84889</postalCode> <country>USA</country> <phone1>670-555-5906</phone1> <phone2>474-555-9785</phone2> <birthdate>06.09.1965</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-10-15</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-10-15</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Katherine Swint</fullname> <test></test> </Customer> <Customer> - <account_num>95806237459</account_num> + <accountNum>95806237459</accountNum> <lname>Slattengren</lname> <fname>Dianne</fname> <mi>L.</mi> @@ -13959,28 +13959,28 @@ <address3></address3> <address4></address4> <city>Lakewood</city> - <state_province>CA</state_province> - <postal_code>53166</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>53166</postalCode> <country>USA</country> <phone1>872-555-6146</phone1> <phone2>875-555-7053</phone2> <birthdate>11.05.1959</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-02-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-02-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Dianne Slattengren</fullname> <test></test> </Customer> <Customer> - <account_num>95825560092</account_num> + <accountNum>95825560092</accountNum> <lname>Heymsfield</lname> <fname>Ronald</fname> <mi>P.</mi> @@ -13989,28 +13989,28 @@ <address3></address3> <address4></address4> <city>Victoria</city> - <state_province>BC</state_province> - <postal_code>28062</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>28062</postalCode> <country>Canada</country> <phone1>991-555-2381</phone1> <phone2>202-555-5803</phone2> <birthdate>06.11.1947</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-10-14</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-10-14</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Ronald Heymsfield</fullname> <test></test> </Customer> <Customer> - <account_num>95844362378</account_num> + <accountNum>95844362378</accountNum> <lname>Whitehead</lname> <fname>Steven</fname> <mi>L.</mi> @@ -14019,28 +14019,28 @@ <address3></address3> <address4></address4> <city>Santa Cruz</city> - <state_province>CA</state_province> - <postal_code>61500</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>61500</postalCode> <country>USA</country> <phone1>625-555-9674</phone1> <phone2>937-555-1124</phone2> <birthdate>10.12.1944</birthdate> - <marital_status>M</marital_status> - <yearly_income>$150K +</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$150K +</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1994-02-04</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1994-02-04</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Steven Whitehead</fullname> <test></test> </Customer> <Customer> - <account_num>95845295786</account_num> + <accountNum>95845295786</accountNum> <lname>Roy</lname> <fname>Lisa</fname> <mi></mi> @@ -14049,28 +14049,28 @@ <address3></address3> <address4></address4> <city>Pomona</city> - <state_province>CA</state_province> - <postal_code>83049</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>83049</postalCode> <country>USA</country> <phone1>106-555-8196</phone1> <phone2>287-555-7502</phone2> <birthdate>24.09.1945</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-07-22</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-07-22</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Lisa Roy</fullname> <test></test> </Customer> <Customer> - <account_num>95847103595</account_num> + <accountNum>95847103595</accountNum> <lname>Burkhardt</lname> <fname>Ingrid</fname> <mi></mi> @@ -14079,28 +14079,28 @@ <address3></address3> <address4></address4> <city>La Cruz</city> - <state_province>Sinaloa</state_province> - <postal_code>82649</postal_code> + <stateProvince>Sinaloa</stateProvince> + <postalCode>82649</postalCode> <country>Mexico</country> <phone1>664-555-5117</phone1> <phone2>622-555-8767</phone2> <birthdate>28.07.1912</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-03-10</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-03-10</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Ingrid Burkhardt</fullname> <test></test> </Customer> <Customer> - <account_num>95857843160</account_num> + <accountNum>95857843160</accountNum> <lname>Whitney</lname> <fname>Todd</fname> <mi>V.</mi> @@ -14109,28 +14109,28 @@ <address3></address3> <address4></address4> <city>Chula Vista</city> - <state_province>CA</state_province> - <postal_code>70360</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>70360</postalCode> <country>USA</country> <phone1>168-555-2267</phone1> <phone2>895-555-4774</phone2> <birthdate>20.11.1976</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-10-14</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-10-14</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Todd Whitney</fullname> <test></test> </Customer> <Customer> - <account_num>95861582159</account_num> + <accountNum>95861582159</accountNum> <lname>Wisnewski</lname> <fname>Barbara</fname> <mi>E.</mi> @@ -14139,28 +14139,28 @@ <address3></address3> <address4></address4> <city>San Gabriel</city> - <state_province>CA</state_province> - <postal_code>36121</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>36121</postalCode> <country>USA</country> <phone1>987-555-1474</phone1> <phone2>114-555-1010</phone2> <birthdate>17.07.1939</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-08-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-08-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Barbara Wisnewski</fullname> <test></test> </Customer> <Customer> - <account_num>95865326523</account_num> + <accountNum>95865326523</accountNum> <lname>Burkhardt</lname> <fname>Karren</fname> <mi>J.</mi> @@ -14169,28 +14169,28 @@ <address3></address3> <address4></address4> <city>Tixapan</city> - <state_province>DF</state_province> - <postal_code>88993</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>88993</postalCode> <country>Mexico</country> <phone1>514-555-6252</phone1> <phone2>648-555-8302</phone2> <birthdate>06.09.1951</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-12-12</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1994-12-12</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Karren Burkhardt</fullname> <test></test> </Customer> <Customer> - <account_num>95877659320</account_num> + <accountNum>95877659320</accountNum> <lname>Mcanich</lname> <fname>Stacie</fname> <mi>C.</mi> @@ -14199,28 +14199,28 @@ <address3></address3> <address4></address4> <city>San Francisco</city> - <state_province>CA</state_province> - <postal_code>93623</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>93623</postalCode> <country>USA</country> <phone1>456-555-4088</phone1> <phone2>129-555-6824</phone2> <birthdate>09.09.1962</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-10-27</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1994-10-27</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Stacie Mcanich</fullname> <test></test> </Customer> <Customer> - <account_num>95885625500</account_num> + <accountNum>95885625500</accountNum> <lname>Browning</lname> <fname>Mary</fname> <mi></mi> @@ -14229,28 +14229,28 @@ <address3></address3> <address4></address4> <city>Redmond</city> - <state_province>WA</state_province> - <postal_code>13658</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>13658</postalCode> <country>USA</country> <phone1>245-555-2152</phone1> <phone2>687-555-3745</phone2> <birthdate>25.02.1960</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-06-25</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-06-25</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Mary Browning</fullname> <test></test> </Customer> <Customer> - <account_num>95890324711</account_num> + <accountNum>95890324711</accountNum> <lname>Wellington</lname> <fname>Alexandra</fname> <mi>D.</mi> @@ -14259,28 +14259,28 @@ <address3></address3> <address4></address4> <city>Burnaby</city> - <state_province>BC</state_province> - <postal_code>10743</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>10743</postalCode> <country>Canada</country> <phone1>210-555-7617</phone1> <phone2>191-555-9895</phone2> <birthdate>27.06.1973</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-10-03</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1994-10-03</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Alexandra Wellington</fullname> <test></test> </Customer> <Customer> - <account_num>95891966223</account_num> + <accountNum>95891966223</accountNum> <lname>Bacugalupi</lname> <fname>Cory</fname> <mi>C.</mi> @@ -14289,28 +14289,28 @@ <address3></address3> <address4></address4> <city>Redwood City</city> - <state_province>CA</state_province> - <postal_code>94937</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>94937</postalCode> <country>USA</country> <phone1>260-555-7967</phone1> <phone2>110-555-9103</phone2> <birthdate>18.03.1925</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-07-08</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1994-07-08</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Cory Bacugalupi</fullname> <test></test> </Customer> <Customer> - <account_num>95895742774</account_num> + <accountNum>95895742774</accountNum> <lname>Rizzi</lname> <fname>Stacy</fname> <mi></mi> @@ -14319,28 +14319,28 @@ <address3></address3> <address4></address4> <city>Everett</city> - <state_province>WA</state_province> - <postal_code>31891</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>31891</postalCode> <country>USA</country> <phone1>248-555-3060</phone1> <phone2>776-555-8538</phone2> <birthdate>07.07.1961</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-04-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-04-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Stacy Rizzi</fullname> <test></test> </Customer> <Customer> - <account_num>95929125547</account_num> + <accountNum>95929125547</accountNum> <lname>Sotelo</lname> <fname>William</fname> <mi>C.</mi> @@ -14349,28 +14349,28 @@ <address3></address3> <address4></address4> <city>Lincoln Acres</city> - <state_province>CA</state_province> - <postal_code>82248</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>82248</postalCode> <country>USA</country> <phone1>434-555-4298</phone1> <phone2>830-555-8634</phone2> <birthdate>03.12.1976</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-06-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-06-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Clerical</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>William Sotelo</fullname> <test></test> </Customer> <Customer> - <account_num>95942515134</account_num> + <accountNum>95942515134</accountNum> <lname>Stanley</lname> <fname>Beth</fname> <mi></mi> @@ -14379,28 +14379,28 @@ <address3></address3> <address4></address4> <city>Lincoln Acres</city> - <state_province>CA</state_province> - <postal_code>84363</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>84363</postalCode> <country>USA</country> <phone1>684-555-1677</phone1> <phone2>380-555-3041</phone2> <birthdate>10.03.1968</birthdate> - <marital_status>S</marital_status> - <yearly_income>$150K +</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$150K +</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-07-21</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-07-21</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Beth Stanley</fullname> <test></test> </Customer> <Customer> - <account_num>95949564000</account_num> + <accountNum>95949564000</accountNum> <lname>Markwood</lname> <fname>Jill</fname> <mi></mi> @@ -14409,28 +14409,28 @@ <address3></address3> <address4></address4> <city>Metchosin</city> - <state_province>BC</state_province> - <postal_code>74590</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>74590</postalCode> <country>Canada</country> <phone1>780-555-8284</phone1> <phone2>584-555-3162</phone2> <birthdate>19.02.1920</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-10-15</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-10-15</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Jill Markwood</fullname> <test></test> </Customer> <Customer> - <account_num>95953292250</account_num> + <accountNum>95953292250</accountNum> <lname>Valentine</lname> <fname>Mildred</fname> <mi></mi> @@ -14439,28 +14439,28 @@ <address3></address3> <address4></address4> <city>Beaverton</city> - <state_province>OR</state_province> - <postal_code>42866</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>42866</postalCode> <country>USA</country> <phone1>392-555-7948</phone1> <phone2>395-555-8855</phone2> <birthdate>21.06.1946</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-02-02</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-02-02</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Mildred Valentine</fullname> <test></test> </Customer> <Customer> - <account_num>95994877219</account_num> + <accountNum>95994877219</accountNum> <lname>Reams</lname> <fname>Suzann</fname> <mi></mi> @@ -14469,28 +14469,28 @@ <address3></address3> <address4></address4> <city>Grossmont</city> - <state_province>CA</state_province> - <postal_code>25547</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>25547</postalCode> <country>USA</country> <phone1>511-555-4184</phone1> <phone2>622-555-7605</phone2> <birthdate>14.09.1966</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-09-04</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-09-04</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Suzann Reams</fullname> <test></test> </Customer> <Customer> - <account_num>96006904244</account_num> + <accountNum>96006904244</accountNum> <lname>Long</lname> <fname>John</fname> <mi>A.</mi> @@ -14499,28 +14499,28 @@ <address3></address3> <address4></address4> <city>Portland</city> - <state_province>OR</state_province> - <postal_code>83372</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>83372</postalCode> <country>USA</country> <phone1>145-555-2477</phone1> <phone2>457-555-2927</phone2> <birthdate>14.06.1925</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-05-07</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-05-07</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>John Long</fullname> <test></test> </Customer> <Customer> - <account_num>96009870767</account_num> + <accountNum>96009870767</accountNum> <lname>Olenzek</lname> <fname>Edwin</fname> <mi>L.</mi> @@ -14529,28 +14529,28 @@ <address3></address3> <address4></address4> <city>Burlingame</city> - <state_province>CA</state_province> - <postal_code>59223</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>59223</postalCode> <country>USA</country> <phone1>526-555-9998</phone1> <phone2>945-555-3963</phone2> <birthdate>09.02.1970</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-10-06</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-10-06</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Edwin Olenzek</fullname> <test></test> </Customer> <Customer> - <account_num>96021484732</account_num> + <accountNum>96021484732</accountNum> <lname>Valerio</lname> <fname>Jessie</fname> <mi>C.</mi> @@ -14559,28 +14559,28 @@ <address3></address3> <address4></address4> <city>San Jose</city> - <state_province>CA</state_province> - <postal_code>55213</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>55213</postalCode> <country>USA</country> <phone1>184-555-6920</phone1> <phone2>142-555-1570</phone2> <birthdate>11.08.1969</birthdate> - <marital_status>M</marital_status> - <yearly_income>$150K +</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$150K +</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-03-19</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-03-19</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Jessie Valerio</fullname> <test></test> </Customer> <Customer> - <account_num>96027305126</account_num> + <accountNum>96027305126</accountNum> <lname>Ahlering</lname> <fname>Robert</fname> <mi>O.</mi> @@ -14589,28 +14589,28 @@ <address3></address3> <address4></address4> <city>Salem</city> - <state_province>OR</state_province> - <postal_code>92232</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>92232</postalCode> <country>USA</country> <phone1>587-555-4069</phone1> <phone2>414-555-6577</phone2> <birthdate>27.09.1925</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-01-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-01-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Robert Ahlering</fullname> <test></test> </Customer> <Customer> - <account_num>96039546728</account_num> + <accountNum>96039546728</accountNum> <lname>Burke</lname> <fname>Megan</fname> <mi>C.</mi> @@ -14619,28 +14619,28 @@ <address3></address3> <address4></address4> <city>Kirkland</city> - <state_province>WA</state_province> - <postal_code>31701</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>31701</postalCode> <country>USA</country> <phone1>507-555-3277</phone1> <phone2>772-555-6470</phone2> <birthdate>05.04.1932</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-07-20</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-07-20</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Megan Burke</fullname> <test></test> </Customer> <Customer> - <account_num>96052287220</account_num> + <accountNum>96052287220</accountNum> <lname>Bates</lname> <fname>Karel</fname> <mi>S.</mi> @@ -14649,28 +14649,28 @@ <address3></address3> <address4></address4> <city>National City</city> - <state_province>CA</state_province> - <postal_code>11866</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>11866</postalCode> <country>USA</country> <phone1>934-555-8055</phone1> <phone2>168-555-1105</phone2> <birthdate>19.03.1976</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-10-16</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1994-10-16</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Karel Bates</fullname> <test></test> </Customer> <Customer> - <account_num>96061755400</account_num> + <accountNum>96061755400</accountNum> <lname>White</lname> <fname>Mike</fname> <mi>E.</mi> @@ -14679,28 +14679,28 @@ <address3></address3> <address4></address4> <city>Lemon Grove</city> - <state_province>CA</state_province> - <postal_code>16496</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>16496</postalCode> <country>USA</country> <phone1>876-555-5891</phone1> <phone2>549-555-8627</phone2> <birthdate>03.02.1961</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-01-22</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-01-22</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Mike White</fullname> <test></test> </Customer> <Customer> - <account_num>92902123928</account_num> + <accountNum>92902123928</accountNum> <lname>Belli</lname> <fname>Shane</fname> <mi>A.</mi> @@ -14709,28 +14709,28 @@ <address3></address3> <address4></address4> <city>Renton</city> - <state_province>WA</state_province> - <postal_code>88506</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>88506</postalCode> <country>USA</country> <phone1>135-555-9703</phone1> <phone2>993-555-4353</phone2> <birthdate>27.10.1929</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1991-06-26</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-06-26</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Shane Belli</fullname> <test></test> </Customer> <Customer> - <account_num>92920920848</account_num> + <accountNum>92920920848</accountNum> <lname>Porter</lname> <fname>Ethel</fname> <mi></mi> @@ -14739,28 +14739,28 @@ <address3></address3> <address4></address4> <city>Torrance</city> - <state_province>CA</state_province> - <postal_code>35114</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>35114</postalCode> <country>USA</country> <phone1>539-555-6853</phone1> <phone2>366-555-9360</phone2> <birthdate>24.11.1929</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-04-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-04-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Ethel Porter</fullname> <test></test> </Customer> <Customer> - <account_num>92933875918</account_num> + <accountNum>92933875918</accountNum> <lname>Lesko</lname> <fname>Gloria</fname> <mi>J.</mi> @@ -14769,28 +14769,28 @@ <address3></address3> <address4></address4> <city>Ladner</city> - <state_province>BC</state_province> - <postal_code>41979</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>41979</postalCode> <country>Canada</country> <phone1>458-555-6060</phone1> <phone2>724-555-9253</phone2> <birthdate>27.03.1969</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-06-06</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-06-06</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Gloria Lesko</fullname> <test></test> </Customer> <Customer> - <account_num>92941284179</account_num> + <accountNum>92941284179</accountNum> <lname>Worland</lname> <fname>Michael</fname> <mi>S.</mi> @@ -14799,28 +14799,28 @@ <address3></address3> <address4></address4> <city>Burlingame</city> - <state_province>CA</state_province> - <postal_code>20239</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>20239</postalCode> <country>USA</country> <phone1>885-555-1839</phone1> <phone2>119-555-3889</phone2> <birthdate>10.09.1974</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-05-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-05-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Michael Worland</fullname> <test></test> </Customer> <Customer> - <account_num>92943102717</account_num> + <accountNum>92943102717</accountNum> <lname>Torre</lname> <fname>Alvin</fname> <mi>J.</mi> @@ -14829,28 +14829,28 @@ <address3></address3> <address4></address4> <city>Concord</city> - <state_province>CA</state_province> - <postal_code>51162</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>51162</postalCode> <country>USA</country> <phone1>827-555-8675</phone1> <phone2>500-555-2410</phone2> <birthdate>19.05.1921</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-08-08</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-08-08</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Alvin Torre</fullname> <test></test> </Customer> <Customer> - <account_num>92951068878</account_num> + <accountNum>92951068878</accountNum> <lname>Ramos</lname> <fname>Susan</fname> <mi>Y.</mi> @@ -14859,28 +14859,28 @@ <address3></address3> <address4></address4> <city>Lake Oswego</city> - <state_province>OR</state_province> - <postal_code>70195</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>70195</postalCode> <country>USA</country> <phone1>616-555-6739</phone1> <phone2>397-555-2989</phone2> <birthdate>02.01.1913</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-11-11</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1994-11-11</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Susan Ramos</fullname> <test></test> </Customer> <Customer> - <account_num>92967188954</account_num> + <accountNum>92967188954</accountNum> <lname>Christie</lname> <fname>Jill</fname> <mi>A.</mi> @@ -14889,28 +14889,28 @@ <address3></address3> <address4></address4> <city>La Cruz</city> - <state_province>Sinaloa</state_province> - <postal_code>40988</postal_code> + <stateProvince>Sinaloa</stateProvince> + <postalCode>40988</postalCode> <country>Mexico</country> <phone1>820-555-6860</phone1> <phone2>801-555-9139</phone2> <birthdate>10.02.1932</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-11-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-11-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Jill Christie</fullname> <test></test> </Customer> <Customer> - <account_num>92967307000</account_num> + <accountNum>92967307000</accountNum> <lname>Zocchi</lname> <fname>Juanita</fname> <mi></mi> @@ -14919,28 +14919,28 @@ <address3></address3> <address4></address4> <city>Yakima</city> - <state_province>WA</state_province> - <postal_code>26183</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>26183</postalCode> <country>USA</country> <phone1>631-555-3553</phone1> <phone2>481-555-4689</phone2> <birthdate>06.05.1961</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-08-11</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-08-11</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Juanita Zocchi</fullname> <test></test> </Customer> <Customer> - <account_num>92973899841</account_num> + <accountNum>92973899841</accountNum> <lname>Altamirano</lname> <fname>Sandra</fname> <mi>L.</mi> @@ -14949,28 +14949,28 @@ <address3></address3> <address4></address4> <city>Seattle</city> - <state_province>WA</state_province> - <postal_code>62136</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>62136</postalCode> <country>USA</country> <phone1>858-555-2303</phone1> <phone2>247-555-4125</phone2> <birthdate>04.11.1938</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1993-05-03</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-05-03</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Sandra Altamirano</fullname> <test></test> </Customer> <Customer> - <account_num>92996162176</account_num> + <accountNum>92996162176</accountNum> <lname>Benson</lname> <fname>Edna</fname> <mi>D.</mi> @@ -14979,28 +14979,28 @@ <address3></address3> <address4></address4> <city>Corvallis</city> - <state_province>OR</state_province> - <postal_code>13494</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>13494</postalCode> <country>USA</country> <phone1>692-555-6625</phone1> <phone2>189-555-1960</phone2> <birthdate>21.09.1947</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-04-05</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-04-05</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Edna Benson</fullname> <test></test> </Customer> <Customer> - <account_num>93001666100</account_num> + <accountNum>93001666100</accountNum> <lname>Deborde</lname> <fname>Alexander</fname> <mi>G.</mi> @@ -15009,28 +15009,28 @@ <address3></address3> <address4></address4> <city>Glendale</city> - <state_province>CA</state_province> - <postal_code>15609</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>15609</postalCode> <country>USA</country> <phone1>155-555-6263</phone1> <phone2>990-555-2285</phone2> <birthdate>22.04.1933</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-10-09</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-10-09</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Alexander Deborde</fullname> <test></test> </Customer> <Customer> - <account_num>93010479800</account_num> + <accountNum>93010479800</accountNum> <lname>Calone</lname> <fname>Barbara</fname> <mi></mi> @@ -15039,28 +15039,28 @@ <address3></address3> <address4></address4> <city>Corvallis</city> - <state_province>OR</state_province> - <postal_code>32128</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>32128</postalCode> <country>USA</country> <phone1>490-555-7528</phone1> <phone2>955-555-7749</phone2> <birthdate>10.10.1961</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-09-06</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-09-06</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Barbara Calone</fullname> <test></test> </Customer> <Customer> - <account_num>93026315600</account_num> + <accountNum>93026315600</accountNum> <lname>Pompa</lname> <fname>Cheryl</fname> <mi></mi> @@ -15069,28 +15069,28 @@ <address3></address3> <address4></address4> <city>Guadalajara</city> - <state_province>Jalisco</state_province> - <postal_code>73111</postal_code> + <stateProvince>Jalisco</stateProvince> + <postalCode>73111</postalCode> <country>Mexico</country> <phone1>763-555-3535</phone1> <phone2>766-555-4442</phone2> <birthdate>18.10.1923</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-07-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-07-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Cheryl Pompa</fullname> <test></test> </Customer> <Customer> - <account_num>93031701445</account_num> + <accountNum>93031701445</accountNum> <lname>Traube</lname> <fname>Doris</fname> <mi>E.</mi> @@ -15099,28 +15099,28 @@ <address3></address3> <address4></address4> <city>Pomona</city> - <state_province>CA</state_province> - <postal_code>55792</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>55792</postalCode> <country>USA</country> <phone1>882-555-8770</phone1> <phone2>993-555-3192</phone2> <birthdate>05.06.1937</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-07-22</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-07-22</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Doris Traube</fullname> <test></test> </Customer> <Customer> - <account_num>93048132658</account_num> + <accountNum>93048132658</accountNum> <lname>Sloan</lname> <fname>Cathy</fname> <mi>A.</mi> @@ -15129,28 +15129,28 @@ <address3></address3> <address4></address4> <city>Newton</city> - <state_province>BC</state_province> - <postal_code>89229</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>89229</postalCode> <country>Canada</country> <phone1>516-555-7063</phone1> <phone2>166-555-2170</phone2> <birthdate>11.10.1972</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-11-03</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-11-03</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Cathy Sloan</fullname> <test></test> </Customer> <Customer> - <account_num>93051748275</account_num> + <accountNum>93051748275</accountNum> <lname>Villa</lname> <fname>Homer</fname> <mi></mi> @@ -15159,28 +15159,28 @@ <address3></address3> <address4></address4> <city>Coronado</city> - <state_province>CA</state_province> - <postal_code>11780</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>11780</postalCode> <country>USA</country> <phone1>897-555-5585</phone1> <phone2>416-555-8549</phone2> <birthdate>27.10.1941</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-08-24</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-08-24</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Homer Villa</fullname> <test></test> </Customer> <Customer> - <account_num>93052300810</account_num> + <accountNum>93052300810</accountNum> <lname>Herman</lname> <fname>Deena</fname> <mi>R.</mi> @@ -15189,28 +15189,28 @@ <address3></address3> <address4></address4> <city>Tacoma</city> - <state_province>WA</state_province> - <postal_code>11379</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>11379</postalCode> <country>USA</country> <phone1>555-555-2506</phone1> <phone2>513-555-6156</phone2> <birthdate>07.12.1946</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-06-04</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-06-04</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Deena Herman</fullname> <test></test> </Customer> <Customer> - <account_num>93055895000</account_num> + <accountNum>93055895000</accountNum> <lname>Roberts</lname> <fname>Leota</fname> <mi></mi> @@ -15219,28 +15219,28 @@ <address3></address3> <address4></address4> <city>Oregon City</city> - <state_province>OR</state_province> - <postal_code>98089</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>98089</postalCode> <country>USA</country> <phone1>958-555-8656</phone1> <phone2>785-555-2163</phone2> <birthdate>18.06.1966</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-11-03</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-11-03</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Leota Roberts</fullname> <test></test> </Customer> <Customer> - <account_num>93068324327</account_num> + <accountNum>93068324327</accountNum> <lname>Mc Clane</lname> <fname>John</fname> <mi>M.</mi> @@ -15249,28 +15249,28 @@ <address3></address3> <address4></address4> <city>Tixapan</city> - <state_province>DF</state_province> - <postal_code>63851</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>63851</postalCode> <country>Mexico</country> <phone1>878-555-7863</phone1> <phone2>243-555-2056</phone2> <birthdate>02.08.1980</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-01-16</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-01-16</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>John Mc Clane</fullname> <test></test> </Customer> <Customer> - <account_num>93077036142</account_num> + <accountNum>93077036142</accountNum> <lname>Maxham</lname> <fname>Jennifer</fname> <mi>J.</mi> @@ -15279,28 +15279,28 @@ <address3></address3> <address4></address4> <city>Glendale</city> - <state_province>CA</state_province> - <postal_code>17724</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>17724</postalCode> <country>USA</country> <phone1>644-555-7299</phone1> <phone2>778-555-9349</phone2> <birthdate>10.11.1947</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-11-23</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-11-23</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Jennifer Maxham</fullname> <test></test> </Customer> <Customer> - <account_num>93094347119</account_num> + <accountNum>93094347119</accountNum> <lname>Sullivan</lname> <fname>Elizabeth</fname> <mi></mi> @@ -15309,28 +15309,28 @@ <address3></address3> <address4></address4> <city>Lakewood</city> - <state_province>CA</state_province> - <postal_code>16185</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>16185</postalCode> <country>USA</country> <phone1>586-555-5135</phone1> <phone2>920-555-4213</phone2> <birthdate>16.03.1926</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-02-13</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-02-13</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Elizabeth Sullivan</fullname> <test></test> </Customer> <Customer> - <account_num>93097914457</account_num> + <accountNum>93097914457</accountNum> <lname>Watada</lname> <fname>Irene</fname> <mi>E.</mi> @@ -15339,28 +15339,28 @@ <address3></address3> <address4></address4> <city>Burien</city> - <state_province>WA</state_province> - <postal_code>35219</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>35219</postalCode> <country>USA</country> <phone1>135-555-8542</phone1> <phone2>817-555-4792</phone2> <birthdate>07.10.1962</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-10-03</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-10-03</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Irene Watada</fullname> <test></test> </Customer> <Customer> - <account_num>93103659749</account_num> + <accountNum>93103659749</accountNum> <lname>Rhiger</lname> <fname>Constance</fname> <mi>B.</mi> @@ -15369,28 +15369,28 @@ <address3></address3> <address4></address4> <city>La Mesa</city> - <state_province>CA</state_province> - <postal_code>32303</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>32303</postalCode> <country>USA</country> <phone1>930-555-9238</phone1> <phone2>911-555-2517</phone2> <birthdate>25.10.1929</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-09-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-09-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Constance Rhiger</fullname> <test></test> </Customer> <Customer> - <account_num>93135749697</account_num> + <accountNum>93135749697</accountNum> <lname>Finley</lname> <fname>Rhoda</fname> <mi>J.</mi> @@ -15399,28 +15399,28 @@ <address3></address3> <address4></address4> <city>Kirkland</city> - <state_province>WA</state_province> - <postal_code>17499</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>17499</postalCode> <country>USA</country> <phone1>741-555-5931</phone1> <phone2>591-555-7066</phone2> <birthdate>19.10.1919</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-03-08</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-03-08</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Rhoda Finley</fullname> <test></test> </Customer> <Customer> - <account_num>93138061761</account_num> + <accountNum>93138061761</accountNum> <lname>Winter</lname> <fname>Kathleen</fname> <mi>M.</mi> @@ -15429,28 +15429,28 @@ <address3></address3> <address4></address4> <city>Oak Bay</city> - <state_province>BC</state_province> - <postal_code>53452</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>53452</postalCode> <country>Canada</country> <phone1>968-555-4681</phone1> <phone2>357-555-6502</phone2> <birthdate>13.01.1929</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-07-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Kathleen Winter</fullname> <test></test> </Customer> <Customer> - <account_num>93147143721</account_num> + <accountNum>93147143721</accountNum> <lname>Adams</lname> <fname>Carla</fname> <mi>A.</mi> @@ -15459,28 +15459,28 @@ <address3></address3> <address4></address4> <city>Spring Valley</city> - <state_province>CA</state_province> - <postal_code>48094</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>48094</postalCode> <country>USA</country> <phone1>802-555-9002</phone1> <phone2>299-555-4338</phone2> <birthdate>12.09.1912</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-09-16</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-09-16</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Carla Adams</fullname> <test></test> </Customer> <Customer> - <account_num>93154197931</account_num> + <accountNum>93154197931</accountNum> <lname>Tench</lname> <fname>Vanessa</fname> <mi>C.</mi> @@ -15489,28 +15489,28 @@ <address3></address3> <address4></address4> <city>Imperial Beach</city> - <state_province>CA</state_province> - <postal_code>69245</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>69245</postalCode> <country>USA</country> <phone1>391-555-1038</phone1> <phone2>987-555-2402</phone2> <birthdate>10.01.1930</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-03-02</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-03-02</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Vanessa Tench</fullname> <test></test> </Customer> <Customer> - <account_num>93160747885</account_num> + <accountNum>93160747885</accountNum> <lname>Brink</lname> <fname>Carol</fname> <mi>A.</mi> @@ -15519,28 +15519,28 @@ <address3></address3> <address4></address4> <city>San Francisco</city> - <state_province>CA</state_province> - <postal_code>96150</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>96150</postalCode> <country>USA</country> <phone1>488-555-7645</phone1> <phone2>953-555-7866</phone2> <birthdate>22.04.1920</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-10-23</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-10-23</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Carol Brink</fullname> <test></test> </Customer> <Customer> - <account_num>93195058703</account_num> + <accountNum>93195058703</accountNum> <lname>Reynolds</lname> <fname>Adam</fname> <mi>T.</mi> @@ -15549,28 +15549,28 @@ <address3></address3> <address4></address4> <city>Lebanon</city> - <state_province>OR</state_province> - <postal_code>64427</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>64427</postalCode> <country>USA</country> <phone1>760-555-3652</phone1> <phone2>764-555-4559</phone2> <birthdate>27.11.1914</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-10-20</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1992-10-20</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Adam Reynolds</fullname> <test></test> </Customer> <Customer> - <account_num>93203491568</account_num> + <accountNum>93203491568</accountNum> <lname>Posner</lname> <fname>Constance</fname> <mi>M.</mi> @@ -15579,28 +15579,28 @@ <address3></address3> <address4></address4> <city>Issaquah</city> - <state_province>WA</state_province> - <postal_code>47107</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>47107</postalCode> <country>USA</country> <phone1>218-555-3545</phone1> <phone2>991-555-3309</phone2> <birthdate>23.06.1972</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-06-14</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-06-14</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Constance Posner</fullname> <test></test> </Customer> <Customer> - <account_num>93239116668</account_num> + <accountNum>93239116668</accountNum> <lname>Hapke</lname> <fname>William</fname> <mi>D.</mi> @@ -15609,28 +15609,28 @@ <address3></address3> <address4></address4> <city>Merida</city> - <state_province>Yucatan</state_province> - <postal_code>54253</postal_code> + <stateProvince>Yucatan</stateProvince> + <postalCode>54253</postalCode> <country>Mexico</country> <phone1>514-555-7181</phone1> <phone2>164-555-2288</phone2> <birthdate>26.07.1969</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-06-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-06-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>William Hapke</fullname> <test></test> </Customer> <Customer> - <account_num>93248279094</account_num> + <accountNum>93248279094</accountNum> <lname>Huff</lname> <fname>Joshua</fname> <mi>A.</mi> @@ -15639,28 +15639,28 @@ <address3></address3> <address4></address4> <city>Beverly Hills</city> - <state_province>CA</state_province> - <postal_code>30955</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>30955</postalCode> <country>USA</country> <phone1>895-555-5702</phone1> <phone2>414-555-8667</phone2> <birthdate>13.04.1970</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-03-22</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-03-22</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Joshua Huff</fullname> <test></test> </Customer> <Customer> - <account_num>93259233236</account_num> + <accountNum>93259233236</accountNum> <lname>Brown</lname> <fname>Carolee</fname> <mi>J.</mi> @@ -15669,28 +15669,28 @@ <address3></address3> <address4></address4> <city>San Carlos</city> - <state_province>CA</state_province> - <postal_code>26954</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>26954</postalCode> <country>USA</country> <phone1>552-555-2624</phone1> <phone2>510-555-6274</phone2> <birthdate>17.02.1937</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-08-26</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-08-26</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Carolee Brown</fullname> <test></test> </Customer> <Customer> - <account_num>93268470764</account_num> + <accountNum>93268470764</accountNum> <lname>Giglio</lname> <fname>Frances</fname> <mi>J.</mi> @@ -15699,28 +15699,28 @@ <address3></address3> <address4></address4> <city>Acapulco</city> - <state_province>Guerrero</state_province> - <postal_code>89405</postal_code> + <stateProvince>Guerrero</stateProvince> + <postalCode>89405</postalCode> <country>Mexico</country> <phone1>295-555-3431</phone1> <phone2>783-555-2281</phone2> <birthdate>09.07.1930</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-10-22</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-10-22</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Frances Giglio</fullname> <test></test> </Customer> <Customer> - <account_num>93292975400</account_num> + <accountNum>93292975400</accountNum> <lname>Sherwood</lname> <fname>Irma</fname> <mi>A.</mi> @@ -15729,28 +15729,28 @@ <address3></address3> <address4></address4> <city>Beaverton</city> - <state_province>OR</state_province> - <postal_code>28874</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>28874</postalCode> <country>USA</country> <phone1>876-555-7981</phone1> <phone2>361-555-4196</phone2> <birthdate>06.02.1964</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-07-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-07-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Irma Sherwood</fullname> <test></test> </Customer> <Customer> - <account_num>93297009468</account_num> + <accountNum>93297009468</accountNum> <lname>Becker</lname> <fname>Benjamin</fname> <mi></mi> @@ -15759,28 +15759,28 @@ <address3></address3> <address4></address4> <city>Acapulco</city> - <state_province>Guerrero</state_province> - <postal_code>90392</postal_code> + <stateProvince>Guerrero</stateProvince> + <postalCode>90392</postalCode> <country>Mexico</country> <phone1>761-555-9439</phone1> <phone2>896-555-2489</phone2> <birthdate>22.05.1976</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-03-04</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-03-04</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Benjamin Becker</fullname> <test></test> </Customer> <Customer> - <account_num>93306327462</account_num> + <accountNum>93306327462</accountNum> <lname>Tedford</lname> <fname>Chad</fname> <mi>R.</mi> @@ -15789,28 +15789,28 @@ <address3></address3> <address4></address4> <city>Daly City</city> - <state_province>CA</state_province> - <postal_code>13669</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>13669</postalCode> <country>USA</country> <phone1>704-555-7275</phone1> <phone2>377-555-1011</phone2> <birthdate>25.04.1916</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-01-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-01-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Clerical</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Chad Tedford</fullname> <test></test> </Customer> <Customer> - <account_num>93316578865</account_num> + <accountNum>93316578865</accountNum> <lname>Roy</lname> <fname>Luke</fname> <mi>S.</mi> @@ -15819,28 +15819,28 @@ <address3></address3> <address4></address4> <city>Ballard</city> - <state_province>WA</state_province> - <postal_code>57381</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>57381</postalCode> <country>USA</country> <phone1>492-555-5339</phone1> <phone2>934-555-6932</phone2> <birthdate>25.11.1927</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-09-19</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1990-09-19</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Luke Roy</fullname> <test></test> </Customer> <Customer> - <account_num>93327248692</account_num> + <accountNum>93327248692</accountNum> <lname>Holloway</lname> <fname>Jean</fname> <mi>C.</mi> @@ -15849,28 +15849,28 @@ <address3></address3> <address4></address4> <city>Haney</city> - <state_province>BC</state_province> - <postal_code>28173</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>28173</postalCode> <country>Canada</country> <phone1>457-555-1803</phone1> <phone2>438-555-4082</phone2> <birthdate>27.04.1940</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-01-24</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-01-24</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Jean Holloway</fullname> <test></test> </Customer> <Customer> - <account_num>93365041017</account_num> + <accountNum>93365041017</accountNum> <lname>Trau</lname> <fname>Olga</fname> <mi>C.</mi> @@ -15879,28 +15879,28 @@ <address3></address3> <address4></address4> <city>Lynnwood</city> - <state_province>WA</state_province> - <postal_code>13369</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>13369</postalCode> <country>USA</country> <phone1>269-555-7496</phone1> <phone2>358-555-3289</phone2> <birthdate>18.12.1962</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-06-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-06-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Olga Trau</fullname> <test></test> </Customer> <Customer> - <account_num>93425782300</account_num> + <accountNum>93425782300</accountNum> <lname>Carnes</lname> <fname>Steve</fname> <mi></mi> @@ -15909,28 +15909,28 @@ <address3></address3> <address4></address4> <city>Marysville</city> - <state_province>WA</state_province> - <postal_code>49322</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>49322</postalCode> <country>USA</country> <phone1>496-555-6246</phone1> <phone2>784-555-8068</phone2> <birthdate>17.05.1950</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-06-06</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-06-06</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Steve Carnes</fullname> <test></test> </Customer> <Customer> - <account_num>93437905907</account_num> + <accountNum>93437905907</accountNum> <lname>Potts</lname> <fname>Betty</fname> <mi>E.</mi> @@ -15939,28 +15939,28 @@ <address3></address3> <address4></address4> <city>Camacho</city> - <state_province>Zacatecas</state_province> - <postal_code>99678</postal_code> + <stateProvince>Zacatecas</stateProvince> + <postalCode>99678</postalCode> <country>Mexico</country> <phone1>569-555-5225</phone1> <phone2>727-555-5903</phone2> <birthdate>03.06.1953</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-08-06</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-08-06</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Betty Potts</fullname> <test></test> </Customer> <Customer> - <account_num>93467839360</account_num> + <accountNum>93467839360</accountNum> <lname>Kozlowski</lname> <fname>Edward</fname> <mi>T.</mi> @@ -15969,28 +15969,28 @@ <address3></address3> <address4></address4> <city>Merida</city> - <state_province>Yucatan</state_province> - <postal_code>27943</postal_code> + <stateProvince>Yucatan</stateProvince> + <postalCode>27943</postalCode> <country>Mexico</country> <phone1>819-555-2604</phone1> <phone2>515-555-3968</phone2> <birthdate>09.09.1945</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-10-16</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-10-16</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Edward Kozlowski</fullname> <test></test> </Customer> <Customer> - <account_num>93476170301</account_num> + <accountNum>93476170301</accountNum> <lname>Looney</lname> <fname>Sharon</fname> <mi></mi> @@ -15999,28 +15999,28 @@ <address3></address3> <address4></address4> <city>Chula Vista</city> - <state_province>CA</state_province> - <postal_code>19313</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>19313</postalCode> <country>USA</country> <phone1>915-555-9211</phone1> <phone2>480-555-9432</phone2> <birthdate>02.11.1979</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-02-07</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1992-02-07</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Sharon Looney</fullname> <test></test> </Customer> <Customer> - <account_num>93481572270</account_num> + <accountNum>93481572270</accountNum> <lname>Magenheimer</lname> <fname>Patrick</fname> <mi></mi> @@ -16029,28 +16029,28 @@ <address3></address3> <address4></address4> <city>Bellflower</city> - <state_province>CA</state_province> - <postal_code>86589</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>86589</postalCode> <country>USA</country> <phone1>288-555-5218</phone1> <phone2>531-555-9782</phone2> <birthdate>04.03.1935</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-04-20</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-04-20</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Patrick Magenheimer</fullname> <test></test> </Customer> <Customer> - <account_num>93485048413</account_num> + <accountNum>93485048413</accountNum> <lname>Hofsetz</lname> <fname>Sue</fname> <mi>A.</mi> @@ -16059,28 +16059,28 @@ <address3></address3> <address4></address4> <city>La Jolla</city> - <state_province>CA</state_province> - <postal_code>42977</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>42977</postalCode> <country>USA</country> <phone1>646-555-5111</phone1> <phone2>519-555-4875</phone2> <birthdate>13.03.1943</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-08-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-08-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Sue Hofsetz</fullname> <test></test> </Customer> <Customer> - <account_num>93517433404</account_num> + <accountNum>93517433404</accountNum> <lname>Gilliat</lname> <fname>Janet</fname> <mi>R.</mi> @@ -16089,28 +16089,28 @@ <address3></address3> <address4></address4> <city>Marysville</city> - <state_province>WA</state_province> - <postal_code>76415</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>76415</postalCode> <country>USA</country> <phone1>408-555-4801</phone1> <phone2>958-555-8909</phone2> <birthdate>25.03.1914</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-02-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-02-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Janet Gilliat</fullname> <test></test> </Customer> <Customer> - <account_num>93565176725</account_num> + <accountNum>93565176725</accountNum> <lname>Wojcik</lname> <fname>Charlene</fname> <mi>S.</mi> @@ -16119,28 +16119,28 @@ <address3></address3> <address4></address4> <city>Cliffside</city> - <state_province>BC</state_province> - <postal_code>97964</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>97964</postalCode> <country>Canada</country> <phone1>789-555-3323</phone1> <phone2>308-555-6287</phone2> <birthdate>09.08.1947</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-06-05</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-06-05</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Clerical</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Charlene Wojcik</fullname> <test></test> </Customer> <Customer> - <account_num>93565879464</account_num> + <accountNum>93565879464</accountNum> <lname>Wolf</lname> <fname>Eunice</fname> <mi>C.</mi> @@ -16149,28 +16149,28 @@ <address3></address3> <address4></address4> <city>Albany</city> - <state_province>OR</state_province> - <postal_code>97563</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>97563</postalCode> <country>USA</country> <phone1>685-555-3902</phone1> <phone2>404-555-3894</phone2> <birthdate>10.02.1946</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-10-18</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-10-18</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Eunice Wolf</fullname> <test></test> </Customer> <Customer> - <account_num>93567397594</account_num> + <accountNum>93567397594</accountNum> <lname>Whitworth</lname> <fname>Kelly</fname> <mi>M.</mi> @@ -16179,28 +16179,28 @@ <address3></address3> <address4></address4> <city>Bellflower</city> - <state_province>CA</state_province> - <postal_code>85275</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>85275</postalCode> <country>USA</country> <phone1>189-555-1051</phone1> <phone2>916-555-3559</phone2> <birthdate>27.04.1971</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-09-11</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-09-11</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Kelly Whitworth</fullname> <test></test> </Customer> <Customer> - <account_num>93571109771</account_num> + <accountNum>93571109771</accountNum> <lname>Thames</lname> <fname>Judy</fname> <mi>J.</mi> @@ -16209,28 +16209,28 @@ <address3></address3> <address4></address4> <city>Langley</city> - <state_province>BC</state_province> - <postal_code>51036</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>51036</postalCode> <country>Canada</country> <phone1>769-555-5601</phone1> <phone2>135-555-8794</phone2> <birthdate>05.10.1979</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-11-08</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-11-08</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Judy Thames</fullname> <test></test> </Customer> <Customer> - <account_num>93580926656</account_num> + <accountNum>93580926656</accountNum> <lname>Rusek</lname> <fname>Pearlie</fname> <mi>L.</mi> @@ -16239,28 +16239,28 @@ <address3></address3> <address4></address4> <city>Palo Alto</city> - <state_province>CA</state_province> - <postal_code>49095</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>49095</postalCode> <country>USA</country> <phone1>535-555-5037</phone1> <phone2>670-555-7087</phone2> <birthdate>02.11.1965</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1994-03-04</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-03-04</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Pearlie Rusek</fullname> <test></test> </Customer> <Customer> - <account_num>93600887656</account_num> + <accountNum>93600887656</accountNum> <lname>Justice</lname> <fname>Peggy</fname> <mi>C.</mi> @@ -16269,28 +16269,28 @@ <address3></address3> <address4></address4> <city>Burlingame</city> - <state_province>CA</state_province> - <postal_code>35831</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>35831</postalCode> <country>USA</country> <phone1>477-555-2873</phone1> <phone2>150-555-5609</phone2> <birthdate>03.08.1937</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1991-09-16</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-09-16</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Peggy Justice</fullname> <test></test> </Customer> <Customer> - <account_num>93609390258</account_num> + <accountNum>93609390258</accountNum> <lname>Conner</lname> <fname>William</fname> <mi>J.</mi> @@ -16299,28 +16299,28 @@ <address3></address3> <address4></address4> <city>Pomona</city> - <state_province>CA</state_province> - <postal_code>53540</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>53540</postalCode> <country>USA</country> <phone1>266-555-9937</phone1> <phone2>708-555-2530</phone2> <birthdate>16.08.1968</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-02-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-02-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>William Conner</fullname> <test></test> </Customer> <Customer> - <account_num>93615929484</account_num> + <accountNum>93615929484</accountNum> <lname>Bauer</lname> <fname>Ciro</fname> <mi>C.</mi> @@ -16329,28 +16329,28 @@ <address3></address3> <address4></address4> <city>Camacho</city> - <state_province>Zacatecas</state_province> - <postal_code>24333</postal_code> + <stateProvince>Zacatecas</stateProvince> + <postalCode>24333</postalCode> <country>Mexico</country> <phone1>231-555-6401</phone1> <phone2>212-555-8680</phone2> <birthdate>26.12.1955</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-05-24</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-05-24</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Ciro Bauer</fullname> <test></test> </Customer> <Customer> - <account_num>93623573800</account_num> + <accountNum>93623573800</accountNum> <lname>Collins</lname> <fname>Takiko</fname> <mi></mi> @@ -16359,28 +16359,28 @@ <address3></address3> <address4></address4> <city>Spokane</city> - <state_province>WA</state_province> - <postal_code>95286</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>95286</postalCode> <country>USA</country> <phone1>942-555-3094</phone1> <phone2>131-555-7887</phone2> <birthdate>14.05.1939</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-06-16</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-06-16</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Takiko Collins</fullname> <test></test> </Customer> <Customer> - <account_num>93644752502</account_num> + <accountNum>93644752502</accountNum> <lname>Smith</lname> <fname>Leonard</fname> <mi>L.</mi> @@ -16389,28 +16389,28 @@ <address3></address3> <address4></address4> <city>El Cajon</city> - <state_province>CA</state_province> - <postal_code>45481</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>45481</postalCode> <country>USA</country> <phone1>269-555-1844</phone1> <phone2>558-555-3666</phone2> <birthdate>14.03.1955</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-03-27</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-03-27</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Leonard Smith</fullname> <test></test> </Customer> <Customer> - <account_num>93673430681</account_num> + <accountNum>93673430681</accountNum> <lname>Yasi</lname> <fname>Lenore</fname> <mi></mi> @@ -16419,28 +16419,28 @@ <address3></address3> <address4></address4> <city>San Jose</city> - <state_province>CA</state_province> - <postal_code>95838</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>95838</postalCode> <country>USA</country> <phone1>343-555-9823</phone1> <phone2>500-555-1501</phone2> <birthdate>07.04.1932</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-01-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-01-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Lenore Yasi</fullname> <test></test> </Customer> <Customer> - <account_num>93681718707</account_num> + <accountNum>93681718707</accountNum> <lname>Bowman</lname> <fname>Lester</fname> <mi>W.</mi> @@ -16449,28 +16449,28 @@ <address3></address3> <address4></address4> <city>San Jose</city> - <state_province>CA</state_province> - <postal_code>97953</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>97953</postalCode> <country>USA</country> <phone1>593-555-7201</phone1> <phone2>289-555-8566</phone2> <birthdate>11.03.1956</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-10-05</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-10-05</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Lester Bowman</fullname> <test></test> </Customer> <Customer> - <account_num>93697350621</account_num> + <accountNum>93697350621</accountNum> <lname>Germanson</lname> <fname>Barbara</fname> <mi></mi> @@ -16479,28 +16479,28 @@ <address3></address3> <address4></address4> <city>San Jose</city> - <state_province>CA</state_province> - <postal_code>88180</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>88180</postalCode> <country>USA</country> <phone1>801-555-7068</phone1> <phone2>366-555-7290</phone2> <birthdate>02.01.1952</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-07-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Barbara Germanson</fullname> <test></test> </Customer> <Customer> - <account_num>93699528574</account_num> + <accountNum>93699528574</accountNum> <lname>Smith</lname> <fname>Mary</fname> <mi></mi> @@ -16509,28 +16509,28 @@ <address3></address3> <address4></address4> <city>San Francisco</city> - <state_province>CA</state_province> - <postal_code>56456</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>56456</postalCode> <country>USA</country> <phone1>174-555-3075</phone1> <phone2>416-555-7640</phone2> <birthdate>28.02.1940</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-06-22</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-06-22</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Mary Smith</fullname> <test></test> </Customer> <Customer> - <account_num>93714103700</account_num> + <accountNum>93714103700</accountNum> <lname>Serventi</lname> <fname>Alice</fname> <mi></mi> @@ -16539,28 +16539,28 @@ <address3></address3> <address4></address4> <city>Newport Beach</city> - <state_province>CA</state_province> - <postal_code>39137</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>39137</postalCode> <country>USA</country> <phone1>532-555-2968</phone1> <phone2>404-555-2733</phone2> <birthdate>18.12.1922</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-09-22</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-09-22</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Alice Serventi</fullname> <test></test> </Customer> <Customer> - <account_num>93737181425</account_num> + <accountNum>93737181425</accountNum> <lname>Chapla</lname> <fname>Lee</fname> <mi>D.</mi> @@ -16569,28 +16569,28 @@ <address3></address3> <address4></address4> <city>Haney</city> - <state_province>BC</state_province> - <postal_code>72574</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>72574</postalCode> <country>Canada</country> <phone1>166-555-1261</phone1> <phone2>478-555-1711</phone2> <birthdate>16.06.1913</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-05-06</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-05-06</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Lee Chapla</fullname> <test></test> </Customer> <Customer> - <account_num>93747507929</account_num> + <accountNum>93747507929</accountNum> <lname>Cameron</lname> <fname>DeeDee</fname> <mi></mi> @@ -16599,28 +16599,28 @@ <address3></address3> <address4></address4> <city>Victoria</city> - <state_province>BC</state_province> - <postal_code>94124</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>94124</postalCode> <country>Canada</country> <phone1>308-555-5125</phone1> <phone2>728-555-8090</phone2> <birthdate>08.10.1920</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-06-03</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-06-03</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>DeeDee Cameron</fullname> <test></test> </Customer> <Customer> - <account_num>93766240500</account_num> + <accountNum>93766240500</accountNum> <lname>Zgeirmann</lname> <fname>Jo</fname> <mi></mi> @@ -16629,28 +16629,28 @@ <address3></address3> <address4></address4> <city>Marysville</city> - <state_province>WA</state_province> - <postal_code>93723</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>93723</postalCode> <country>USA</country> <phone1>205-555-5704</phone1> <phone2>824-555-5697</phone2> <birthdate>18.04.1963</birthdate> - <marital_status>S</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1992-07-13</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-07-13</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Jo Zgeirmann</fullname> <test></test> </Customer> <Customer> - <account_num>93778036832</account_num> + <accountNum>93778036832</accountNum> <lname>Mondragon</lname> <fname>William</fname> <mi></mi> @@ -16659,28 +16659,28 @@ <address3></address3> <address4></address4> <city>Milwaukie</city> - <state_province>OR</state_province> - <postal_code>81434</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>81434</postalCode> <country>USA</country> <phone1>609-555-2854</phone1> <phone2>436-555-5361</phone2> <birthdate>04.01.1950</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-02-03</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-02-03</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>William Mondragon</fullname> <test></test> </Customer> <Customer> - <account_num>93784973025</account_num> + <accountNum>93784973025</accountNum> <lname>Allison</lname> <fname>Cecil</fname> <mi>C.</mi> @@ -16689,28 +16689,28 @@ <address3></address3> <address4></address4> <city>Shawnee</city> - <state_province>BC</state_province> - <postal_code>47196</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>47196</postalCode> <country>Canada</country> <phone1>289-555-7404</phone1> <phone2>555-555-1597</phone2> <birthdate>07.04.1920</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-07-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-07-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Cecil Allison</fullname> <test></test> </Customer> <Customer> - <account_num>93817331200</account_num> + <accountNum>93817331200</accountNum> <lname>Vargas</lname> <fname>Nieves</fname> <mi></mi> @@ -16719,28 +16719,28 @@ <address3></address3> <address4></address4> <city>San Gabriel</city> - <state_province>CA</state_province> - <postal_code>10695</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>10695</postalCode> <country>USA</country> <phone1>955-555-6840</phone1> <phone2>189-555-8890</phone2> <birthdate>01.02.1938</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-06-12</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-06-12</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Nieves Vargas</fullname> <test></test> </Customer> <Customer> - <account_num>93820828795</account_num> + <accountNum>93820828795</accountNum> <lname>Vlass</lname> <fname>Helen</fname> <mi></mi> @@ -16749,28 +16749,28 @@ <address3></address3> <address4></address4> <city>Glendale</city> - <state_province>CA</state_province> - <postal_code>56995</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>56995</postalCode> <country>USA</country> <phone1>897-555-4676</phone1> <phone2>570-555-7411</phone2> <birthdate>26.06.1942</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-09-21</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-09-21</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Helen Vlass</fullname> <test></test> </Customer> <Customer> - <account_num>93868003487</account_num> + <accountNum>93868003487</accountNum> <lname>Gonzalez</lname> <fname>Abigail</fname> <mi>R.</mi> @@ -16779,28 +16779,28 @@ <address3></address3> <address4></address4> <city>Burlingame</city> - <state_province>CA</state_province> - <postal_code>69533</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>69533</postalCode> <country>USA</country> <phone1>686-555-2740</phone1> <phone2>228-555-4333</phone2> <birthdate>20.05.1947</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-12-28</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-12-28</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Abigail Gonzalez</fullname> <test></test> </Customer> <Customer> - <account_num>93870095610</account_num> + <accountNum>93870095610</accountNum> <lname>Ison</lname> <fname>Denean</fname> <mi>L.</mi> @@ -16809,28 +16809,28 @@ <address3></address3> <address4></address4> <city>National City</city> - <state_province>CA</state_province> - <postal_code>40325</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>40325</postalCode> <country>USA</country> <phone1>651-555-8204</phone1> <phone2>632-555-1483</phone2> <birthdate>17.03.1954</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-11-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-11-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Denean Ison</fullname> <test></test> </Customer> <Customer> - <account_num>93892143368</account_num> + <accountNum>93892143368</accountNum> <lname>Trent</lname> <fname>Billy</fname> <mi></mi> @@ -16839,28 +16839,28 @@ <address3></address3> <address4></address4> <city>Pomona</city> - <state_province>CA</state_province> - <postal_code>25521</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>25521</postalCode> <country>USA</country> <phone1>152-555-5472</phone1> <phone2>241-555-1265</phone2> <birthdate>13.07.1912</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-09-27</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1994-09-27</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Billy Trent</fullname> <test></test> </Customer> <Customer> - <account_num>93894476890</account_num> + <accountNum>93894476890</accountNum> <lname>Vaca</lname> <fname>Mary</fname> <mi></mi> @@ -16869,28 +16869,28 @@ <address3></address3> <address4></address4> <city>N. Vancouver</city> - <state_province>BC</state_province> - <postal_code>87766</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>87766</postalCode> <country>Canada</country> <phone1>379-555-4222</phone1> <phone2>668-555-6043</phone2> <birthdate>11.01.1960</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-02-09</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-02-09</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Mary Vaca</fullname> <test></test> </Customer> <Customer> - <account_num>93897743821</account_num> + <accountNum>93897743821</accountNum> <lname>Arbelaez</lname> <fname>Kyley</fname> <mi>K.</mi> @@ -16899,28 +16899,28 @@ <address3></address3> <address4></address4> <city>Chula Vista</city> - <state_province>CA</state_province> - <postal_code>12832</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>12832</postalCode> <country>USA</country> <phone1>453-555-3200</phone1> <phone2>610-555-3879</phone2> <birthdate>15.02.1951</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-11-14</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-11-14</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Kyley Arbelaez</fullname> <test></test> </Customer> <Customer> - <account_num>93930096626</account_num> + <accountNum>93930096626</accountNum> <lname>Lee</lname> <fname>Michael</fname> <mi>R.</mi> @@ -16929,28 +16929,28 @@ <address3></address3> <address4></address4> <city>Lemon Grove</city> - <state_province>CA</state_province> - <postal_code>14947</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>14947</postalCode> <country>USA</country> <phone1>703-555-9579</phone1> <phone2>399-555-1943</phone2> <birthdate>16.08.1937</birthdate> - <marital_status>S</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-06-18</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-06-18</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Michael Lee</fullname> <test></test> </Customer> <Customer> - <account_num>93940916657</account_num> + <accountNum>93940916657</accountNum> <lname>Maes</lname> <fname>Walter</fname> <mi>L.</mi> @@ -16959,28 +16959,28 @@ <address3></address3> <address4></address4> <city>Tixapan</city> - <state_province>DF</state_province> - <postal_code>31465</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>31465</postalCode> <country>Mexico</country> <phone1>799-555-7186</phone1> <phone2>603-555-2065</phone2> <birthdate>15.06.1977</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-05-15</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-05-15</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Walter Maes</fullname> <test></test> </Customer> <Customer> - <account_num>93949950337</account_num> + <accountNum>93949950337</accountNum> <lname>Antrim</lname> <fname>Ramona</fname> <mi></mi> @@ -16989,28 +16989,28 @@ <address3></address3> <address4></address4> <city>Woodburn</city> - <state_province>OR</state_province> - <postal_code>98741</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>98741</postalCode> <country>USA</country> <phone1>172-555-3193</phone1> <phone2>414-555-7758</phone2> <birthdate>11.03.1927</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-11-23</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-11-23</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Ramona Antrim</fullname> <test></test> </Customer> <Customer> - <account_num>93950116634</account_num> + <accountNum>93950116634</accountNum> <lname>Friedland</lname> <fname>Liam</fname> <mi></mi> @@ -17019,28 +17019,28 @@ <address3></address3> <address4></address4> <city>Redmond</city> - <state_province>WA</state_province> - <postal_code>81421</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>81421</postalCode> <country>USA</country> <phone1>530-555-3086</phone1> <phone2>641-555-6508</phone2> <birthdate>25.10.1941</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-11-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-11-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Liam Friedland</fullname> <test></test> </Customer> <Customer> - <account_num>93951489925</account_num> + <accountNum>93951489925</accountNum> <lname>Strange</lname> <fname>Charles</fname> <mi>E.</mi> @@ -17049,28 +17049,28 @@ <address3></address3> <address4></address4> <city>Orizaba</city> - <state_province>Veracruz</state_province> - <postal_code>88567</postal_code> + <stateProvince>Veracruz</stateProvince> + <postalCode>88567</postalCode> <country>Mexico</country> <phone1>164-555-1379</phone1> <phone2>476-555-1829</phone2> <birthdate>04.03.1976</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-06-15</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-06-15</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Charles Strange</fullname> <test></test> </Customer> <Customer> - <account_num>93961097598</account_num> + <accountNum>93961097598</accountNum> <lname>Richter</lname> <fname>William</fname> <mi></mi> @@ -17079,28 +17079,28 @@ <address3></address3> <address4></address4> <city>Redwood City</city> - <state_province>CA</state_province> - <postal_code>37409</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>37409</postalCode> <country>USA</country> <phone1>545-555-8901</phone1> <phone2>725-555-8207</phone2> <birthdate>21.03.1945</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-07-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-07-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>William Richter</fullname> <test></test> </Customer> <Customer> - <account_num>93968881368</account_num> + <accountNum>93968881368</accountNum> <lname>Amland</lname> <fname>Maxwell</fname> <mi>A.</mi> @@ -17109,28 +17109,28 @@ <address3></address3> <address4></address4> <city>Chula Vista</city> - <state_province>CA</state_province> - <postal_code>10717</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>10717</postalCode> <country>USA</country> <phone1>203-555-5822</phone1> <phone2>822-555-5815</phone2> <birthdate>28.05.1950</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>5</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>5</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-04-27</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-04-27</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Maxwell Amland</fullname> <test></test> </Customer> <Customer> - <account_num>93980382680</account_num> + <accountNum>93980382680</accountNum> <lname>Albury</lname> <fname>Z . T. Milton</fname> <mi></mi> @@ -17139,28 +17139,28 @@ <address3></address3> <address4></address4> <city>Shawnee</city> - <state_province>BC</state_province> - <postal_code>24720</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>24720</postalCode> <country>Canada</country> <phone1>606-555-2972</phone1> <phone2>433-555-5479</phone2> <birthdate>23.02.1911</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-09-26</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-09-26</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Z . T. Milton Albury</fullname> <test></test> </Customer> <Customer> - <account_num>93987635400</account_num> + <accountNum>93987635400</accountNum> <lname>Richmeier</lname> <fname>Marie</fname> <mi></mi> @@ -17169,28 +17169,28 @@ <address3></address3> <address4></address4> <city>Milwaukie</city> - <state_province>OR</state_province> - <postal_code>63188</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>63188</postalCode> <country>USA</country> <phone1>526-555-2179</phone1> <phone2>552-555-1715</phone2> <birthdate>22.01.1913</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-08-01</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-08-01</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Marie Richmeier</fullname> <test></test> </Customer> <Customer> - <account_num>94008481502</account_num> + <accountNum>94008481502</accountNum> <lname>Jacobson</lname> <fname>Jodan</fname> <mi>C.</mi> @@ -17199,28 +17199,28 @@ <address3></address3> <address4></address4> <city>Westminster</city> - <state_province>BC</state_province> - <postal_code>17061</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>17061</postalCode> <country>Canada</country> <phone1>165-555-9217</phone1> <phone2>299-555-2267</phone2> <birthdate>14.07.1963</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-07-02</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-07-02</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Jodan Jacobson</fullname> <test></test> </Customer> <Customer> - <account_num>94026924400</account_num> + <accountNum>94026924400</accountNum> <lname>Bartness</lname> <fname>David</fname> <mi></mi> @@ -17229,28 +17229,28 @@ <address3></address3> <address4></address4> <city>Tixapan</city> - <state_province>DF</state_province> - <postal_code>47984</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>47984</postalCode> <country>Mexico</country> <phone1>107-555-7053</phone1> <phone2>680-555-9789</phone2> <birthdate>09.07.1930</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-06-09</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-06-09</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>David Bartness</fullname> <test></test> </Customer> <Customer> - <account_num>94034107327</account_num> + <accountNum>94034107327</accountNum> <lname>Cobb</lname> <fname>Teanna</fname> <mi>J.</mi> @@ -17259,28 +17259,28 @@ <address3></address3> <address4></address4> <city>Grossmont</city> - <state_province>CA</state_province> - <postal_code>67018</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>67018</postalCode> <country>USA</country> <phone1>796-555-5117</phone1> <phone2>338-555-6710</phone2> <birthdate>28.03.1966</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-06-09</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-06-09</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Teanna Cobb</fullname> <test></test> </Customer> <Customer> - <account_num>94036955833</account_num> + <accountNum>94036955833</accountNum> <lname>Lique</lname> <fname>M. E. Joseph</fname> <mi></mi> @@ -17289,28 +17289,28 @@ <address3></address3> <address4></address4> <city>Richmond</city> - <state_province>BC</state_province> - <postal_code>38225</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>38225</postalCode> <country>Canada</country> <phone1>761-555-1582</phone1> <phone2>742-555-3860</phone2> <birthdate>05.11.1947</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-02-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-02-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>M. E. Joseph Lique</fullname> <test></test> </Customer> <Customer> - <account_num>94056804180</account_num> + <accountNum>94056804180</accountNum> <lname>Bernacchi</lname> <fname>Robert</fname> <mi>J.</mi> @@ -17319,28 +17319,28 @@ <address3></address3> <address4></address4> <city>Albany</city> - <state_province>OR</state_province> - <postal_code>23421</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>23421</postalCode> <country>USA</country> <phone1>811-555-1932</phone1> <phone2>661-555-3067</phone2> <birthdate>26.11.1937</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-04-25</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-04-25</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Robert Bernacchi</fullname> <test></test> </Customer> <Customer> - <account_num>94057115316</account_num> + <accountNum>94057115316</accountNum> <lname>Zubaty</lname> <fname>Patricia</fname> <mi>D.</mi> @@ -17349,28 +17349,28 @@ <address3></address3> <address4></address4> <city>Anacortes</city> - <state_province>WA</state_province> - <postal_code>59374</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>59374</postalCode> <country>USA</country> <phone1>799-555-6024</phone1> <phone2>188-555-7846</phone2> <birthdate>05.05.1959</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1994-08-14</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-08-14</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Patricia Zubaty</fullname> <test></test> </Customer> <Customer> - <account_num>94057281613</account_num> + <accountNum>94057281613</accountNum> <lname>Hunter</lname> <fname>Matthew</fname> <mi>K.</mi> @@ -17379,28 +17379,28 @@ <address3></address3> <address4></address4> <city>Salem</city> - <state_province>OR</state_province> - <postal_code>10732</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>10732</postalCode> <country>USA</country> <phone1>872-555-5003</phone1> <phone2>130-555-5682</phone2> <birthdate>20.10.1930</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1990-10-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-10-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Matthew Hunter</fullname> <test></test> </Customer> <Customer> - <account_num>94062458276</account_num> + <accountNum>94062458276</accountNum> <lname>Vonholt</lname> <fname>Florence</fname> <mi></mi> @@ -17409,28 +17409,28 @@ <address3></address3> <address4></address4> <city>Langford</city> - <state_province>BC</state_province> - <postal_code>12847</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>12847</postalCode> <country>Canada</country> <phone1>222-555-2382</phone1> <phone2>818-555-3746</phone2> <birthdate>18.02.1948</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-04-18</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-04-18</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Florence Vonholt</fullname> <test></test> </Customer> <Customer> - <account_num>94064389467</account_num> + <accountNum>94064389467</accountNum> <lname>Holmes</lname> <fname>Eddie</fname> <mi>C.</mi> @@ -17439,28 +17439,28 @@ <address3></address3> <address4></address4> <city>National City</city> - <state_province>CA</state_province> - <postal_code>29365</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>29365</postalCode> <country>USA</country> <phone1>319-555-8989</phone1> <phone2>123-555-3868</phone2> <birthdate>14.08.1950</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-11-13</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-11-13</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Eddie Holmes</fullname> <test></test> </Customer> <Customer> - <account_num>94083991100</account_num> + <accountNum>94083991100</accountNum> <lname>Drury</lname> <fname>Gerald</fname> <mi>E.</mi> @@ -17469,28 +17469,28 @@ <address3></address3> <address4></address4> <city>Arcadia</city> - <state_province>CA</state_province> - <postal_code>96641</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>96641</postalCode> <country>USA</country> <phone1>830-555-8653</phone1> <phone2>834-555-9560</phone2> <birthdate>19.04.1944</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>5</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>5</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1993-02-18</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-02-18</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Gerald Drury</fullname> <test></test> </Customer> <Customer> - <account_num>94084634780</account_num> + <accountNum>94084634780</accountNum> <lname>Watts</lname> <fname>Kristin</fname> <mi>B.</mi> @@ -17499,28 +17499,28 @@ <address3></address3> <address4></address4> <city>San Francisco</city> - <state_province>CA</state_province> - <postal_code>53029</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>53029</postalCode> <country>USA</country> <phone1>949-555-4889</phone1> <phone2>161-555-8310</phone2> <birthdate>03.07.1920</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-02-23</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-02-23</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Kristin Watts</fullname> <test></test> </Customer> <Customer> - <account_num>94093673825</account_num> + <accountNum>94093673825</accountNum> <lname>Short</lname> <fname>Carlos</fname> <mi>J.</mi> @@ -17529,28 +17529,28 @@ <address3></address3> <address4></address4> <city>Richmond</city> - <state_province>CA</state_province> - <postal_code>86467</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>86467</postalCode> <country>USA</country> <phone1>584-555-3182</phone1> <phone2>895-555-3632</phone2> <birthdate>06.08.1917</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-02-02</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-02-02</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Carlos Short</fullname> <test></test> </Customer> <Customer> - <account_num>94101892113</account_num> + <accountNum>94101892113</accountNum> <lname>Mc Guigan</lname> <fname>Robin</fname> <mi>E.</mi> @@ -17559,28 +17559,28 @@ <address3></address3> <address4></address4> <city>Lakewood</city> - <state_province>CA</state_province> - <postal_code>90175</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>90175</postalCode> <country>USA</country> <phone1>965-555-1703</phone1> <phone2>245-555-1010</phone2> <birthdate>20.05.1918</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-10-03</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-10-03</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Robin Mc Guigan</fullname> <test></test> </Customer> <Customer> - <account_num>94122341275</account_num> + <accountNum>94122341275</accountNum> <lname>Wollesen</lname> <fname>Dorothy</fname> <mi>A.</mi> @@ -17589,28 +17589,28 @@ <address3></address3> <address4></address4> <city>W. Linn</city> - <state_province>OR</state_province> - <postal_code>86173</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>86173</postalCode> <country>USA</country> <phone1>976-555-4463</phone1> <phone2>934-555-8113</phone2> <birthdate>24.03.1955</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1990-06-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-06-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Dorothy Wollesen</fullname> <test></test> </Customer> <Customer> - <account_num>94163518548</account_num> + <accountNum>94163518548</accountNum> <lname>Lee</lname> <fname>Marjorie</fname> <mi>B.</mi> @@ -17619,28 +17619,28 @@ <address3></address3> <address4></address4> <city>Altadena</city> - <state_province>CA</state_province> - <postal_code>95327</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>95327</postalCode> <country>USA</country> <phone1>480-555-1613</phone1> <phone2>307-555-4120</phone2> <birthdate>17.08.1948</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-08-17</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-08-17</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Marjorie Lee</fullname> <test></test> </Customer> <Customer> - <account_num>94164462685</account_num> + <accountNum>94164462685</accountNum> <lname>Gimmi</lname> <fname>Mary</fname> <mi></mi> @@ -17649,28 +17649,28 @@ <address3></address3> <address4></address4> <city>Yakima</city> - <state_province>WA</state_province> - <postal_code>61088</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>61088</postalCode> <country>USA</country> <phone1>400-555-9820</phone1> <phone2>426-555-9356</phone2> <birthdate>24.07.1924</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-06-01</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-06-01</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Mary Gimmi</fullname> <test></test> </Customer> <Customer> - <account_num>94168695200</account_num> + <accountNum>94168695200</accountNum> <lname>Pugh</lname> <fname>Milton</fname> <mi></mi> @@ -17679,28 +17679,28 @@ <address3></address3> <address4></address4> <city>Berkeley</city> - <state_province>CA</state_province> - <postal_code>14962</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>14962</postalCode> <country>USA</country> <phone1>826-555-5598</phone1> <phone2>961-555-7648</phone2> <birthdate>26.08.1928</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-01-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-01-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Milton Pugh</fullname> <test></test> </Customer> <Customer> - <account_num>94197571873</account_num> + <accountNum>94197571873</accountNum> <lname>Bennetts</lname> <fname>John</fname> <mi>K.</mi> @@ -17709,28 +17709,28 @@ <address3></address3> <address4></address4> <city>San Jose</city> - <state_province>CA</state_province> - <postal_code>19592</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>19592</postalCode> <country>USA</country> <phone1>768-555-3434</phone1> <phone2>442-555-6170</phone2> <birthdate>03.08.1939</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-11-14</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-11-14</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>John Bennetts</fullname> <test></test> </Customer> <Customer> - <account_num>94210612773</account_num> + <accountNum>94210612773</accountNum> <lname>Woodard</lname> <fname>Caroline</fname> <mi>C.</mi> @@ -17739,28 +17739,28 @@ <address3></address3> <address4></address4> <city>Torrance</city> - <state_province>CA</state_province> - <postal_code>38626</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>38626</postalCode> <country>USA</country> <phone1>557-555-1499</phone1> <phone2>999-555-3091</phone2> <birthdate>18.11.1937</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-04-01</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-04-01</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Caroline Woodard</fullname> <test></test> </Customer> <Customer> - <account_num>94222849011</account_num> + <accountNum>94222849011</accountNum> <lname>Manzanares</lname> <fname>Tomas</fname> <mi>A.</mi> @@ -17769,28 +17769,28 @@ <address3></address3> <address4></address4> <city>Portland</city> - <state_province>OR</state_province> - <postal_code>35710</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>35710</postalCode> <country>USA</country> <phone1>522-555-6963</phone1> <phone2>503-555-9241</phone2> <birthdate>20.05.1950</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-11-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-11-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Tomas Manzanares</fullname> <test></test> </Customer> <Customer> - <account_num>94223197698</account_num> + <accountNum>94223197698</accountNum> <lname>Stotler</lname> <fname>Kayla</fname> <mi>R.</mi> @@ -17799,28 +17799,28 @@ <address3></address3> <address4></address4> <city>Marysville</city> - <state_province>WA</state_province> - <postal_code>90383</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>90383</postalCode> <country>USA</country> <phone1>573-555-7313</phone1> <phone2>422-555-8449</phone2> <birthdate>11.01.1972</birthdate> - <marital_status>S</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-05-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-05-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Kayla Stotler</fullname> <test></test> </Customer> <Customer> - <account_num>94239934682</account_num> + <accountNum>94239934682</accountNum> <lname>Peoples</lname> <fname>Elizabeth</fname> <mi>A.</mi> @@ -17829,28 +17829,28 @@ <address3></address3> <address4></address4> <city>La Mesa</city> - <state_province>CA</state_province> - <postal_code>27337</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>27337</postalCode> <country>USA</country> <phone1>561-555-2406</phone1> <phone2>188-555-7884</phone2> <birthdate>14.03.1956</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1992-05-26</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-05-26</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Elizabeth Peoples</fullname> <test></test> </Customer> <Customer> - <account_num>94247815012</account_num> + <accountNum>94247815012</accountNum> <lname>Choi</lname> <fname>Mike</fname> <mi></mi> @@ -17859,28 +17859,28 @@ <address3></address3> <address4></address4> <city>Fremont</city> - <state_province>CA</state_province> - <postal_code>77694</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>77694</postalCode> <country>USA</country> <phone1>634-555-1384</phone1> <phone2>130-555-5720</phone2> <birthdate>26.05.1959</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-04-15</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-04-15</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Mike Choi</fullname> <test></test> </Customer> <Customer> - <account_num>94250379204</account_num> + <accountNum>94250379204</accountNum> <lname>Quintana</lname> <fname>Mary Lou</fname> <mi></mi> @@ -17889,28 +17889,28 @@ <address3></address3> <address4></address4> <city>Fremont</city> - <state_province>CA</state_province> - <postal_code>79809</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>79809</postalCode> <country>USA</country> <phone1>884-555-7763</phone1> <phone2>580-555-9127</phone2> <birthdate>06.07.1951</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-04-10</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-04-10</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Mary Lou Quintana</fullname> <test></test> </Customer> <Customer> - <account_num>94256001114</account_num> + <accountNum>94256001114</accountNum> <lname>Bright</lname> <fname>Christopher</fname> <mi>L.</mi> @@ -17919,28 +17919,28 @@ <address3></address3> <address4></address4> <city>Issaquah</city> - <state_province>WA</state_province> - <postal_code>70035</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>70035</postalCode> <country>USA</country> <phone1>980-555-5370</phone1> <phone2>784-555-9249</phone2> <birthdate>26.09.1915</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-11-13</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-11-13</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Christopher Bright</fullname> <test></test> </Customer> <Customer> - <account_num>94290885925</account_num> + <accountNum>94290885925</accountNum> <lname>Rodgers</lname> <fname>Scott</fname> <mi>S.</mi> @@ -17949,28 +17949,28 @@ <address3></address3> <address4></address4> <city>Hidalgo</city> - <state_province>Zacatecas</state_province> - <postal_code>38312</postal_code> + <stateProvince>Zacatecas</stateProvince> + <postalCode>38312</postalCode> <country>Mexico</country> <phone1>943-555-1952</phone1> <phone2>947-555-2859</phone2> <birthdate>28.02.1941</birthdate> - <marital_status>M</marital_status> - <yearly_income>$150K +</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$150K +</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-02-26</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-02-26</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Scott Rodgers</fullname> <test></test> </Customer> <Customer> - <account_num>94295037984</account_num> + <accountNum>94295037984</accountNum> <lname>Gates</lname> <fname>Janet</fname> <mi>D.</mi> @@ -17979,28 +17979,28 @@ <address3></address3> <address4></address4> <city>Edmonds</city> - <state_province>WA</state_province> - <postal_code>20992</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>20992</postalCode> <country>USA</country> <phone1>162-555-7187</phone1> <phone2>274-555-1609</phone2> <birthdate>21.04.1961</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-06-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-06-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Janet Gates</fullname> <test></test> </Customer> <Customer> - <account_num>94314880967</account_num> + <accountNum>94314880967</accountNum> <lname>Watkins</lname> <fname>Darren</fname> <mi>E.</mi> @@ -18009,28 +18009,28 @@ <address3></address3> <address4></address4> <city>Walla Walla</city> - <state_province>WA</state_province> - <postal_code>54430</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>54430</postalCode> <country>USA</country> <phone1>697-555-5480</phone1> <phone2>108-555-5930</phone2> <birthdate>21.02.1920</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-05-05</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1994-05-05</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Darren Watkins</fullname> <test></test> </Customer> <Customer> - <account_num>94316458106</account_num> + <accountNum>94316458106</accountNum> <lname>Christensen</lname> <fname>Charles</fname> <mi>L.</mi> @@ -18039,28 +18039,28 @@ <address3></address3> <address4></address4> <city>Santa Fe</city> - <state_province>DF</state_province> - <postal_code>75979</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>75979</postalCode> <country>Mexico</country> <phone1>178-555-4002</phone1> <phone2>597-555-6966</phone2> <birthdate>05.06.1953</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-10-04</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-10-04</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Charles Christensen</fullname> <test></test> </Customer> <Customer> - <account_num>94327047500</account_num> + <accountNum>94327047500</accountNum> <lname>Banks</lname> <fname>Darrell</fname> <mi></mi> @@ -18069,28 +18069,28 @@ <address3></address3> <address4></address4> <city>San Andres</city> - <state_province>DF</state_province> - <postal_code>75579</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>75579</postalCode> <country>Mexico</country> <phone1>735-555-9923</phone1> <phone2>693-555-4573</phone2> <birthdate>18.04.1964</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-11-05</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-11-05</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Darrell Banks</fullname> <test></test> </Customer> <Customer> - <account_num>94335271120</account_num> + <accountNum>94335271120</accountNum> <lname>Carlisle</lname> <fname>Carlton</fname> <mi>T.</mi> @@ -18099,28 +18099,28 @@ <address3></address3> <address4></address4> <city>Yakima</city> - <state_province>WA</state_province> - <postal_code>63290</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>63290</postalCode> <country>USA</country> <phone1>239-555-7073</phone1> <phone2>966-555-9580</phone2> <birthdate>07.05.1919</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-01-09</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-01-09</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Carlton Carlisle</fullname> <test></test> </Customer> <Customer> - <account_num>94353869557</account_num> + <accountNum>94353869557</accountNum> <lname>Tramel</lname> <fname>Abe</fname> <mi>J.</mi> @@ -18129,28 +18129,28 @@ <address3></address3> <address4></address4> <city>Issaquah</city> - <state_province>WA</state_province> - <postal_code>27592</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>27592</postalCode> <country>USA</country> <phone1>158-555-6280</phone1> <phone2>424-555-9473</phone2> <birthdate>01.08.1915</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-07-18</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-07-18</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Abe Tramel</fullname> <test></test> </Customer> <Customer> - <account_num>94360634088</account_num> + <accountNum>94360634088</accountNum> <lname>Curry</lname> <fname>Jose</fname> <mi>S.</mi> @@ -18159,28 +18159,28 @@ <address3></address3> <address4></address4> <city>Bremerton</city> - <state_province>WA</state_province> - <postal_code>81923</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>81923</postalCode> <country>USA</country> <phone1>585-555-2059</phone1> <phone2>720-555-4109</phone2> <birthdate>26.10.1971</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-04-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-04-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Jose Curry</fullname> <test></test> </Customer> <Customer> - <account_num>94369324400</account_num> + <accountNum>94369324400</accountNum> <lname>Haines</lname> <fname>Betty</fname> <mi></mi> @@ -18189,28 +18189,28 @@ <address3></address3> <address4></address4> <city>Bellingham</city> - <state_province>WA</state_province> - <postal_code>86554</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>86554</postalCode> <country>USA</country> <phone1>527-555-8894</phone1> <phone2>200-555-2630</phone2> <birthdate>22.01.1949</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-10-23</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-10-23</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Betty Haines</fullname> <test></test> </Customer> <Customer> - <account_num>94371894001</account_num> + <accountNum>94371894001</accountNum> <lname>Campbell</lname> <fname>Deborah</fname> <mi>L.</mi> @@ -18219,28 +18219,28 @@ <address3></address3> <address4></address4> <city>Beaverton</city> - <state_province>OR</state_province> - <postal_code>65893</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>65893</postalCode> <country>USA</country> <phone1>316-555-6959</phone1> <phone2>758-555-8552</phone2> <birthdate>08.12.1979</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-03-18</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-03-18</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Deborah Campbell</fullname> <test></test> </Customer> <Customer> - <account_num>94377177953</account_num> + <accountNum>94377177953</accountNum> <lname>Whitney</lname> <fname>Catherine</fname> <mi>S.</mi> @@ -18249,28 +18249,28 @@ <address3></address3> <address4></address4> <city>La Jolla</city> - <state_province>CA</state_province> - <postal_code>76380</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>76380</postalCode> <country>USA</country> <phone1>520-555-7080</phone1> <phone2>501-555-9359</phone2> <birthdate>18.05.1966</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-06-04</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-06-04</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Catherine Whitney</fullname> <test></test> </Customer> <Customer> - <account_num>94392026662</account_num> + <accountNum>94392026662</accountNum> <lname>Mitchell</lname> <fname>Neva</fname> <mi>E.</mi> @@ -18279,28 +18279,28 @@ <address3></address3> <address4></address4> <city>Imperial Beach</city> - <state_province>CA</state_province> - <postal_code>61576</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>61576</postalCode> <country>USA</country> <phone1>331-555-3773</phone1> <phone2>181-555-4909</phone2> <birthdate>07.09.1950</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-08-23</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-08-23</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Neva Mitchell</fullname> <test></test> </Customer> <Customer> - <account_num>94396505951</account_num> + <accountNum>94396505951</accountNum> <lname>Dodd</lname> <fname>Cindy</fname> <mi>A.</mi> @@ -18309,28 +18309,28 @@ <address3></address3> <address4></address4> <city>Burnaby</city> - <state_province>BC</state_province> - <postal_code>96204</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>96204</postalCode> <country>Canada</country> <phone1>910-555-8441</phone1> <phone2>298-555-1262</phone2> <birthdate>07.07.1966</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>5</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>5</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-04-07</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-04-07</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Cindy Dodd</fullname> <test></test> </Customer> <Customer> - <account_num>94402787700</account_num> + <accountNum>94402787700</accountNum> <lname>Cereghino</lname> <fname>Stacey</fname> <mi>C.</mi> @@ -18339,28 +18339,28 @@ <address3></address3> <address4></address4> <city>Coronado</city> - <state_province>CA</state_province> - <postal_code>47561</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>47561</postalCode> <country>USA</country> <phone1>744-555-3762</phone1> <phone2>240-555-8098</phone2> <birthdate>27.08.1943</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-03-05</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-03-05</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Stacey Cereghino</fullname> <test></test> </Customer> <Customer> - <account_num>94406601786</account_num> + <accountNum>94406601786</accountNum> <lname>Meyer</lname> <fname>Helen</fname> <mi></mi> @@ -18369,28 +18369,28 @@ <address3></address3> <address4></address4> <city>San Diego</city> - <state_province>CA</state_province> - <postal_code>49676</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>49676</postalCode> <country>USA</country> <phone1>994-555-1140</phone1> <phone2>929-555-6162</phone2> <birthdate>04.07.1967</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-12-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-12-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Helen Meyer</fullname> <test></test> </Customer> <Customer> - <account_num>94414589400</account_num> + <accountNum>94414589400</accountNum> <lname>Stevens</lname> <fname>Olga</fname> <mi></mi> @@ -18399,28 +18399,28 @@ <address3></address3> <address4></address4> <city>Langford</city> - <state_province>BC</state_province> - <postal_code>66195</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>66195</postalCode> <country>Canada</country> <phone1>190-555-7747</phone1> <phone2>894-555-2626</phone2> <birthdate>21.06.1963</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1992-03-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-03-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Olga Stevens</fullname> <test></test> </Customer> <Customer> - <account_num>94423011541</account_num> + <accountNum>94423011541</accountNum> <lname>Campbell</lname> <fname>Joan</fname> <mi></mi> @@ -18429,28 +18429,28 @@ <address3></address3> <address4></address4> <city>Berkeley</city> - <state_province>CA</state_province> - <postal_code>34472</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>34472</postalCode> <country>USA</country> <phone1>702-555-7412</phone1> <phone2>705-555-8319</phone2> <birthdate>21.06.1951</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-09-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-09-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Joan Campbell</fullname> <test></test> </Customer> <Customer> - <account_num>94425151944</account_num> + <accountNum>94425151944</accountNum> <lname>Walker</lname> <fname>Silvia</fname> <mi></mi> @@ -18459,28 +18459,28 @@ <address3></address3> <address4></address4> <city>Imperial Beach</city> - <state_province>CA</state_province> - <postal_code>89859</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>89859</postalCode> <country>USA</country> <phone1>821-555-3648</phone1> <phone2>933-555-7069</phone2> <birthdate>11.05.1933</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-02-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-02-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Silvia Walker</fullname> <test></test> </Customer> <Customer> - <account_num>94464070796</account_num> + <accountNum>94464070796</accountNum> <lname>Pasumansky</lname> <fname>Mosha</fname> <mi></mi> @@ -18489,28 +18489,28 @@ <address3></address3> <address4></address4> <city>Redmond</city> - <state_province>WA</state_province> - <postal_code>24298</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>24298</postalCode> <country>USA</country> <phone1>456-555-1940</phone1> <phone2>106-555-6048</phone2> <birthdate>19.02.1936</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-06-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-06-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Mosha Pasumansky</fullname> <test></test> </Customer> <Customer> - <account_num>94467369914</account_num> + <accountNum>94467369914</accountNum> <lname>Whitney</lname> <fname>Shawn</fname> <mi>D.</mi> @@ -18519,28 +18519,28 @@ <address3></address3> <address4></address4> <city>Santa Cruz</city> - <state_province>CA</state_province> - <postal_code>72139</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>72139</postalCode> <country>USA</country> <phone1>836-555-9462</phone1> <phone2>356-555-3426</phone2> <birthdate>28.03.1931</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-10-28</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-10-28</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Shawn Whitney</fullname> <test></test> </Customer> <Customer> - <account_num>94484503900</account_num> + <accountNum>94484503900</accountNum> <lname>Saunders</lname> <fname>Lloyd</fname> <mi></mi> @@ -18549,28 +18549,28 @@ <address3></address3> <address4></address4> <city>Coronado</city> - <state_province>CA</state_province> - <postal_code>45447</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>45447</postalCode> <country>USA</country> <phone1>494-555-6383</phone1> <phone2>452-555-1033</phone2> <birthdate>10.08.1974</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-11-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-11-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Lloyd Saunders</fullname> <test></test> </Customer> <Customer> - <account_num>94497051239</account_num> + <accountNum>94497051239</accountNum> <lname>Vandenouer</lname> <fname>Rose</fname> <mi>C.</mi> @@ -18579,28 +18579,28 @@ <address3></address3> <address4></address4> <city>Royal Oak</city> - <state_province>BC</state_province> - <postal_code>59450</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>59450</postalCode> <country>Canada</country> <phone1>898-555-3533</phone1> <phone2>725-555-6040</phone2> <birthdate>24.06.1962</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-06-01</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-06-01</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Rose Vandenouer</fullname> <test></test> </Customer> <Customer> - <account_num>94503172039</account_num> + <accountNum>94503172039</accountNum> <lname>Vincenzi</lname> <fname>Eric</fname> <mi>J.</mi> @@ -18609,28 +18609,28 @@ <address3></address3> <address4></address4> <city>Daly City</city> - <state_province>CA</state_province> - <postal_code>97918</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>97918</postalCode> <country>USA</country> <phone1>817-555-2740</phone1> <phone2>183-555-5933</phone2> <birthdate>26.08.1932</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-10-18</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-10-18</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Eric Vincenzi</fullname> <test></test> </Customer> <Customer> - <account_num>94506964683</account_num> + <accountNum>94506964683</accountNum> <lname>Herring</lname> <fname>Cheryl</fname> <mi>A.</mi> @@ -18639,28 +18639,28 @@ <address3></address3> <address4></address4> <city>Puyallup</city> - <state_province>WA</state_province> - <postal_code>51791</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>51791</postalCode> <country>USA</country> <phone1>344-555-7519</phone1> <phone2>478-555-9569</phone2> <birthdate>21.07.1949</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-10-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-10-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Cheryl Herring</fullname> <test></test> </Customer> <Customer> - <account_num>94519463777</account_num> + <accountNum>94519463777</accountNum> <lname>Garza</lname> <fname>Kathleen</fname> <mi>A.</mi> @@ -18669,28 +18669,28 @@ <address3></address3> <address4></address4> <city>Yakima</city> - <state_province>WA</state_province> - <postal_code>82714</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>82714</postalCode> <country>USA</country> <phone1>286-555-5355</phone1> <phone2>859-555-8090</phone2> <birthdate>19.11.1954</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-01-20</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-01-20</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Kathleen Garza</fullname> <test></test> </Customer> <Customer> - <account_num>94524431228</account_num> + <accountNum>94524431228</accountNum> <lname>Westover</lname> <fname>Gail</fname> <mi></mi> @@ -18699,28 +18699,28 @@ <address3></address3> <address4></address4> <city>Palo Alto</city> - <state_province>CA</state_province> - <postal_code>2748</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>2748</postalCode> <country>USA</country> <phone1>426-555-9336</phone1> <phone2>207-555-5587</phone2> <birthdate>13.10.1958</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-07-10</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-10</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Clerical</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Gail Westover</fullname> <test></test> </Customer> <Customer> - <account_num>94545314908</account_num> + <accountNum>94545314908</accountNum> <lname>Hagemann</lname> <fname>Matthew</fname> <mi>A.</mi> @@ -18729,28 +18729,28 @@ <address3></address3> <address4></address4> <city>Victoria</city> - <state_province>BC</state_province> - <postal_code>72540</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>72540</postalCode> <country>Canada</country> <phone1>630-555-9458</phone1> <phone2>611-555-2737</phone2> <birthdate>06.09.1969</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-07-20</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-07-20</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Matthew Hagemann</fullname> <test></test> </Customer> <Customer> - <account_num>94566043019</account_num> + <accountNum>94566043019</accountNum> <lname>Vasquez</lname> <fname>Patricia</fname> <mi>A.</mi> @@ -18759,28 +18759,28 @@ <address3></address3> <address4></address4> <city>Beaverton</city> - <state_province>OR</state_province> - <postal_code>57735</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>57735</postalCode> <country>USA</country> <phone1>441-555-6151</phone1> <phone2>291-555-7286</phone2> <birthdate>19.10.1916</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-08-20</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-08-20</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Patricia Vasquez</fullname> <test></test> </Customer> <Customer> - <account_num>94589442610</account_num> + <accountNum>94589442610</accountNum> <lname>McCarthy</lname> <fname>Lola</fname> <mi>L.</mi> @@ -18789,28 +18789,28 @@ <address3></address3> <address4></address4> <city>Cliffside</city> - <state_province>BC</state_province> - <postal_code>93688</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>93688</postalCode> <country>Canada</country> <phone1>668-555-4901</phone1> <phone2>957-555-6722</phone2> <birthdate>27.08.1975</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-01-02</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-01-02</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Lola McCarthy</fullname> <test></test> </Customer> <Customer> - <account_num>94592918753</account_num> + <accountNum>94592918753</accountNum> <lname>Bacalzo</lname> <fname>Phillip</fname> <mi>R.</mi> @@ -18819,28 +18819,28 @@ <address3></address3> <address4></address4> <city>Beverly Hills</city> - <state_province>CA</state_province> - <postal_code>89846</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>89846</postalCode> <country>USA</country> <phone1>503-555-9222</phone1> <phone2>899-555-4558</phone2> <birthdate>07.02.1972</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-07-23</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-07-23</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Phillip Bacalzo</fullname> <test></test> </Customer> <Customer> - <account_num>94605986475</account_num> + <accountNum>94605986475</accountNum> <lname>Berch</lname> <fname>Marian</fname> <mi>E.</mi> @@ -18849,28 +18849,28 @@ <address3></address3> <address4></address4> <city>Seattle</city> - <state_province>WA</state_province> - <postal_code>91961</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>91961</postalCode> <country>USA</country> <phone1>753-555-6601</phone1> <phone2>688-555-2622</phone2> <birthdate>19.12.1970</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-04-11</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1994-04-11</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Marian Berch</fullname> <test></test> </Customer> <Customer> - <account_num>94613925814</account_num> + <accountNum>94613925814</accountNum> <lname>Taylor</lname> <fname>Mike</fname> <mi></mi> @@ -18879,28 +18879,28 @@ <address3></address3> <address4></address4> <city>La Jolla</city> - <state_province>CA</state_province> - <postal_code>94813</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>94813</postalCode> <country>USA</country> <phone1>188-555-7865</phone1> <phone2>653-555-8086</phone2> <birthdate>06.07.1928</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-04-08</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-04-08</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Mike Taylor</fullname> <test></test> </Customer> <Customer> - <account_num>94623335003</account_num> + <accountNum>94623335003</accountNum> <lname>Whipple</lname> <fname>Vivian</fname> <mi></mi> @@ -18909,28 +18909,28 @@ <address3></address3> <address4></address4> <city>Lynnwood</city> - <state_province>WA</state_province> - <postal_code>50464</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>50464</postalCode> <country>USA</country> <phone1>461-555-3872</phone1> <phone2>464-555-4779</phone2> <birthdate>14.06.1960</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-10-16</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-10-16</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Vivian Whipple</fullname> <test></test> </Customer> <Customer> - <account_num>94630957841</account_num> + <accountNum>94630957841</accountNum> <lname>Laursen</lname> <fname>Cecilia</fname> <mi>M.</mi> @@ -18939,28 +18939,28 @@ <address3></address3> <address4></address4> <city>Hidalgo</city> - <state_province>Zacatecas</state_province> - <postal_code>33145</postal_code> + <stateProvince>Zacatecas</stateProvince> + <postalCode>33145</postalCode> <country>Mexico</country> <phone1>580-555-9108</phone1> <phone2>691-555-3529</phone2> <birthdate>01.02.1974</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-10-13</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-10-13</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Cecilia Laursen</fullname> <test></test> </Customer> <Customer> - <account_num>94649792313</account_num> + <accountNum>94649792313</accountNum> <lname>Olguin</lname> <fname>Lee</fname> <mi>J.</mi> @@ -18969,28 +18969,28 @@ <address3></address3> <address4></address4> <city>Newport Beach</city> - <state_province>CA</state_province> - <postal_code>66582</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>66582</postalCode> <country>USA</country> <phone1>214-555-7401</phone1> <phone2>765-555-2508</phone2> <birthdate>07.07.1939</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-02-21</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1992-02-21</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Lee Olguin</fullname> <test></test> </Customer> <Customer> - <account_num>94659469723</account_num> + <accountNum>94659469723</accountNum> <lname>Ayers</lname> <fname>Stephen</fname> <mi>D.</mi> @@ -18999,28 +18999,28 @@ <address3></address3> <address4></address4> <city>Sedro Woolley</city> - <state_province>WA</state_province> - <postal_code>88132</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>88132</postalCode> <country>USA</country> <phone1>595-555-5922</phone1> <phone2>115-555-8886</phone2> <birthdate>24.07.1978</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-10-28</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-10-28</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Stephen Ayers</fullname> <test></test> </Customer> <Customer> - <account_num>94679157137</account_num> + <accountNum>94679157137</accountNum> <lname>Kotc</lname> <fname>Pamala</fname> <mi>K.</mi> @@ -19029,28 +19029,28 @@ <address3></address3> <address4></address4> <city>Long Beach</city> - <state_province>CA</state_province> - <postal_code>87731</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>87731</postalCode> <country>USA</country> <phone1>253-555-2843</phone1> <phone2>211-555-6494</phone2> <birthdate>20.05.1971</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-10-19</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-10-19</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Pamala Kotc</fullname> <test></test> </Customer> <Customer> - <account_num>94717700500</account_num> + <accountNum>94717700500</accountNum> <lname>Coriell</lname> <fname>Marlin</fname> <mi></mi> @@ -19059,28 +19059,28 @@ <address3></address3> <address4></address4> <city>Beverly Hills</city> - <state_province>CA</state_province> - <postal_code>75442</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>75442</postalCode> <country>USA</country> <phone1>783-555-1391</phone1> <phone2>610-555-3898</phone2> <birthdate>15.03.1933</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-05-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-05-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Marlin Coriell</fullname> <test></test> </Customer> <Customer> - <account_num>94722689390</account_num> + <accountNum>94722689390</accountNum> <lname>Warthen</lname> <fname>Clay</fname> <mi></mi> @@ -19089,28 +19089,28 @@ <address3></address3> <address4></address4> <city>Puyallup</city> - <state_province>WA</state_province> - <postal_code>41204</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>41204</postalCode> <country>USA</country> <phone1>703-555-9598</phone1> <phone2>968-555-3791</phone2> <birthdate>14.02.1935</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-03-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-03-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Clay Warthen</fullname> <test></test> </Customer> <Customer> - <account_num>94747129678</account_num> + <accountNum>94747129678</accountNum> <lname>Johnson</lname> <fname>Greg</fname> <mi>R.</mi> @@ -19119,28 +19119,28 @@ <address3></address3> <address4></address4> <city>La Jolla</city> - <state_province>CA</state_province> - <postal_code>94076</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>94076</postalCode> <country>USA</country> <phone1>468-555-9034</phone1> <phone2>603-555-2084</phone2> <birthdate>06.08.1914</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-02-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-02-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Greg Johnson</fullname> <test></test> </Customer> <Customer> - <account_num>94750643372</account_num> + <accountNum>94750643372</accountNum> <lname>Huckaby</lname> <fname>George</fname> <mi>V.</mi> @@ -19149,28 +19149,28 @@ <address3></address3> <address4></address4> <city>Richmond</city> - <state_province>CA</state_province> - <postal_code>98706</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>98706</postalCode> <country>USA</country> <phone1>411-555-6870</phone1> <phone2>745-555-5948</phone2> <birthdate>12.11.1963</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-12-28</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-12-28</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>George Huckaby</fullname> <test></test> </Customer> <Customer> - <account_num>94760165214</account_num> + <accountNum>94760165214</accountNum> <lname>Gustafson</lname> <fname>Faith</fname> <mi>M.</mi> @@ -19179,28 +19179,28 @@ <address3></address3> <address4></address4> <city>Burbank</city> - <state_province>CA</state_province> - <postal_code>18741</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>18741</postalCode> <country>USA</country> <phone1>860-555-1277</phone1> <phone2>642-555-6527</phone2> <birthdate>04.07.1929</birthdate> - <marital_status>M</marital_status> - <yearly_income>$150K +</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$150K +</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-12-01</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-12-01</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Faith Gustafson</fullname> <test></test> </Customer> <Customer> - <account_num>94778651000</account_num> + <accountNum>94778651000</accountNum> <lname>Thompson</lname> <fname>Donald</fname> <mi>L.</mi> @@ -19209,28 +19209,28 @@ <address3></address3> <address4></address4> <city>Port Hammond</city> - <state_province>BC</state_province> - <postal_code>15825</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>15825</postalCode> <country>Canada</country> <phone1>164-555-1398</phone1> <phone2>145-555-3677</phone2> <birthdate>24.12.1968</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-08-09</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-08-09</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Donald Thompson</fullname> <test></test> </Customer> <Customer> - <account_num>94798601269</account_num> + <accountNum>94798601269</accountNum> <lname>Hendricks</lname> <fname>Valentina</fname> <mi></mi> @@ -19239,28 +19239,28 @@ <address3></address3> <address4></address4> <city>Anacortes</city> - <state_province>WA</state_province> - <postal_code>10214</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>10214</postalCode> <country>USA</country> <phone1>876-555-7091</phone1> <phone2>726-555-8227</phone2> <birthdate>18.12.1959</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-11-02</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-11-02</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Valentina Hendricks</fullname> <test></test> </Customer> <Customer> - <account_num>94873365163</account_num> + <accountNum>94873365163</accountNum> <lname>Black</lname> <fname>Mae</fname> <mi></mi> @@ -19269,28 +19269,28 @@ <address3></address3> <address4></address4> <city>Coronado</city> - <state_province>CA</state_province> - <postal_code>36974</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>36974</postalCode> <country>USA</country> <phone1>203-555-5841</phone1> <phone2>491-555-7663</phone2> <birthdate>23.06.1980</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-12-08</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-12-08</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Mae Black</fullname> <test></test> </Customer> <Customer> - <account_num>94889056086</account_num> + <accountNum>94889056086</accountNum> <lname>Vansant</lname> <fname>Carlos</fname> <mi></mi> @@ -19299,28 +19299,28 @@ <address3></address3> <address4></address4> <city>Daly City</city> - <state_province>CA</state_province> - <postal_code>87331</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>87331</postalCode> <country>USA</country> <phone1>937-555-1162</phone1> <phone2>434-555-5498</phone2> <birthdate>11.11.1951</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-06-11</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-06-11</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Carlos Vansant</fullname> <test></test> </Customer> <Customer> - <account_num>94890820980</account_num> + <accountNum>94890820980</accountNum> <lname>Bentley</lname> <fname>Richard</fname> <mi></mi> @@ -19329,28 +19329,28 @@ <address3></address3> <address4></address4> <city>Daly City</city> - <state_province>CA</state_province> - <postal_code>87541</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>87541</postalCode> <country>USA</country> <phone1>526-555-2198</phone1> <phone2>222-555-3563</phone2> <birthdate>21.06.1911</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-11-23</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-11-23</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Richard Bentley</fullname> <test></test> </Customer> <Customer> - <account_num>94906951785</account_num> + <accountNum>94906951785</accountNum> <lname>Ritacco</lname> <fname>Thomas</fname> <mi>C.</mi> @@ -19359,28 +19359,28 @@ <address3></address3> <address4></address4> <city>Grossmont</city> - <state_province>CA</state_province> - <postal_code>77767</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>77767</postalCode> <country>USA</country> <phone1>622-555-8806</phone1> <phone2>187-555-9027</phone2> <birthdate>06.09.1971</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-07-17</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-07-17</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Thomas Ritacco</fullname> <test></test> </Customer> <Customer> - <account_num>94908641576</account_num> + <accountNum>94908641576</accountNum> <lname>Theisen</lname> <fname>Karen</fname> <mi>S.</mi> @@ -19389,28 +19389,28 @@ <address3></address3> <address4></address4> <city>Walla Walla</city> - <state_province>WA</state_province> - <postal_code>46044</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>46044</postalCode> <country>USA</country> <phone1>895-555-4813</phone1> <phone2>899-555-5720</phone2> <birthdate>10.05.1965</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-09-23</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1994-09-23</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Karen Theisen</fullname> <test></test> </Customer> <Customer> - <account_num>94919493794</account_num> + <accountNum>94919493794</accountNum> <lname>Berger</lname> <fname>John</fname> <mi></mi> @@ -19419,28 +19419,28 @@ <address3></address3> <address4></address4> <city>Mill Valley</city> - <state_province>CA</state_province> - <postal_code>28725</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>28725</postalCode> <country>USA</country> <phone1>702-555-1702</phone1> <phone2>574-555-1466</phone2> <birthdate>22.08.1941</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-06-16</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-06-16</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>John Berger</fullname> <test></test> </Customer> <Customer> - <account_num>94933843612</account_num> + <accountNum>94933843612</accountNum> <lname>Koski</lname> <fname>Joy</fname> <mi>V.</mi> @@ -19449,28 +19449,28 @@ <address3></address3> <address4></address4> <city>Tacoma</city> - <state_province>WA</state_province> - <postal_code>35870</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>35870</postalCode> <country>USA</country> <phone1>997-555-5337</phone1> <phone2>648-555-9445</phone2> <birthdate>25.09.1938</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-09-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Joy Koski</fullname> <test></test> </Customer> <Customer> - <account_num>94959249496</account_num> + <accountNum>94959249496</accountNum> <lname>Fitzgerald</lname> <fname>Duane</fname> <mi>M.</mi> @@ -19479,28 +19479,28 @@ <address3></address3> <address4></address4> <city>Shawnee</city> - <state_province>BC</state_province> - <postal_code>83711</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>83711</postalCode> <country>Canada</country> <phone1>478-555-3859</phone1> <phone2>898-555-6823</phone2> <birthdate>21.03.1945</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-03-24</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1990-03-24</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Duane Fitzgerald</fullname> <test></test> </Customer> <Customer> - <account_num>94989778399</account_num> + <accountNum>94989778399</accountNum> <lname>Camacho</lname> <fname>Lindsey</fname> <mi>N.</mi> @@ -19509,28 +19509,28 @@ <address3></address3> <address4></address4> <city>Langford</city> - <state_province>BC</state_province> - <postal_code>83311</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>83311</postalCode> <country>Canada</country> <phone1>136-555-9780</phone1> <phone2>994-555-4430</phone2> <birthdate>25.01.1912</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-11-13</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-11-13</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Lindsey Camacho</fullname> <test></test> </Customer> <Customer> - <account_num>95006021900</account_num> + <accountNum>95006021900</accountNum> <lname>Alvarado</lname> <fname>Selena</fname> <mi></mi> @@ -19539,28 +19539,28 @@ <address3></address3> <address4></address4> <city>Puyallup</city> - <state_province>WA</state_province> - <postal_code>71022</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>71022</postalCode> <country>USA</country> <phone1>779-555-1588</phone1> <phone2>367-555-9437</phone2> <birthdate>06.03.1964</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-03-08</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-03-08</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Selena Alvarado</fullname> <test></test> </Customer> <Customer> - <account_num>95009149312</account_num> + <accountNum>95009149312</accountNum> <lname>Brummer</lname> <fname>Dick</fname> <mi></mi> @@ -19569,28 +19569,28 @@ <address3></address3> <address4></address4> <city>Grossmont</city> - <state_province>CA</state_province> - <postal_code>10492</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>10492</postalCode> <country>USA</country> <phone1>459-555-6138</phone1> <phone2>725-555-9331</phone2> <birthdate>14.02.1940</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-01-19</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-01-19</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Dick Brummer</fullname> <test></test> </Customer> <Customer> - <account_num>95016884803</account_num> + <accountNum>95016884803</accountNum> <lname>Pinkston</lname> <fname>Pat</fname> <mi>J.</mi> @@ -19599,28 +19599,28 @@ <address3></address3> <address4></address4> <city>Lebanon</city> - <state_province>OR</state_province> - <postal_code>89656</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>89656</postalCode> <country>USA</country> <phone1>225-555-5573</phone1> <phone2>359-555-7623</phone2> <birthdate>03.04.1951</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-08-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-08-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Pat Pinkston</fullname> <test></test> </Customer> <Customer> - <account_num>95017823600</account_num> + <accountNum>95017823600</accountNum> <lname>Spivey</lname> <fname>Kristin</fname> <mi></mi> @@ -19629,28 +19629,28 @@ <address3></address3> <address4></address4> <city>Burien</city> - <state_province>WA</state_province> - <postal_code>94286</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>94286</postalCode> <country>USA</country> <phone1>167-555-3409</phone1> <phone2>740-555-6145</phone2> <birthdate>06.04.1962</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-03-21</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1994-03-21</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Kristin Spivey</fullname> <test></test> </Customer> <Customer> - <account_num>95041684508</account_num> + <accountNum>95041684508</accountNum> <lname>Whiting</lname> <fname>Gregory</fname> <mi>A.</mi> @@ -19659,28 +19659,28 @@ <address3></address3> <address4></address4> <city>Lake Oswego</city> - <state_province>OR</state_province> - <postal_code>14321</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>14321</postalCode> <country>USA</country> <phone1>855-555-1473</phone1> <phone2>398-555-3066</phone2> <birthdate>22.07.1960</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-10-19</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-10-19</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Gregory Whiting</fullname> <test></test> </Customer> <Customer> - <account_num>95046260356</account_num> + <accountNum>95046260356</accountNum> <lname>Espinoza</lname> <fname>Martha</fname> <mi>A.</mi> @@ -19689,28 +19689,28 @@ <address3></address3> <address4></address4> <city>La Cruz</city> - <state_province>Sinaloa</state_province> - <postal_code>84112</postal_code> + <stateProvince>Sinaloa</stateProvince> + <postalCode>84112</postalCode> <country>Mexico</country> <phone1>821-555-6938</phone1> <phone2>801-555-9216</phone2> <birthdate>24.12.1973</birthdate> - <marital_status>S</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1990-06-07</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-06-07</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Martha Espinoza</fullname> <test></test> </Customer> <Customer> - <account_num>95072690844</account_num> + <accountNum>95072690844</accountNum> <lname>Robinett</lname> <fname>David</fname> <mi>W.</mi> @@ -19719,28 +19719,28 @@ <address3></address3> <address4></address4> <city>Lincoln Acres</city> - <state_province>CA</state_province> - <postal_code>69308</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>69308</postalCode> <country>USA</country> <phone1>632-555-3630</phone1> <phone2>721-555-8423</phone2> <birthdate>15.08.1926</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1994-11-02</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-11-02</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>David Robinett</fullname> <test></test> </Customer> <Customer> - <account_num>95096830725</account_num> + <accountNum>95096830725</accountNum> <lname>OSBPdahl</lname> <fname>Judy</fname> <mi>L.</mi> @@ -19749,28 +19749,28 @@ <address3></address3> <address4></address4> <city>Seattle</city> - <state_province>WA</state_province> - <postal_code>62625</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>62625</postalCode> <country>USA</country> <phone1>859-555-2380</phone1> <phone2>248-555-4202</phone2> <birthdate>17.10.1979</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-11-16</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-11-16</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Judy OSBPdahl</fullname> <test></test> </Customer> <Customer> - <account_num>95109249400</account_num> + <accountNum>95109249400</accountNum> <lname>Demicell</lname> <fname>Shawn</fname> <mi></mi> @@ -19779,28 +19779,28 @@ <address3></address3> <address4></address4> <city>Corvallis</city> - <state_province>OR</state_province> - <postal_code>56618</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>56618</postalCode> <country>USA</country> <phone1>932-555-1359</phone1> <phone2>190-555-2038</phone2> <birthdate>14.04.1924</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1991-10-05</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-10-05</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Shawn Demicell</fullname> <test></test> </Customer> <Customer> - <account_num>95135867595</account_num> + <accountNum>95135867595</accountNum> <lname>Rousey</lname> <fname>Linda</fname> <mi>C.</mi> @@ -19809,28 +19809,28 @@ <address3></address3> <address4></address4> <city>Guadalajara</city> - <state_province>Jalisco</state_province> - <postal_code>78856</postal_code> + <stateProvince>Jalisco</stateProvince> + <postalCode>78856</postalCode> <country>Mexico</country> <phone1>634-555-4655</phone1> <phone2>330-555-6019</phone2> <birthdate>09.03.1974</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-06-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-06-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Linda Rousey</fullname> <test></test> </Customer> <Customer> - <account_num>95142900347</account_num> + <accountNum>95142900347</accountNum> <lname>Marcovecchio</lname> <fname>Kathy</fname> <mi></mi> @@ -19839,28 +19839,28 @@ <address3></address3> <address4></address4> <city>Port Hammond</city> - <state_province>BC</state_province> - <postal_code>95375</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>95375</postalCode> <country>Canada</country> <phone1>730-555-2262</phone1> <phone2>295-555-2483</phone2> <birthdate>02.05.1938</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-01-15</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-01-15</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Kathy Marcovecchio</fullname> <test></test> </Customer> <Customer> - <account_num>95155785679</account_num> + <accountNum>95155785679</accountNum> <lname>Evans</lname> <fname>Twanna</fname> <mi>A.</mi> @@ -19869,28 +19869,28 @@ <address3></address3> <address4></address4> <city>Colma</city> - <state_province>CA</state_province> - <postal_code>63651</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>63651</postalCode> <country>USA</country> <phone1>102-555-7269</phone1> <phone2>345-555-2834</phone2> <birthdate>05.09.1964</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-12-17</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-12-17</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Twanna Evans</fullname> <test></test> </Customer> <Customer> - <account_num>95165640115</account_num> + <accountNum>95165640115</accountNum> <lname>Storjohann</lname> <fname>Judy</fname> <mi>E.</mi> @@ -19899,28 +19899,28 @@ <address3></address3> <address4></address4> <city>La Mesa</city> - <state_province>CA</state_province> - <postal_code>20040</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>20040</postalCode> <country>USA</country> <phone1>460-555-7162</phone1> <phone2>333-555-6926</phone2> <birthdate>24.12.1914</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-08-19</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-08-19</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Judy Storjohann</fullname> <test></test> </Customer> <Customer> - <account_num>95196603536</account_num> + <accountNum>95196603536</accountNum> <lname>Maccietto</lname> <fname>Denise</fname> <mi></mi> @@ -19929,28 +19929,28 @@ <address3></address3> <address4></address4> <city>El Cajon</city> - <state_province>CA</state_province> - <postal_code>53478</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>53478</postalCode> <country>USA</country> <phone1>756-555-1798</phone1> <phone2>406-555-5905</phone2> <birthdate>10.08.1935</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-07-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-07-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Denise Maccietto</fullname> <test></test> </Customer> <Customer> - <account_num>95215813517</account_num> + <accountNum>95215813517</accountNum> <lname>Buskirk</lname> <fname>Deanna</fname> <mi>J.</mi> @@ -19959,28 +19959,28 @@ <address3></address3> <address4></address4> <city>Oakland</city> - <state_province>CA</state_province> - <postal_code>75027</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>75027</postalCode> <country>USA</country> <phone1>237-555-9319</phone1> <phone2>656-555-3284</phone2> <birthdate>06.04.1910</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-09-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-09-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Deanna Buskirk</fullname> <test></test> </Customer> <Customer> - <account_num>95226751565</account_num> + <accountNum>95226751565</accountNum> <lname>Kesslep</lname> <fname>Mary</fname> <mi>S.</mi> @@ -19989,28 +19989,28 @@ <address3></address3> <address4></address4> <city>Vancouver</city> - <state_province>BC</state_province> - <postal_code>74626</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>74626</postalCode> <country>Canada</country> <phone1>134-555-9898</phone1> <phone2>753-555-9891</phone2> <birthdate>07.10.1980</birthdate> - <marital_status>M</marital_status> - <yearly_income>$150K +</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$150K +</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-02-07</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-02-07</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Mary Kesslep</fullname> <test></test> </Customer> <Customer> - <account_num>95232512950</account_num> + <accountNum>95232512950</accountNum> <lname>Schultz</lname> <fname>Barbara</fname> <mi>A.</mi> @@ -20019,28 +20019,28 @@ <address3></address3> <address4></address4> <city>N. Vancouver</city> - <state_province>BC</state_province> - <postal_code>62338</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>62338</postalCode> <country>Canada</country> <phone1>537-555-7048</phone1> <phone2>364-555-9555</phone2> <birthdate>23.11.1935</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-11-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-11-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Barbara Schultz</fullname> <test></test> </Customer> <Customer> - <account_num>95241407155</account_num> + <accountNum>95241407155</accountNum> <lname>Bergin</lname> <fname>Kris</fname> <mi>M.</mi> @@ -20049,28 +20049,28 @@ <address3></address3> <address4></address4> <city>Acapulco</city> - <state_province>Guerrero</state_province> - <postal_code>28099</postal_code> + <stateProvince>Guerrero</stateProvince> + <postalCode>28099</postalCode> <country>Mexico</country> <phone1>218-555-2598</phone1> <phone2>483-555-5791</phone2> <birthdate>01.06.1943</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-08-19</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-08-19</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Kris Bergin</fullname> <test></test> </Customer> <Customer> - <account_num>95244786739</account_num> + <accountNum>95244786739</accountNum> <lname>Steel</lname> <fname>Merrill</fname> <mi>J.</mi> @@ -20079,28 +20079,28 @@ <address3></address3> <address4></address4> <city>Edmonds</city> - <state_province>WA</state_province> - <postal_code>80971</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>80971</postalCode> <country>USA</country> <phone1>883-555-2034</phone1> <phone2>118-555-4084</phone2> <birthdate>15.05.1916</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-11-28</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-11-28</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Merrill Steel</fullname> <test></test> </Customer> <Customer> - <account_num>95246197581</account_num> + <accountNum>95246197581</accountNum> <lname>Marple</lname> <fname>Melissa</fname> <mi>J.</mi> @@ -20109,28 +20109,28 @@ <address3></address3> <address4></address4> <city>Olympia</city> - <state_province>WA</state_province> - <postal_code>12894</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>12894</postalCode> <country>USA</country> <phone1>826-555-8869</phone1> <phone2>499-555-2605</phone2> <birthdate>15.02.1959</birthdate> - <marital_status>S</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-06-13</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-06-13</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Melissa Marple</fullname> <test></test> </Customer> <Customer> - <account_num>95258632302</account_num> + <accountNum>95258632302</accountNum> <lname>Evans</lname> <fname>Ann</fname> <mi>M.</mi> @@ -20139,28 +20139,28 @@ <address3></address3> <address4></address4> <city>Cliffside</city> - <state_province>BC</state_province> - <postal_code>31928</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>31928</postalCode> <country>Canada</country> <phone1>614-555-6934</phone1> <phone2>157-555-8526</phone2> <birthdate>12.04.1931</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-09-08</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-09-08</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Ann Evans</fullname> <test></test> </Customer> <Customer> - <account_num>95269693700</account_num> + <accountNum>95269693700</accountNum> <lname>Bruner</lname> <fname>Shirley</fname> <mi></mi> @@ -20169,28 +20169,28 @@ <address3></address3> <address4></address4> <city>Oregon City</city> - <state_province>OR</state_province> - <postal_code>27206</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>27206</postalCode> <country>USA</country> <phone1>579-555-3398</phone1> <phone2>911-555-2594</phone2> <birthdate>11.05.1976</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-10-10</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-10-10</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Shirley Bruner</fullname> <test></test> </Customer> <Customer> - <account_num>95274065732</account_num> + <accountNum>95274065732</accountNum> <lname>Troyer</lname> <fname>Michael John</fname> <mi></mi> @@ -20199,28 +20199,28 @@ <address3></address3> <address4></address4> <city>Kirkland</city> - <state_province>WA</state_province> - <postal_code>86915</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>86915</postalCode> <country>USA</country> <phone1>742-555-6008</phone1> <phone2>831-555-1801</phone2> <birthdate>27.09.1961</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-03-13</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-03-13</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Michael John Troyer</fullname> <test></test> </Customer> <Customer> - <account_num>95285556316</account_num> + <accountNum>95285556316</accountNum> <lname>Sandidge</lname> <fname>Mary</fname> <mi></mi> @@ -20229,28 +20229,28 @@ <address3></address3> <address4></address4> <city>Royal Oak</city> - <state_province>BC</state_province> - <postal_code>23869</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>23869</postalCode> <country>Canada</country> <phone1>969-555-4758</phone1> <phone2>358-555-6579</phone2> <birthdate>27.08.1976</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-11-24</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-11-24</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Mary Sandidge</fullname> <test></test> </Customer> <Customer> - <account_num>95290631055</account_num> + <accountNum>95290631055</accountNum> <lname>Skonnard</lname> <fname>Monk</fname> <mi>J.</mi> @@ -20259,28 +20259,28 @@ <address3></address3> <address4></address4> <city>Spring Valley</city> - <state_province>CA</state_province> - <postal_code>74226</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>74226</postalCode> <country>USA</country> <phone1>142-555-3737</phone1> <phone2>300-555-4415</phone2> <birthdate>20.09.1953</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-09-22</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-22</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Monk Skonnard</fullname> <test></test> </Customer> <Customer> - <account_num>95304390788</account_num> + <accountNum>95304390788</accountNum> <lname>Beck</lname> <fname>Christopher</fname> <mi></mi> @@ -20289,28 +20289,28 @@ <address3></address3> <address4></address4> <city>Spring Valley</city> - <state_province>CA</state_province> - <postal_code>76341</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>76341</postalCode> <country>USA</country> <phone1>392-555-1115</phone1> <phone2>988-555-2479</phone2> <birthdate>24.08.1977</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-07-01</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1994-07-01</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Christopher Beck</fullname> <test></test> </Customer> <Customer> - <account_num>95311235785</account_num> + <accountNum>95311235785</accountNum> <lname>Abel</lname> <fname>Catherine</fname> <mi></mi> @@ -20319,28 +20319,28 @@ <address3></address3> <address4></address4> <city>San Francisco</city> - <state_province>CA</state_province> - <postal_code>64952</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>64952</postalCode> <country>USA</country> <phone1>488-555-7722</phone1> <phone2>954-555-7944</phone2> <birthdate>14.06.1973</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-10-01</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-10-01</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Catherine Abel</fullname> <test></test> </Customer> <Customer> - <account_num>95315237641</account_num> + <accountNum>95315237641</accountNum> <lname>Miller</lname> <fname>Emilo</fname> <mi></mi> @@ -20349,28 +20349,28 @@ <address3></address3> <address4></address4> <city>Lebanon</city> - <state_province>OR</state_province> - <postal_code>33229</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>33229</postalCode> <country>USA</country> <phone1>761-555-3729</phone1> <phone2>104-555-8294</phone2> <birthdate>14.06.1961</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-11-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-11-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Emilo Miller</fullname> <test></test> </Customer> <Customer> - <account_num>95317490696</account_num> + <accountNum>95317490696</accountNum> <lname>Walker</lname> <fname>Hazel</fname> <mi>G.</mi> @@ -20379,28 +20379,28 @@ <address3></address3> <address4></address4> <city>Portland</city> - <state_province>OR</state_province> - <postal_code>15910</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>15910</postalCode> <country>USA</country> <phone1>219-555-3622</phone1> <phone2>992-555-3386</phone2> <birthdate>04.06.1943</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-12-14</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-12-14</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Hazel Walker</fullname> <test></test> </Customer> <Customer> - <account_num>95337253212</account_num> + <accountNum>95337253212</accountNum> <lname>Brooks</lname> <fname>John</fname> <mi></mi> @@ -20409,28 +20409,28 @@ <address3></address3> <address4></address4> <city>Bellflower</city> - <state_province>CA</state_province> - <postal_code>49347</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>49347</postalCode> <country>USA</country> <phone1>754-555-1915</phone1> <phone2>165-555-2365</phone2> <birthdate>12.02.1946</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-08-25</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-08-25</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>John Brooks</fullname> <test></test> </Customer> <Customer> - <account_num>95340809822</account_num> + <accountNum>95340809822</accountNum> <lname>Logan</lname> <fname>Todd</fname> <mi>A.</mi> @@ -20439,28 +20439,28 @@ <address3></address3> <address4></address4> <city>Bremerton</city> - <state_province>WA</state_province> - <postal_code>70897</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>70897</postalCode> <country>USA</country> <phone1>896-555-5779</phone1> <phone2>415-555-8744</phone2> <birthdate>05.06.1953</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-09-22</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-09-22</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Todd Logan</fullname> <test></test> </Customer> <Customer> - <account_num>95366451740</account_num> + <accountNum>95366451740</accountNum> <lname>Several</lname> <fname>Joshua</fname> <mi>A.</mi> @@ -20469,28 +20469,28 @@ <address3></address3> <address4></address4> <city>San Carlos</city> - <state_province>CA</state_province> - <postal_code>70496</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>70496</postalCode> <country>USA</country> <phone1>792-555-6358</phone1> <phone2>511-555-6351</phone2> <birthdate>01.03.1979</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-09-05</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-09-05</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Joshua Several</fullname> <test></test> </Customer> <Customer> - <account_num>95385645627</account_num> + <accountNum>95385645627</accountNum> <lname>Thomas</lname> <fname>James</fname> <mi>C.</mi> @@ -20499,28 +20499,28 @@ <address3></address3> <address4></address4> <city>Acapulco</city> - <state_province>Guerrero</state_province> - <postal_code>58207</postal_code> + <stateProvince>Guerrero</stateProvince> + <postalCode>58207</postalCode> <country>Mexico</country> <phone1>296-555-3508</phone1> <phone2>123-555-6015</phone2> <birthdate>15.12.1966</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-07-06</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-07-06</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>James Thomas</fullname> <test></test> </Customer> <Customer> - <account_num>95391428470</account_num> + <accountNum>95391428470</accountNum> <lname>Vessa</lname> <fname>Robert</fname> <mi>C.</mi> @@ -20529,28 +20529,28 @@ <address3></address3> <address4></address4> <city>Beaverton</city> - <state_province>OR</state_province> - <postal_code>23969</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>23969</postalCode> <country>USA</country> <phone1>877-555-8058</phone1> <phone2>242-555-2251</phone2> <birthdate>01.06.1948</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-09-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Robert Vessa</fullname> <test></test> </Customer> <Customer> - <account_num>95408353209</account_num> + <accountNum>95408353209</accountNum> <lname>Tran</lname> <fname>James</fname> <mi>T.</mi> @@ -20559,28 +20559,28 @@ <address3></address3> <address4></address4> <city>Imperial Beach</city> - <state_province>CA</state_province> - <postal_code>76841</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>76841</postalCode> <country>USA</country> <phone1>993-555-4411</phone1> <phone2>228-555-6461</phone2> <birthdate>12.02.1953</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-11-15</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-11-15</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>James Tran</fullname> <test></test> </Customer> <Customer> - <account_num>95457201600</account_num> + <accountNum>95457201600</accountNum> <lname>Crow</lname> <fname>Shelley</fname> <mi>L.</mi> @@ -20589,28 +20589,28 @@ <address3></address3> <address4></address4> <city>Newport Beach</city> - <state_province>CA</state_province> - <postal_code>81471</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>81471</postalCode> <country>USA</country> <phone1>936-555-2247</phone1> <phone2>609-555-4983</phone2> <birthdate>21.09.1970</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-03-24</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-03-24</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Shelley Crow</fullname> <test></test> </Customer> <Customer> - <account_num>95496254563</account_num> + <accountNum>95496254563</accountNum> <lname>Sims</lname> <fname>Anne</fname> <mi>M.</mi> @@ -20619,28 +20619,28 @@ <address3></address3> <address4></address4> <city>Long Beach</city> - <state_province>CA</state_province> - <postal_code>15065</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>15065</postalCode> <country>USA</country> <phone1>724-555-9311</phone1> <phone2>267-555-1904</phone2> <birthdate>04.05.1962</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-03-17</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1994-03-17</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Anne Sims</fullname> <test></test> </Customer> <Customer> - <account_num>95498550534</account_num> + <accountNum>95498550534</accountNum> <lname>Tatman</lname> <fname>Clarence</fname> <mi>C.</mi> @@ -20649,28 +20649,28 @@ <address3></address3> <address4></address4> <city>Chula Vista</city> - <state_province>CA</state_province> - <postal_code>71297</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>71297</postalCode> <country>USA</country> <phone1>689-555-5775</phone1> <phone2>670-555-8054</phone2> <birthdate>11.05.1911</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-02-10</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-02-10</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Clarence Tatman</fullname> <test></test> </Customer> <Customer> - <account_num>95521563900</account_num> + <accountNum>95521563900</accountNum> <lname>Nelsen</lname> <fname>Jan</fname> <mi></mi> @@ -20679,28 +20679,28 @@ <address3></address3> <address4></address4> <city>Langford</city> - <state_province>BC</state_province> - <postal_code>56493</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>56493</postalCode> <country>Canada</country> <phone1>501-555-2468</phone1> <phone2>590-555-7261</phone2> <birthdate>24.06.1928</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-03-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-03-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Jan Nelsen</fullname> <test></test> </Customer> <Customer> - <account_num>95522845983</account_num> + <accountNum>95522845983</accountNum> <lname>Cole</lname> <fname>Jeanette</fname> <mi>K.</mi> @@ -20709,28 +20709,28 @@ <address3></address3> <address4></address4> <city>Daly City</city> - <state_province>CA</state_province> - <postal_code>19739</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>19739</postalCode> <country>USA</country> <phone1>728-555-1218</phone1> <phone2>116-555-3040</phone2> <birthdate>05.04.1917</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-07-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-07-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Jeanette Cole</fullname> <test></test> </Customer> <Customer> - <account_num>95536852478</account_num> + <accountNum>95536852478</accountNum> <lname>Huntsman</lname> <fname>Phyllis</fname> <mi></mi> @@ -20739,28 +20739,28 @@ <address3></address3> <address4></address4> <city>Glendale</city> - <state_province>CA</state_province> - <postal_code>43804</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>43804</postalCode> <country>USA</country> <phone1>801-555-9197</phone1> <phone2>959-555-9875</phone2> <birthdate>23.01.1926</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-02-14</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-02-14</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Phyllis Huntsman</fullname> <test></test> </Customer> <Customer> - <account_num>95549330115</account_num> + <accountNum>95549330115</accountNum> <lname>Arakawa</lname> <fname>Hannah</fname> <mi>B.</mi> @@ -20769,28 +20769,28 @@ <address3></address3> <address4></address4> <city>Glendale</city> - <state_province>CA</state_province> - <postal_code>45919</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>45919</postalCode> <country>USA</country> <phone1>151-555-6575</phone1> <phone2>747-555-7940</phone2> <birthdate>24.08.1912</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-11-02</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-11-02</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Hannah Arakawa</fullname> <test></test> </Customer> <Customer> - <account_num>95566029548</account_num> + <accountNum>95566029548</accountNum> <lname>Steuber</lname> <fname>Wathalee</fname> <mi>H.</mi> @@ -20799,28 +20799,28 @@ <address3></address3> <address4></address4> <city>Palo Alto</city> - <state_province>CA</state_province> - <postal_code>62437</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>62437</postalCode> <country>USA</country> <phone1>247-555-4183</phone1> <phone2>951-555-8061</phone2> <birthdate>11.03.1940</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-10-26</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-10-26</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Wathalee Steuber</fullname> <test></test> </Customer> <Customer> - <account_num>95576431155</account_num> + <accountNum>95576431155</accountNum> <lname>Cox</lname> <fname>Pamela</fname> <mi>A.</mi> @@ -20829,28 +20829,28 @@ <address3></address3> <address4></address4> <city>Los Angeles</city> - <state_province>CA</state_province> - <postal_code>55681</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>55681</postalCode> <country>USA</country> <phone1>520-555-9190</phone1> <phone2>763-555-4754</phone2> <birthdate>19.02.1972</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1990-05-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-05-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Pamela Cox</fullname> <test></test> </Customer> <Customer> - <account_num>95587278008</account_num> + <accountNum>95587278008</accountNum> <lname>Jacobs</lname> <fname>Bronson</fname> <mi>W.</mi> @@ -20859,28 +20859,28 @@ <address3></address3> <address4></address4> <city>Pomona</city> - <state_province>CA</state_province> - <postal_code>38362</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>38362</postalCode> <country>USA</country> <phone1>878-555-9083</phone1> <phone2>990-555-3504</phone2> <birthdate>06.09.1916</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-05-03</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1994-05-03</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Bronson Jacobs</fullname> <test></test> </Customer> <Customer> - <account_num>95590775609</account_num> + <accountNum>95590775609</accountNum> <lname>Barley</lname> <fname>Rebecca</fname> <mi>S.</mi> @@ -20889,28 +20889,28 @@ <address3></address3> <address4></address4> <city>W. Linn</city> - <state_province>OR</state_province> - <postal_code>45507</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>45507</postalCode> <country>USA</country> <phone1>513-555-7376</phone1> <phone2>824-555-7825</phone2> <birthdate>12.02.1951</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-09-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Clerical</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Rebecca Barley</fullname> <test></test> </Customer> <Customer> - <account_num>95599685907</account_num> + <accountNum>95599685907</accountNum> <lname>Alvaro</lname> <fname>Emilio</fname> <mi>C.</mi> @@ -20919,28 +20919,28 @@ <address3></address3> <address4></address4> <city>Spokane</city> - <state_province>WA</state_province> - <postal_code>93349</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>93349</postalCode> <country>USA</country> <phone1>894-555-5897</phone1> <phone2>289-555-7385</phone2> <birthdate>02.03.1920</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-09-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Emilio Alvaro</fullname> <test></test> </Customer> <Customer> - <account_num>95601370334</account_num> + <accountNum>95601370334</accountNum> <lname>Waters</lname> <fname>Becky</fname> <mi></mi> @@ -20949,28 +20949,28 @@ <address3></address3> <address4></address4> <city>Woodburn</city> - <state_province>OR</state_province> - <postal_code>66656</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>66656</postalCode> <country>USA</country> <phone1>666-555-4999</phone1> <phone2>385-555-4992</phone2> <birthdate>25.01.1914</birthdate> - <marital_status>S</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-06-26</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-06-26</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Becky Waters</fullname> <test></test> </Customer> <Customer> - <account_num>95601702928</account_num> + <accountNum>95601702928</accountNum> <lname>Jarvis</lname> <fname>A. Joyce</fname> <mi></mi> @@ -20979,28 +20979,28 @@ <address3></address3> <address4></address4> <city>San Gabriel</city> - <state_province>CA</state_province> - <postal_code>80659</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>80659</postalCode> <country>USA</country> <phone1>170-555-2149</phone1> <phone2>897-555-4656</phone2> <birthdate>20.10.1945</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-11-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-11-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>A. Joyce Jarvis</fullname> <test></test> </Customer> <Customer> - <account_num>97519943700</account_num> + <accountNum>97519943700</accountNum> <lname>Zimmerman</lname> <fname>Aaron</fname> <mi></mi> @@ -21009,28 +21009,28 @@ <address3></address3> <address4></address4> <city>Shawnee</city> - <state_province>BC</state_province> - <postal_code>38994</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>38994</postalCode> <country>Canada</country> <phone1>480-555-4013</phone1> <phone2>660-555-3320</phone2> <birthdate>08.08.1949</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1994-03-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-03-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Aaron Zimmerman</fullname> <test></test> </Customer> <Customer> - <account_num>97529658675</account_num> + <accountNum>97529658675</accountNum> <lname>Sherfy</lname> <fname>John</fname> <mi>M.</mi> @@ -21039,28 +21039,28 @@ <address3></address3> <address4></address4> <city>Burien</city> - <state_province>WA</state_province> - <postal_code>38593</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>38593</postalCode> <country>USA</country> <phone1>138-555-9935</phone1> <phone2>996-555-4585</phone2> <birthdate>12.06.1917</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-08-23</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-08-23</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>John Sherfy</fullname> <test></test> </Customer> <Customer> - <account_num>97536755800</account_num> + <accountNum>97536755800</accountNum> <lname>Behnke</lname> <fname>Albert</fname> <mi>W.</mi> @@ -21069,28 +21069,28 @@ <address3></address3> <address4></address4> <city>Torrance</city> - <state_province>CA</state_province> - <postal_code>26305</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>26305</postalCode> <country>USA</country> <phone1>541-555-7085</phone1> <phone2>368-555-9592</phone2> <birthdate>05.11.1980</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-10-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-10-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Albert Behnke</fullname> <test></test> </Customer> <Customer> - <account_num>97562816143</account_num> + <accountNum>97562816143</accountNum> <lname>Tu</lname> <fname>Taylor</fname> <mi></mi> @@ -21099,28 +21099,28 @@ <address3></address3> <address4></address4> <city>N. Vancouver</city> - <state_province>BC</state_province> - <postal_code>91065</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>91065</postalCode> <country>Canada</country> <phone1>461-555-6292</phone1> <phone2>487-555-5827</phone2> <birthdate>12.09.1956</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-08-03</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1992-08-03</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Taylor Tu</fullname> <test></test> </Customer> <Customer> - <account_num>97572729587</account_num> + <accountNum>97572729587</accountNum> <lname>Harris</lname> <fname>W.</fname> <mi>M.</mi> @@ -21129,28 +21129,28 @@ <address3></address3> <address4></address4> <city>San Carlos</city> - <state_province>CA</state_province> - <postal_code>37444</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>37444</postalCode> <country>USA</country> <phone1>888-555-2070</phone1> <phone2>122-555-4120</phone2> <birthdate>01.12.1967</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-09-26</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-09-26</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>W. Harris</fullname> <test></test> </Customer> <Customer> - <account_num>97583254575</account_num> + <accountNum>97583254575</accountNum> <lname>Faubert</lname> <fname>Cheryl</fname> <mi>A.</mi> @@ -21159,28 +21159,28 @@ <address3></address3> <address4></address4> <city>Concord</city> - <state_province>CA</state_province> - <postal_code>42074</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>42074</postalCode> <country>USA</country> <phone1>830-555-8906</phone1> <phone2>503-555-2642</phone2> <birthdate>05.11.1978</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-07-14</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-07-14</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Cheryl Faubert</fullname> <test></test> </Customer> <Customer> - <account_num>97599138617</account_num> + <accountNum>97599138617</accountNum> <lname>Bonilla</lname> <fname>Margurite</fname> <mi></mi> @@ -21189,28 +21189,28 @@ <address3></address3> <address4></address4> <city>Lake Oswego</city> - <state_province>OR</state_province> - <postal_code>61108</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>61108</postalCode> <country>USA</country> <phone1>618-555-6970</phone1> <phone2>161-555-8563</phone2> <birthdate>21.04.1976</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-12-28</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-12-28</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Margurite Bonilla</fullname> <test></test> </Customer> <Customer> - <account_num>97612184882</account_num> + <accountNum>97612184882</accountNum> <lname>Hirschboeck</lname> <fname>Mary</fname> <mi>L</mi> @@ -21219,28 +21219,28 @@ <address3></address3> <address4></address4> <city>La Cruz</city> - <state_province>Sinaloa</state_province> - <postal_code>58192</postal_code> + <stateProvince>Sinaloa</stateProvince> + <postalCode>58192</postalCode> <country>Mexico</country> <phone1>935-555-9352</phone1> <phone2>916-555-2630</phone2> <birthdate>22.08.1919</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-07-17</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1990-07-17</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Mary Hirschboeck</fullname> <test></test> </Customer> <Customer> - <account_num>97615741491</account_num> + <accountNum>97615741491</accountNum> <lname>VanHarn</lname> <fname>Jason</fname> <mi>R.</mi> @@ -21249,28 +21249,28 @@ <address3></address3> <address4></address4> <city>Orizaba</city> - <state_province>Veracruz</state_province> - <postal_code>43388</postal_code> + <stateProvince>Veracruz</stateProvince> + <postalCode>43388</postalCode> <country>Mexico</country> <phone1>985-555-9702</phone1> <phone2>835-555-1838</phone2> <birthdate>13.05.1942</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-01-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-01-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Jason VanHarn</fullname> <test></test> </Customer> <Customer> - <account_num>97627457380</account_num> + <accountNum>97627457380</accountNum> <lname>Steffen</lname> <fname>Joyce</fname> <mi>F.</mi> @@ -21279,28 +21279,28 @@ <address3></address3> <address4></address4> <city>West Covina</city> - <state_province>CA</state_province> - <postal_code>79341</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>79341</postalCode> <country>USA</country> <phone1>973-555-4795</phone1> <phone2>601-555-1274</phone2> <birthdate>19.06.1965</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-01-25</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-01-25</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Joyce Steffen</fullname> <test></test> </Customer> <Customer> - <account_num>97641909122</account_num> + <accountNum>97641909122</accountNum> <lname>Flynn</lname> <fname>Carol</fname> <mi>L.</mi> @@ -21309,28 +21309,28 @@ <address3></address3> <address4></address4> <city>Tacoma</city> - <state_province>WA</state_province> - <postal_code>30699</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>30699</postalCode> <country>USA</country> <phone1>146-555-3773</phone1> <phone2>543-555-8109</phone2> <birthdate>04.08.1968</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-11-14</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-11-14</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Carol Flynn</fullname> <test></test> </Customer> <Customer> - <account_num>97643121480</account_num> + <accountNum>97643121480</accountNum> <lname>Richardson</lname> <fname>Ellis</fname> <mi></mi> @@ -21339,28 +21339,28 @@ <address3></address3> <address4></address4> <city>Edmonds</city> - <state_province>WA</state_province> - <postal_code>32814</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>32814</postalCode> <country>USA</country> <phone1>396-555-1152</phone1> <phone2>992-555-2516</phone2> <birthdate>11.10.1960</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-02-24</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-02-24</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Ellis Richardson</fullname> <test></test> </Customer> <Customer> - <account_num>97675007581</account_num> + <accountNum>97675007581</accountNum> <lname>Brew</lname> <fname>James</fname> <mi>R.</mi> @@ -21369,28 +21369,28 @@ <address3></address3> <address4></address4> <city>Corvallis</city> - <state_province>OR</state_province> - <postal_code>23040</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>23040</postalCode> <country>USA</country> <phone1>493-555-7759</phone1> <phone2>297-555-2638</phone2> <birthdate>04.01.1924</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-08-26</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-08-26</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>James Brew</fullname> <test></test> </Customer> <Customer> - <account_num>97695285081</account_num> + <accountNum>97695285081</accountNum> <lname>Cook</lname> <fname>Nadine</fname> <mi></mi> @@ -21399,28 +21399,28 @@ <address3></address3> <address4></address4> <city>La Jolla</city> - <state_province>CA</state_province> - <postal_code>90316</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>90316</postalCode> <country>USA</country> <phone1>104-555-7423</phone1> <phone2>108-555-8331</phone2> <birthdate>06.05.1950</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-07-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-07-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Nadine Cook</fullname> <test></test> </Customer> <Customer> - <account_num>97707097530</account_num> + <accountNum>97707097530</accountNum> <lname>Thompson</lname> <fname>James</fname> <mi>E.</mi> @@ -21429,28 +21429,28 @@ <address3></address3> <address4></address4> <city>Richmond</city> - <state_province>BC</state_province> - <postal_code>72996</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>72996</postalCode> <country>Canada</country> <phone1>223-555-3659</phone1> <phone2>335-555-7081</phone2> <birthdate>26.08.1971</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-11-03</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-11-03</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>James Thompson</fullname> <test></test> </Customer> <Customer> - <account_num>97722445130</account_num> + <accountNum>97722445130</accountNum> <lname>Gentry</lname> <fname>Rodney</fname> <mi>R.</mi> @@ -21459,28 +21459,28 @@ <address3></address3> <address4></address4> <city>Newton</city> - <state_province>BC</state_province> - <postal_code>74354</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>74354</postalCode> <country>Canada</country> <phone1>758-555-1952</phone1> <phone2>169-555-2402</phone2> <birthdate>26.05.1929</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-10-17</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-10-17</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Rodney Gentry</fullname> <test></test> </Customer> <Customer> - <account_num>97740979194</account_num> + <accountNum>97740979194</accountNum> <lname>Heckman</lname> <fname>Lillian</fname> <mi>V.</mi> @@ -21489,28 +21489,28 @@ <address3></address3> <address4></address4> <city>Coronado</city> - <state_province>CA</state_province> - <postal_code>28984</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>28984</postalCode> <country>USA</country> <phone1>239-555-9473</phone1> <phone2>658-555-3438</phone2> <birthdate>10.10.1962</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-04-16</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-04-16</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Lillian Heckman</fullname> <test></test> </Customer> <Customer> - <account_num>97753086686</account_num> + <accountNum>97753086686</accountNum> <lname>Reasoner</lname> <fname>Donald</fname> <mi></mi> @@ -21519,28 +21519,28 @@ <address3></address3> <address4></address4> <city>Vancouver</city> - <state_province>BC</state_province> - <postal_code>28584</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>28584</postalCode> <country>Canada</country> <phone1>797-555-6395</phone1> <phone2>754-555-1045</phone2> <birthdate>23.07.1974</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-05-18</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-05-18</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Donald Reasoner</fullname> <test></test> </Customer> <Customer> - <account_num>97753365635</account_num> + <accountNum>97753365635</accountNum> <lname>Wheeler</lname> <fname>Melissa</fname> <mi>E.</mi> @@ -21549,28 +21549,28 @@ <address3></address3> <address4></address4> <city>N. Vancouver</city> - <state_province>BC</state_province> - <postal_code>16295</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>16295</postalCode> <country>Canada</country> <phone1>300-555-3545</phone1> <phone2>127-555-6052</phone2> <birthdate>12.08.1929</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-06-22</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-06-22</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Melissa Wheeler</fullname> <test></test> </Customer> <Customer> - <account_num>97793137431</account_num> + <accountNum>97793137431</accountNum> <lname>Weller</lname> <fname>Samantha</fname> <mi>R.</mi> @@ -21579,28 +21579,28 @@ <address3></address3> <address4></address4> <city>Acapulco</city> - <state_province>Guerrero</state_province> - <postal_code>54763</postal_code> + <stateProvince>Guerrero</stateProvince> + <postalCode>54763</postalCode> <country>Mexico</country> <phone1>220-555-2752</phone1> <phone2>485-555-5945</phone2> <birthdate>06.12.1925</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-11-03</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-11-03</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Samantha Weller</fullname> <test></test> </Customer> <Customer> - <account_num>97820308208</account_num> + <accountNum>97820308208</accountNum> <lname>Bloomberg</lname> <fname>Ian</fname> <mi>J.</mi> @@ -21609,28 +21609,28 @@ <address3></address3> <address4></address4> <city>Grossmont</city> - <state_province>CA</state_province> - <postal_code>34929</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>34929</postalCode> <country>USA</country> <phone1>998-555-4448</phone1> <phone2>232-555-6498</phone2> <birthdate>03.02.1910</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-03-26</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-03-26</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Ian Bloomberg</fullname> <test></test> </Customer> <Customer> - <account_num>97831739783</account_num> + <accountNum>97831739783</accountNum> <lname>Netz</lname> <fname>Merav</fname> <mi></mi> @@ -21639,28 +21639,28 @@ <address3></address3> <address4></address4> <city>Redmond</city> - <state_province>WA</state_province> - <postal_code>62621</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>62621</postalCode> <country>USA</country> <phone1>940-555-2284</phone1> <phone2>613-555-5019</phone2> <birthdate>04.10.1953</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-09-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-09-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Merav Netz</fullname> <test></test> </Customer> <Customer> - <account_num>97832914600</account_num> + <accountNum>97832914600</accountNum> <lname>Green</lname> <fname>Maria</fname> <mi>A.</mi> @@ -21669,28 +21669,28 @@ <address3></address3> <address4></address4> <city>National City</city> - <state_province>CA</state_province> - <postal_code>81655</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>81655</postalCode> <country>USA</country> <phone1>728-555-9348</phone1> <phone2>271-555-1941</phone2> <birthdate>17.09.1913</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-08-04</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-08-04</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Maria Green</fullname> <test></test> </Customer> <Customer> - <account_num>97838751077</account_num> + <accountNum>97838751077</accountNum> <lname>Bobbitt</lname> <fname>Virginia</fname> <mi></mi> @@ -21699,28 +21699,28 @@ <address3></address3> <address4></address4> <city>Marysville</city> - <state_province>WA</state_province> - <postal_code>52447</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>52447</postalCode> <country>USA</country> <phone1>933-555-9469</phone1> <phone2>913-555-2748</phone2> <birthdate>27.02.1970</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-11-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-11-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Virginia Bobbitt</fullname> <test></test> </Customer> <Customer> - <account_num>97846212983</account_num> + <accountNum>97846212983</accountNum> <lname>Boston</lname> <fname>Stanley</fname> <mi>L.</mi> @@ -21729,28 +21729,28 @@ <address3></address3> <address4></address4> <city>Kirkland</city> - <state_province>WA</state_province> - <postal_code>37643</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>37643</postalCode> <country>USA</country> <phone1>744-555-6162</phone1> <phone2>594-555-7298</phone2> <birthdate>23.11.1971</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-01-09</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-01-09</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Stanley Boston</fullname> <test></test> </Customer> <Customer> - <account_num>97898795008</account_num> + <accountNum>97898795008</accountNum> <lname>Barry</lname> <fname>Matthew</fname> <mi>J.</mi> @@ -21759,28 +21759,28 @@ <address3></address3> <address4></address4> <city>Royal Oak</city> - <state_province>BC</state_province> - <postal_code>73596</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>73596</postalCode> <country>Canada</country> <phone1>971-555-4912</phone1> <phone2>359-555-6734</phone2> <birthdate>23.10.1916</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-09-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Matthew Barry</fullname> <test></test> </Customer> <Customer> - <account_num>97904030680</account_num> + <accountNum>97904030680</accountNum> <lname>Chang</lname> <fname>Scott</fname> <mi>A.</mi> @@ -21789,28 +21789,28 @@ <address3></address3> <address4></address4> <city>Spring Valley</city> - <state_province>CA</state_province> - <postal_code>24954</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>24954</postalCode> <country>USA</country> <phone1>805-555-9234</phone1> <phone2>302-555-4569</phone2> <birthdate>16.11.1963</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-07-17</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-07-17</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Scott Chang</fullname> <test></test> </Customer> <Customer> - <account_num>97918031811</account_num> + <accountNum>97918031811</accountNum> <lname>Carreras</lname> <fname>Melvin</fname> <mi>R.</mi> @@ -21819,28 +21819,28 @@ <address3></address3> <address4></address4> <city>Spring Valley</city> - <state_province>CA</state_province> - <postal_code>27069</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>27069</postalCode> <country>USA</country> <phone1>155-555-6612</phone1> <phone2>990-555-2634</phone2> <birthdate>20.10.1917</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-05-24</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-05-24</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Melvin Carreras</fullname> <test></test> </Customer> <Customer> - <account_num>97948415875</account_num> + <accountNum>97948415875</accountNum> <lname>Burtis</lname> <fname>Karlyn</fname> <mi>J.</mi> @@ -21849,28 +21849,28 @@ <address3></address3> <address4></address4> <city>San Francisco</city> - <state_province>CA</state_province> - <postal_code>43587</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>43587</postalCode> <country>USA</country> <phone1>251-555-4219</phone1> <phone2>955-555-8098</phone2> <birthdate>11.08.1913</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-08-24</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-08-24</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Karlyn Burtis</fullname> <test></test> </Customer> <Customer> - <account_num>97952031493</account_num> + <accountNum>97952031493</accountNum> <lname>Sanders</lname> <fname>Daniel</fname> <mi>S.</mi> @@ -21879,28 +21879,28 @@ <address3></address3> <address4></address4> <city>Burlingame</city> - <state_province>CA</state_province> - <postal_code>11864</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>11864</postalCode> <country>USA</country> <phone1>763-555-3884</phone1> <phone2>767-555-4791</phone2> <birthdate>10.08.1971</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-07-07</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-07-07</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Daniel Sanders</fullname> <test></test> </Customer> <Customer> - <account_num>97962105870</account_num> + <accountNum>97962105870</accountNum> <lname>Steinberg</lname> <fname>Concetta</fname> <mi>J.</mi> @@ -21909,28 +21909,28 @@ <address3></address3> <address4></address4> <city>Portland</city> - <state_province>OR</state_province> - <postal_code>67251</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>67251</postalCode> <country>USA</country> <phone1>882-555-9119</phone1> <phone2>994-555-3541</phone2> <birthdate>27.08.1954</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-10-07</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-10-07</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Concetta Steinberg</fullname> <test></test> </Customer> <Customer> - <account_num>97962899804</account_num> + <accountNum>97962899804</accountNum> <lname>Viellieux</lname> <fname>William</fname> <mi>D.</mi> @@ -21939,28 +21939,28 @@ <address3></address3> <address4></address4> <city>Camacho</city> - <state_province>Zacatecas</state_province> - <postal_code>16902</postal_code> + <stateProvince>Zacatecas</stateProvince> + <postalCode>16902</postalCode> <country>Mexico</country> <phone1>517-555-7412</phone1> <phone2>167-555-2519</phone2> <birthdate>09.05.1957</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-03-20</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-03-20</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>William Viellieux</fullname> <test></test> </Customer> <Customer> - <account_num>97964364290</account_num> + <accountNum>97964364290</accountNum> <lname>Baugh</lname> <fname>Ted</fname> <mi></mi> @@ -21969,28 +21969,28 @@ <address3></address3> <address4></address4> <city>Long Beach</city> - <state_province>CA</state_province> - <postal_code>49531</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>49531</postalCode> <country>USA</country> <phone1>898-555-5934</phone1> <phone2>417-555-8898</phone2> <birthdate>17.05.1951</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-07-27</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-07-27</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Ted Baugh</fullname> <test></test> </Customer> <Customer> - <account_num>97981149554</account_num> + <accountNum>97981149554</accountNum> <lname>Mullins</lname> <fname>Josh</fname> <mi>B.</mi> @@ -21999,28 +21999,28 @@ <address3></address3> <address4></address4> <city>Downey</city> - <state_province>CA</state_province> - <postal_code>22839</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>22839</postalCode> <country>USA</country> <phone1>904-555-8851</phone1> <phone2>862-555-3502</phone2> <birthdate>27.10.1925</birthdate> - <marital_status>S</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-07-10</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-07-10</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Josh Mullins</fullname> <test></test> </Customer> <Customer> - <account_num>97982876896</account_num> + <accountNum>97982876896</accountNum> <lname>Maes</lname> <fname>Catherine</fname> <mi>J.</mi> @@ -22029,28 +22029,28 @@ <address3></address3> <address4></address4> <city>Palo Alto</city> - <state_province>CA</state_province> - <postal_code>36842</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>36842</postalCode> <country>USA</country> <phone1>408-555-6001</phone1> <phone2>235-555-8509</phone2> <birthdate>13.08.1912</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-02-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-02-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Catherine Maes</fullname> <test></test> </Customer> <Customer> - <account_num>97992334365</account_num> + <accountNum>97992334365</accountNum> <lname>Trujillo</lname> <fname>Renee</fname> <mi>L.</mi> @@ -22059,28 +22059,28 @@ <address3></address3> <address4></address4> <city>Everett</city> - <state_province>WA</state_province> - <postal_code>75310</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>75310</postalCode> <country>USA</country> <phone1>327-555-5209</phone1> <phone2>593-555-8402</phone2> <birthdate>16.11.1952</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-07-17</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-07-17</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Renee Trujillo</fullname> <test></test> </Customer> <Customer> - <account_num>99473128318</account_num> + <accountNum>99473128318</accountNum> <lname>Durocher</lname> <fname>Matthew</fname> <mi>T.</mi> @@ -22089,28 +22089,28 @@ <address3></address3> <address4></address4> <city>Cliffside</city> - <state_province>BC</state_province> - <postal_code>46966</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>46966</postalCode> <country>Canada</country> <phone1>692-555-8077</phone1> <phone2>696-555-8984</phone2> <birthdate>06.11.1980</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-06-17</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-06-17</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Matthew Durocher</fullname> <test></test> </Customer> <Customer> - <account_num>99486850500</account_num> + <accountNum>99486850500</accountNum> <lname>Terbush</lname> <fname>Hazel</fname> <mi></mi> @@ -22119,28 +22119,28 @@ <address3></address3> <address4></address4> <city>Beaverton</city> - <state_province>OR</state_province> - <postal_code>29647</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>29647</postalCode> <country>USA</country> <phone1>931-555-6336</phone1> <phone2>143-555-9757</phone2> <birthdate>26.02.1930</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-02-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-02-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Hazel Terbush</fullname> <test></test> </Customer> <Customer> - <account_num>99493180513</account_num> + <accountNum>99493180513</accountNum> <lname>Poisson</lname> <fname>Arturo</fname> <mi></mi> @@ -22149,28 +22149,28 @@ <address3></address3> <address4></address4> <city>Lebanon</city> - <state_province>OR</state_province> - <postal_code>63084</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>63084</postalCode> <country>USA</country> <phone1>566-555-4629</phone1> <phone2>877-555-5078</phone2> <birthdate>26.11.1959</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-04-20</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-04-20</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Arturo Poisson</fullname> <test></test> </Customer> <Customer> - <account_num>99500476121</account_num> + <accountNum>99500476121</accountNum> <lname>Cosby</lname> <fname>Shaharia</fname> <mi>J.</mi> @@ -22179,28 +22179,28 @@ <address3></address3> <address4></address4> <city>Haney</city> - <state_province>BC</state_province> - <postal_code>84634</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>84634</postalCode> <country>Canada</country> <phone1>947-555-3150</phone1> <phone2>466-555-6114</phone2> <birthdate>21.07.1933</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-09-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-09-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Shaharia Cosby</fullname> <test></test> </Customer> <Customer> - <account_num>99520319104</account_num> + <accountNum>99520319104</accountNum> <lname>Oss</lname> <fname>Amir</fname> <mi></mi> @@ -22209,28 +22209,28 @@ <address3></address3> <address4></address4> <city>Richmond</city> - <state_province>BC</state_province> - <postal_code>84233</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>84233</postalCode> <country>Canada</country> <phone1>604-555-9071</phone1> <phone2>562-555-3721</phone2> <birthdate>23.02.1933</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-02-05</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-02-05</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Amir Oss</fullname> <test></test> </Customer> <Customer> - <account_num>99523033499</account_num> + <accountNum>99523033499</accountNum> <lname>Smith</lname> <fname>John</fname> <mi>P.</mi> @@ -22239,28 +22239,28 @@ <address3></address3> <address4></address4> <city>Burien</city> - <state_province>WA</state_province> - <postal_code>71944</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>71944</postalCode> <country>USA</country> <phone1>108-555-6221</phone1> <phone2>835-555-8728</phone2> <birthdate>12.03.1958</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-12-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-12-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>John Smith</fullname> <test></test> </Customer> <Customer> - <account_num>99524734020</account_num> + <accountNum>99524734020</accountNum> <lname>Christensen</lname> <fname>Christel</fname> <mi>E.</mi> @@ -22269,28 +22269,28 @@ <address3></address3> <address4></address4> <city>Vancouver</city> - <state_province>BC</state_province> - <postal_code>11414</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>11414</postalCode> <country>Canada</country> <phone1>927-555-5429</phone1> <phone2>293-555-8622</phone2> <birthdate>17.09.1966</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-06-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-06-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Christel Christensen</fullname> <test></test> </Customer> <Customer> - <account_num>99524852037</account_num> + <accountNum>99524852037</accountNum> <lname>Pectol</lname> <fname>Valerie</fname> <mi>A.</mi> @@ -22299,28 +22299,28 @@ <address3></address3> <address4></address4> <city>West Covina</city> - <state_province>CA</state_province> - <postal_code>90578</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>90578</postalCode> <country>USA</country> <phone1>454-555-1207</phone1> <phone2>589-555-3257</phone2> <birthdate>27.10.1944</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-09-02</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-09-02</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Valerie Pectol</fullname> <test></test> </Customer> <Customer> - <account_num>99528794884</account_num> + <accountNum>99528794884</accountNum> <lname>Baker</lname> <fname>Cornelius</fname> <mi>J.</mi> @@ -22329,28 +22329,28 @@ <address3></address3> <address4></address4> <city>Woodland Hills</city> - <state_province>CA</state_province> - <postal_code>95208</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>95208</postalCode> <country>USA</country> <phone1>396-555-8043</phone1> <phone2>969-555-1778</phone2> <birthdate>12.09.1928</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-04-14</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-04-14</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Cornelius Baker</fullname> <test></test> </Customer> <Customer> - <account_num>99532480239</account_num> + <accountNum>99532480239</accountNum> <lname>Finke</lname> <fname>Fay</fname> <mi>L.</mi> @@ -22359,28 +22359,28 @@ <address3></address3> <address4></address4> <city>San Gabriel</city> - <state_province>CA</state_province> - <postal_code>15243</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>15243</postalCode> <country>USA</country> <phone1>185-555-6107</phone1> <phone2>627-555-7700</phone2> <birthdate>25.09.1958</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-08-09</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-08-09</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Fay Finke</fullname> <test></test> </Customer> <Customer> - <account_num>99548391103</account_num> + <accountNum>99548391103</accountNum> <lname>Beutel</lname> <fname>Allison</fname> <mi>A.</mi> @@ -22389,28 +22389,28 @@ <address3></address3> <address4></address4> <city>Grossmont</city> - <state_province>CA</state_province> - <postal_code>85034</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>85034</postalCode> <country>USA</country> <phone1>389-555-6229</phone1> <phone2>370-555-8507</phone2> <birthdate>24.10.1933</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-11-22</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1990-11-22</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Allison Beutel</fullname> <test></test> </Customer> <Customer> - <account_num>99567112922</account_num> + <accountNum>99567112922</accountNum> <lname>Duvalle</lname> <fname>Ann</fname> <mi></mi> @@ -22419,28 +22419,28 @@ <address3></address3> <address4></address4> <city>San Andres</city> - <state_province>DF</state_province> - <postal_code>70230</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>70230</postalCode> <country>Mexico</country> <phone1>200-555-2921</phone1> <phone2>950-555-4057</phone2> <birthdate>12.03.1918</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-11-24</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-11-24</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Ann Duvalle</fullname> <test></test> </Customer> <Customer> - <account_num>99577841758</account_num> + <accountNum>99577841758</accountNum> <lname>Sloper</lname> <fname>Kari</fname> <mi></mi> @@ -22449,28 +22449,28 @@ <address3></address3> <address4></address4> <city>Richmond</city> - <state_province>CA</state_province> - <postal_code>71842</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>71842</postalCode> <country>USA</country> <phone1>427-555-1672</phone1> <phone2>716-555-3493</phone2> <birthdate>23.04.1945</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-05-24</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-05-24</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Kari Sloper</fullname> <test></test> </Customer> <Customer> - <account_num>99578673243</account_num> + <accountNum>99578673243</accountNum> <lname>Weinzimmer</lname> <fname>Patricia</fname> <mi>M.</mi> @@ -22479,28 +22479,28 @@ <address3></address3> <address4></address4> <city>Downey</city> - <state_province>CA</state_province> - <postal_code>20172</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>20172</postalCode> <country>USA</country> <phone1>852-555-6568</phone1> <phone2>348-555-1903</phone2> <birthdate>06.02.1911</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-04-22</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-04-22</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Patricia Weinzimmer</fullname> <test></test> </Customer> <Customer> - <account_num>99607539176</account_num> + <accountNum>99607539176</accountNum> <lname>Moore</lname> <fname>Raven</fname> <mi></mi> @@ -22509,28 +22509,28 @@ <address3></address3> <address4></address4> <city>Ballard</city> - <state_province>WA</state_province> - <postal_code>41322</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>41322</postalCode> <country>USA</country> <phone1>202-555-3946</phone1> <phone2>137-555-8968</phone2> <birthdate>09.01.1935</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-05-12</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-05-12</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Raven Moore</fullname> <test></test> </Customer> <Customer> - <account_num>99607823491</account_num> + <accountNum>99607823491</accountNum> <lname>Chaw</lname> <fname>Susan</fname> <mi>C.</mi> @@ -22539,28 +22539,28 @@ <address3></address3> <address4></address4> <city>San Diego</city> - <state_province>CA</state_province> - <postal_code>20650</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>20650</postalCode> <country>USA</country> <phone1>298-555-1553</phone1> <phone2>102-555-5432</phone2> <birthdate>27.11.1930</birthdate> - <marital_status>S</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1994-04-01</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-04-01</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Susan Chaw</fullname> <test></test> </Customer> <Customer> - <account_num>99621245265</account_num> + <accountNum>99621245265</accountNum> <lname>Reitzel</lname> <fname>Steve</fname> <mi>W.</mi> @@ -22569,28 +22569,28 @@ <address3></address3> <address4></address4> <city>Santa Monica</city> - <state_province>CA</state_province> - <postal_code>87926</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>87926</postalCode> <country>USA</country> <phone1>810-555-1218</phone1> <phone2>813-555-2125</phone2> <birthdate>10.03.1931</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-03-12</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-03-12</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Steve Reitzel</fullname> <test></test> </Customer> <Customer> - <account_num>99622151851</account_num> + <accountNum>99622151851</accountNum> <lname>Horbach</lname> <fname>Edie</fname> <mi></mi> @@ -22599,28 +22599,28 @@ <address3></address3> <address4></address4> <city>Camacho</city> - <state_province>Zacatecas</state_province> - <postal_code>44314</postal_code> + <stateProvince>Zacatecas</stateProvince> + <postalCode>44314</postalCode> <country>Mexico</country> <phone1>929-555-6453</phone1> <phone2>141-555-9875</phone2> <birthdate>27.02.1913</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-07-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-07-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Edie Horbach</fullname> <test></test> </Customer> <Customer> - <account_num>99645835757</account_num> + <accountNum>99645835757</accountNum> <lname>Knobel</lname> <fname>Lois</fname> <mi>J.</mi> @@ -22629,28 +22629,28 @@ <address3></address3> <address4></address4> <city>Colma</city> - <state_province>CA</state_province> - <postal_code>77752</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>77752</postalCode> <country>USA</country> <phone1>564-555-4746</phone1> <phone2>214-555-8854</phone2> <birthdate>25.07.1974</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-02-23</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-02-23</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Lois Knobel</fullname> <test></test> </Customer> <Customer> - <account_num>99701105356</account_num> + <accountNum>99701105356</accountNum> <lname>Hope</lname> <fname>Rachel</fname> <mi>C.</mi> @@ -22659,28 +22659,28 @@ <address3></address3> <address4></address4> <city>Burbank</city> - <state_province>CA</state_province> - <postal_code>26594</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>26594</postalCode> <country>USA</country> <phone1>944-555-3268</phone1> <phone2>464-555-6232</phone2> <birthdate>17.11.1910</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-03-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-03-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Rachel Hope</fullname> <test></test> </Customer> <Customer> - <account_num>99721339941</account_num> + <accountNum>99721339941</accountNum> <lname>Fisher</lname> <fname>Pete</fname> <mi>A.</mi> @@ -22689,28 +22689,28 @@ <address3></address3> <address4></address4> <city>Issaquah</city> - <state_province>WA</state_province> - <postal_code>98901</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>98901</postalCode> <country>USA</country> <phone1>602-555-9189</phone1> <phone2>560-555-3839</phone2> <birthdate>16.02.1942</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-10-26</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-10-26</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Pete Fisher</fullname> <test></test> </Customer> <Customer> - <account_num>99722868800</account_num> + <accountNum>99722868800</accountNum> <lname>Dabit</lname> <fname>Ida</fname> <mi>H.</mi> @@ -22719,28 +22719,28 @@ <address3></address3> <address4></address4> <city>Vancouver</city> - <state_province>BC</state_province> - <postal_code>13905</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>13905</postalCode> <country>Canada</country> <phone1>106-555-6339</phone1> <phone2>833-555-8846</phone2> <birthdate>13.03.1941</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-08-28</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-08-28</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Ida Dabit</fullname> <test></test> </Customer> <Customer> - <account_num>99724832177</account_num> + <accountNum>99724832177</accountNum> <lname>Turner</lname> <fname>Shawn</fname> <mi>M.</mi> @@ -22749,28 +22749,28 @@ <address3></address3> <address4></address4> <city>San Carlos</city> - <state_province>CA</state_province> - <postal_code>52373</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>52373</postalCode> <country>USA</country> <phone1>925-555-5546</phone1> <phone2>291-555-8739</phone2> <birthdate>16.06.1911</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-10-06</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-10-06</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Shawn Turner</fullname> <test></test> </Customer> <Customer> - <account_num>99733871221</account_num> + <accountNum>99733871221</accountNum> <lname>Clark</lname> <fname>Mike</fname> <mi>T.</mi> @@ -22779,28 +22779,28 @@ <address3></address3> <address4></address4> <city>Oak Bay</city> - <state_province>BC</state_province> - <postal_code>62463</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>62463</postalCode> <country>Canada</country> <phone1>452-555-1325</phone1> <phone2>586-555-3375</phone2> <birthdate>26.12.1917</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-09-26</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-09-26</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Mike Clark</fullname> <test></test> </Customer> <Customer> - <account_num>99734552502</account_num> + <accountNum>99734552502</accountNum> <lname>Schimanski</lname> <fname>Arlene</fname> <mi></mi> @@ -22809,28 +22809,28 @@ <address3></address3> <address4></address4> <city>Langford</city> - <state_province>BC</state_province> - <postal_code>37169</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>37169</postalCode> <country>Canada</country> <phone1>394-555-8160</phone1> <phone2>967-555-1896</phone2> <birthdate>08.08.1933</birthdate> - <marital_status>S</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-11-08</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-11-08</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Arlene Schimanski</fullname> <test></test> </Customer> <Customer> - <account_num>99740051031</account_num> + <accountNum>99740051031</accountNum> <lname>Alumbaugh</lname> <fname>Carolyn</fname> <mi></mi> @@ -22839,28 +22839,28 @@ <address3></address3> <address4></address4> <city>Lemon Grove</city> - <state_province>CA</state_province> - <postal_code>56203</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>56203</postalCode> <country>USA</country> <phone1>183-555-6225</phone1> <phone2>976-555-4735</phone2> <birthdate>19.04.1925</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-04-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-04-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Carolyn Alumbaugh</fullname> <test></test> </Customer> <Customer> - <account_num>99765977263</account_num> + <accountNum>99765977263</accountNum> <lname>Benson</lname> <fname>Michael</fname> <mi>E.</mi> @@ -22869,28 +22869,28 @@ <address3></address3> <address4></address4> <city>Port Hammond</city> - <state_province>BC</state_province> - <postal_code>26995</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>26995</postalCode> <country>Canada</country> <phone1>499-555-8606</phone1> <phone2>480-555-1885</phone2> <birthdate>26.04.1944</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-03-22</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-03-22</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Michael Benson</fullname> <test></test> </Customer> <Customer> - <account_num>99771776199</account_num> + <accountNum>99771776199</accountNum> <lname>Rusch</lname> <fname>Ted</fname> <mi>W.</mi> @@ -22899,28 +22899,28 @@ <address3></address3> <address4></address4> <city>Arcadia</city> - <state_province>CA</state_province> - <postal_code>12191</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>12191</postalCode> <country>USA</country> <phone1>310-555-5299</phone1> <phone2>160-555-6435</phone2> <birthdate>22.08.1973</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-01-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-01-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Ted Rusch</fullname> <test></test> </Customer> <Customer> - <account_num>99775676131</account_num> + <accountNum>99775676131</accountNum> <lname>Cocadiz</lname> <fname>David</fname> <mi>W.</mi> @@ -22929,28 +22929,28 @@ <address3></address3> <address4></address4> <city>Spokane</city> - <state_province>WA</state_province> - <postal_code>48144</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>48144</postalCode> <country>USA</country> <phone1>537-555-4049</phone1> <phone2>826-555-5870</phone2> <birthdate>20.03.1950</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-09-04</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1992-09-04</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>David Cocadiz</fullname> <test></test> </Customer> <Customer> - <account_num>99785718321</account_num> + <accountNum>99785718321</accountNum> <lname>Mcgough</lname> <fname>Lorraine</fname> <mi>C.</mi> @@ -22959,28 +22959,28 @@ <address3></address3> <address4></address4> <city>Colma</city> - <state_province>CA</state_province> - <postal_code>98500</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>98500</postalCode> <country>USA</country> <phone1>372-555-8370</phone1> <phone2>768-555-3706</phone2> <birthdate>10.11.1960</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-02-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-02-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Lorraine Mcgough</fullname> <test></test> </Customer> <Customer> - <account_num>99788395166</account_num> + <accountNum>99788395166</accountNum> <lname>King</lname> <fname>Bennie</fname> <mi>C.</mi> @@ -22989,28 +22989,28 @@ <address3></address3> <address4></address4> <city>Mexico City</city> - <state_province>Mexico</state_province> - <postal_code>26294</postal_code> + <stateProvince>Mexico</stateProvince> + <postalCode>26294</postalCode> <country>Mexico</country> <phone1>622-555-5749</phone1> <phone2>557-555-1771</phone2> <birthdate>11.07.1946</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-08-15</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1990-08-15</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Bennie King</fullname> <test></test> </Customer> <Customer> - <account_num>99788545370</account_num> + <accountNum>99788545370</accountNum> <lname>Smith</lname> <fname>Melissa</fname> <mi>A.</mi> @@ -23019,28 +23019,28 @@ <address3></address3> <address4></address4> <city>Seattle</city> - <state_province>WA</state_province> - <postal_code>42812</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>42812</postalCode> <country>USA</country> <phone1>957-555-7013</phone1> <phone2>522-555-7235</phone2> <birthdate>26.02.1973</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-07-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Melissa Smith</fullname> <test></test> </Customer> <Customer> - <account_num>99796656370</account_num> + <accountNum>99796656370</accountNum> <lname>Campbell</lname> <fname>M. Patricia</fname> <mi></mi> @@ -23049,28 +23049,28 @@ <address3></address3> <address4></address4> <city>West Covina</city> - <state_province>CA</state_province> - <postal_code>83796</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>83796</postalCode> <country>USA</country> <phone1>330-555-3020</phone1> <phone2>333-555-3927</phone2> <birthdate>07.01.1936</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-05-04</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-05-04</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>M. Patricia Campbell</fullname> <test></test> </Customer> <Customer> - <account_num>99799048900</account_num> + <accountNum>99799048900</accountNum> <lname>Watson</lname> <fname>Selene</fname> <mi>M.</mi> @@ -23079,28 +23079,28 @@ <address3></address3> <address4></address4> <city>National City</city> - <state_province>CA</state_province> - <postal_code>66476</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>66476</postalCode> <country>USA</country> <phone1>449-555-8256</phone1> <phone2>560-555-2678</phone2> <birthdate>21.08.1950</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-05-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-05-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Selene Watson</fullname> <test></test> </Customer> <Customer> - <account_num>97993208800</account_num> + <accountNum>97993208800</accountNum> <lname>Barrington</lname> <fname>Isabel</fname> <mi>A.</mi> @@ -23109,28 +23109,28 @@ <address3></address3> <address4></address4> <city>Acapulco</city> - <state_province>Guerrero</state_province> - <postal_code>29184</postal_code> + <stateProvince>Guerrero</stateProvince> + <postalCode>29184</postalCode> <country>Mexico</country> <phone1>754-555-9987</phone1> <phone2>888-555-3037</phone2> <birthdate>10.09.1969</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-06-10</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-06-10</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Isabel Barrington</fullname> <test></test> </Customer> <Customer> - <account_num>98005648851</account_num> + <accountNum>98005648851</accountNum> <lname>Zuluaga</lname> <fname>Donna</fname> <mi>J.</mi> @@ -23139,28 +23139,28 @@ <address3></address3> <address4></address4> <city>Tlaxiaco</city> - <state_province>Oaxaca</state_province> - <postal_code>79373</postal_code> + <stateProvince>Oaxaca</stateProvince> + <postalCode>79373</postalCode> <country>Mexico</country> <phone1>696-555-7823</phone1> <phone2>369-555-1559</phone2> <birthdate>08.02.1974</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-09-19</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-09-19</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Donna Zuluaga</fullname> <test></test> </Customer> <Customer> - <account_num>98007789254</account_num> + <accountNum>98007789254</accountNum> <lname>Abo</lname> <fname>Parker</fname> <mi>S.</mi> @@ -23169,28 +23169,28 @@ <address3></address3> <address4></address4> <city>Long Beach</city> - <state_province>CA</state_province> - <postal_code>26971</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>26971</postalCode> <country>USA</country> <phone1>485-555-5887</phone1> <phone2>266-555-2137</phone2> <birthdate>02.01.1978</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-09-11</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-09-11</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Parker Abo</fullname> <test></test> </Customer> <Customer> - <account_num>98011265397</account_num> + <accountNum>98011265397</accountNum> <lname>Azzolino</lname> <fname>Jacob</fname> <mi>S.</mi> @@ -23199,28 +23199,28 @@ <address3></address3> <address4></address4> <city>Chula Vista</city> - <state_province>CA</state_province> - <postal_code>96762</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>96762</postalCode> <country>USA</country> <phone1>689-555-6009</phone1> <phone2>670-555-8287</phone2> <birthdate>10.02.1927</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-09-22</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-09-22</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Jacob Azzolino</fullname> <test></test> </Customer> <Customer> - <account_num>98029198646</account_num> + <accountNum>98029198646</accountNum> <lname>Archuleta</lname> <fname>Grant</fname> <mi>S.</mi> @@ -23229,28 +23229,28 @@ <address3></address3> <address4></address4> <city>Burien</city> - <state_province>WA</state_province> - <postal_code>81958</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>81958</postalCode> <country>USA</country> <phone1>500-555-2702</phone1> <phone2>350-555-3837</phone2> <birthdate>22.02.1944</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-01-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-01-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Grant Archuleta</fullname> <test></test> </Customer> <Customer> - <account_num>98041783571</account_num> + <accountNum>98041783571</accountNum> <lname>Campos</lname> <fname>Melvin</fname> <mi>J.</mi> @@ -23259,28 +23259,28 @@ <address3></address3> <address4></address4> <city>Mexico City</city> - <state_province>Mexico</state_province> - <postal_code>18912</postal_code> + <stateProvince>Mexico</stateProvince> + <postalCode>18912</postalCode> <country>Mexico</country> <phone1>727-555-1452</phone1> <phone2>116-555-3273</phone2> <birthdate>04.11.1933</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-06-20</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-06-20</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Melvin Campos</fullname> <test></test> </Customer> <Customer> - <account_num>98074619174</account_num> + <accountNum>98074619174</accountNum> <lname>Unfried</lname> <fname>Gary</fname> <mi>A.</mi> @@ -23289,28 +23289,28 @@ <address3></address3> <address4></address4> <city>Glendale</city> - <state_province>CA</state_province> - <postal_code>69269</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>69269</postalCode> <country>USA</country> <phone1>561-555-5773</phone1> <phone2>958-555-1109</phone2> <birthdate>10.06.1930</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-11-14</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-11-14</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Gary Unfried</fullname> <test></test> </Customer> <Customer> - <account_num>98111376200</account_num> + <accountNum>98111376200</accountNum> <lname>Bozeman</lname> <fname>Roberta</fname> <mi></mi> @@ -23319,28 +23319,28 @@ <address3></address3> <address4></address4> <city>Hidalgo</city> - <state_province>Zacatecas</state_province> - <postal_code>71384</postal_code> + <stateProvince>Zacatecas</stateProvince> + <postalCode>71384</postalCode> <country>Mexico</country> <phone1>811-555-3151</phone1> <phone2>746-555-8173</phone2> <birthdate>22.04.1928</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-09-02</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-09-02</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Roberta Bozeman</fullname> <test></test> </Customer> <Customer> - <account_num>98114305138</account_num> + <accountNum>98114305138</accountNum> <lname>Kassab</lname> <fname>Jeremy</fname> <mi>J.</mi> @@ -23349,28 +23349,28 @@ <address3></address3> <address4></address4> <city>Palo Alto</city> - <state_province>CA</state_province> - <postal_code>87902</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>87902</postalCode> <country>USA</country> <phone1>247-555-4416</phone1> <phone2>712-555-4637</phone2> <birthdate>10.10.1956</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-08-26</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-08-26</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Jeremy Kassab</fullname> <test></test> </Customer> <Customer> - <account_num>98136272430</account_num> + <accountNum>98136272430</accountNum> <lname>Enlow</lname> <fname>Phyllis</fname> <mi>B.</mi> @@ -23379,28 +23379,28 @@ <address3></address3> <address4></address4> <city>Marysville</city> - <state_province>WA</state_province> - <postal_code>29887</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>29887</postalCode> <country>USA</country> <phone1>632-555-2683</phone1> <phone2>635-555-3590</phone2> <birthdate>18.10.1918</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-03-07</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-03-07</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Phyllis Enlow</fullname> <test></test> </Customer> <Customer> - <account_num>98149973154</account_num> + <accountNum>98149973154</accountNum> <lname>Lee</lname> <fname>Gene</fname> <mi>H.</mi> @@ -23409,28 +23409,28 @@ <address3></address3> <address4></address4> <city>Concord</city> - <state_province>CA</state_province> - <postal_code>12567</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>12567</postalCode> <country>USA</country> <phone1>751-555-7918</phone1> <phone2>862-555-2340</phone2> <birthdate>05.06.1933</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-03-04</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-03-04</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Gene Lee</fullname> <test></test> </Customer> <Customer> - <account_num>98164113759</account_num> + <accountNum>98164113759</accountNum> <lname>Skapinok</lname> <fname>Linda</fname> <mi>I.</mi> @@ -23439,28 +23439,28 @@ <address3></address3> <address4></address4> <city>Anacortes</city> - <state_province>WA</state_province> - <postal_code>46005</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>46005</postalCode> <country>USA</country> <phone1>385-555-6211</phone1> <phone2>936-555-1319</phone2> <birthdate>11.10.1968</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1994-07-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-07-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Linda Skapinok</fullname> <test></test> </Customer> <Customer> - <account_num>98170846104</account_num> + <accountNum>98170846104</accountNum> <lname>Marsden</lname> <fname>Maria</fname> <mi>E.</mi> @@ -23469,28 +23469,28 @@ <address3></address3> <address4></address4> <city>Royal Oak</city> - <state_province>BC</state_province> - <postal_code>67554</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>67554</postalCode> <country>Canada</country> <phone1>766-555-4733</phone1> <phone2>285-555-7697</phone2> <birthdate>27.10.1936</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-04-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-04-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Maria Marsden</fullname> <test></test> </Customer> <Customer> - <account_num>98174960613</account_num> + <accountNum>98174960613</accountNum> <lname>Campbell</lname> <fname>Jeffrey</fname> <mi>D.</mi> @@ -23499,28 +23499,28 @@ <address3></address3> <address4></address4> <city>Oregon City</city> - <state_province>OR</state_province> - <postal_code>67154</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>67154</postalCode> <country>USA</country> <phone1>424-555-1654</phone1> <phone2>382-555-5304</phone2> <birthdate>23.09.1930</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>5</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>5</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-04-24</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1994-04-24</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Jeffrey Campbell</fullname> <test></test> </Customer> <Customer> - <account_num>98190018534</account_num> + <accountNum>98190018534</accountNum> <lname>Roberts</lname> <fname>Leonardo</fname> <mi>H.</mi> @@ -23529,28 +23529,28 @@ <address3></address3> <address4></address4> <city>San Gabriel</city> - <state_province>CA</state_province> - <postal_code>54865</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>54865</postalCode> <country>USA</country> <phone1>827-555-7804</phone1> <phone2>654-555-1311</phone2> <birthdate>18.06.1961</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-04-04</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-04-04</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Clerical</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Leonardo Roberts</fullname> <test></test> </Customer> <Customer> - <account_num>98210306763</account_num> + <accountNum>98210306763</accountNum> <lname>Larkin</lname> <fname>Kathy</fname> <mi>L.</mi> @@ -23559,28 +23559,28 @@ <address3></address3> <address4></address4> <city>Westminster</city> - <state_province>BC</state_province> - <postal_code>20626</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>20626</postalCode> <country>Canada</country> <phone1>747-555-7011</phone1> <phone2>112-555-1204</phone2> <birthdate>18.05.1963</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-02-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-02-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Kathy Larkin</fullname> <test></test> </Customer> <Customer> - <account_num>98214603700</account_num> + <accountNum>98214603700</accountNum> <lname>Bitler</lname> <fname>Joan</fname> <mi></mi> @@ -23589,28 +23589,28 @@ <address3></address3> <address4></address4> <city>Mill Valley</city> - <state_province>CA</state_province> - <postal_code>73498</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>73498</postalCode> <country>USA</country> <phone1>513-555-6447</phone1> <phone2>647-555-8497</phone2> <birthdate>10.11.1942</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-12-07</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-12-07</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Joan Bitler</fullname> <test></test> </Customer> <Customer> - <account_num>98221175074</account_num> + <accountNum>98221175074</accountNum> <lname>Allen</lname> <fname>Jim</fname> <mi>E.</mi> @@ -23619,28 +23619,28 @@ <address3></address3> <address4></address4> <city>Palo Alto</city> - <state_province>CA</state_province> - <postal_code>78129</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>78129</postalCode> <country>USA</country> <phone1>455-555-4283</phone1> <phone2>789-555-3361</phone2> <birthdate>16.03.1921</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-11-14</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-11-14</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Jim Allen</fullname> <test></test> </Customer> <Customer> - <account_num>98226834535</account_num> + <accountNum>98226834535</accountNum> <lname>Worth</lname> <fname>Ella</fname> <mi>J.</mi> @@ -23649,28 +23649,28 @@ <address3></address3> <address4></address4> <city>Newport Beach</city> - <state_province>CA</state_province> - <postal_code>95548</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>95548</postalCode> <country>USA</country> <phone1>904-555-7690</phone1> <phone2>686-555-3940</phone2> <birthdate>10.10.1927</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-11-15</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-11-15</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Ella Worth</fullname> <test></test> </Customer> <Customer> - <account_num>98253892660</account_num> + <accountNum>98253892660</accountNum> <lname>Mauro</lname> <fname>Ivan</fname> <mi>G.</mi> @@ -23679,28 +23679,28 @@ <address3></address3> <address4></address4> <city>Cliffside</city> - <state_province>BC</state_province> - <postal_code>92632</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>92632</postalCode> <country>Canada</country> <phone1>209-555-7811</phone1> <phone2>189-555-1090</phone2> <birthdate>03.04.1966</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-07-22</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-22</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Ivan Mauro</fullname> <test></test> </Customer> <Customer> - <account_num>98285650014</account_num> + <accountNum>98285650014</accountNum> <lname>Stroh</lname> <fname>Sharon</fname> <mi>L.</mi> @@ -23709,28 +23709,28 @@ <address3></address3> <address4></address4> <city>Tacoma</city> - <state_province>WA</state_province> - <postal_code>77828</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>77828</postalCode> <country>USA</country> <phone1>920-555-4504</phone1> <phone2>770-555-5640</phone2> <birthdate>24.04.1957</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-04-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-04-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Sharon Stroh</fullname> <test></test> </Customer> <Customer> - <account_num>98328779935</account_num> + <accountNum>98328779935</accountNum> <lname>Theriault</lname> <fname>Karen</fname> <mi>A.</mi> @@ -23739,28 +23739,28 @@ <address3></address3> <address4></address4> <city>Chula Vista</city> - <state_province>CA</state_province> - <postal_code>14782</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>14782</postalCode> <country>USA</country> <phone1>247-555-3254</phone1> <phone2>535-555-5076</phone2> <birthdate>03.09.1978</birthdate> - <marital_status>S</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-05-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-05-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Karen Theriault</fullname> <test></test> </Customer> <Customer> - <account_num>98345404267</account_num> + <accountNum>98345404267</accountNum> <lname>Ketterman</lname> <fname>Julia</fname> <mi></mi> @@ -23769,28 +23769,28 @@ <address3></address3> <address4></address4> <city>Tixapan</city> - <state_province>DF</state_province> - <postal_code>65138</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>65138</postalCode> <country>Mexico</country> <phone1>671-555-8150</phone1> <phone2>168-555-3486</phone2> <birthdate>18.03.1949</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-10-01</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-10-01</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Julia Ketterman</fullname> <test></test> </Customer> <Customer> - <account_num>98360188603</account_num> + <accountNum>98360188603</accountNum> <lname>Beavers</lname> <fname>Rose</fname> <mi>A.</mi> @@ -23799,28 +23799,28 @@ <address3></address3> <address4></address4> <city>Tixapan</city> - <state_province>DF</state_province> - <postal_code>67253</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>67253</postalCode> <country>Mexico</country> <phone1>260-555-9186</phone1> <phone2>856-555-1551</phone2> <birthdate>27.09.1979</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-04-16</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-04-16</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Rose Beavers</fullname> <test></test> </Customer> <Customer> - <account_num>98370080590</account_num> + <accountNum>98370080590</accountNum> <lname>Dephillipo</lname> <fname>John</fname> <mi>L.</mi> @@ -23829,28 +23829,28 @@ <address3></address3> <address4></address4> <city>Haney</city> - <state_province>BC</state_province> - <postal_code>57480</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>57480</postalCode> <country>Canada</country> <phone1>357-555-6794</phone1> <phone2>822-555-7015</phone2> <birthdate>12.12.1969</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-11-10</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-11-10</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Clerical</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>John Dephillipo</fullname> <test></test> </Customer> <Customer> - <account_num>98372167348</account_num> + <accountNum>98372167348</accountNum> <lname>Orando</lname> <fname>Nellie</fname> <mi>B.</mi> @@ -23859,28 +23859,28 @@ <address3></address3> <address4></address4> <city>Lakewood</city> - <state_province>CA</state_province> - <postal_code>25757</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>25757</postalCode> <country>USA</country> <phone1>629-555-2801</phone1> <phone2>633-555-3708</phone2> <birthdate>17.08.1963</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-03-15</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-03-15</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Nellie Orando</fullname> <test></test> </Customer> <Customer> - <account_num>98379886746</account_num> + <accountNum>98379886746</accountNum> <lname>Troxell</lname> <fname>Norman</fname> <mi>J.</mi> @@ -23889,28 +23889,28 @@ <address3></address3> <address4></address4> <city>Victoria</city> - <state_province>BC</state_province> - <postal_code>84372</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>84372</postalCode> <country>Canada</country> <phone1>987-555-2694</phone1> <phone2>860-555-2458</phone2> <birthdate>01.11.1940</birthdate> - <marital_status>S</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-10-09</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-10-09</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Norman Troxell</fullname> <test></test> </Customer> <Customer> - <account_num>98388668298</account_num> + <accountNum>98388668298</accountNum> <lname>Gabbard</lname> <fname>Patrick</fname> <mi>A.</mi> @@ -23919,28 +23919,28 @@ <address3></address3> <address4></address4> <city>La Mesa</city> - <state_province>CA</state_province> - <postal_code>15583</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>15583</postalCode> <country>USA</country> <phone1>383-555-6329</phone1> <phone2>933-555-1436</phone2> <birthdate>04.01.1937</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-02-26</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-02-26</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Patrick Gabbard</fullname> <test></test> </Customer> <Customer> - <account_num>98407443761</account_num> + <accountNum>98407443761</accountNum> <lname>Lebaron</lname> <fname>Ted</fname> <mi>L.</mi> @@ -23949,28 +23949,28 @@ <address3></address3> <address4></address4> <city>Colma</city> - <state_province>CA</state_province> - <postal_code>63424</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>63424</postalCode> <country>USA</country> <phone1>764-555-4851</phone1> <phone2>283-555-7815</phone2> <birthdate>02.12.1949</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-07-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Ted Lebaron</fullname> <test></test> </Customer> <Customer> - <account_num>98433702588</account_num> + <accountNum>98433702588</accountNum> <lname>Hill</lname> <fname>Medra</fname> <mi>M.</mi> @@ -23979,28 +23979,28 @@ <address3></address3> <address4></address4> <city>Acapulco</city> - <state_province>Guerrero</state_province> - <postal_code>63024</postal_code> + <stateProvince>Guerrero</stateProvince> + <postalCode>63024</postalCode> <country>Mexico</country> <phone1>422-555-1772</phone1> <phone2>379-555-5422</phone2> <birthdate>06.10.1917</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-04-05</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-04-05</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Medra Hill</fullname> <test></test> </Customer> <Customer> - <account_num>98441749215</account_num> + <accountNum>98441749215</accountNum> <lname>Butcher</lname> <fname>Michael</fname> <mi>W.</mi> @@ -24009,28 +24009,28 @@ <address3></address3> <address4></address4> <city>Lemon Grove</city> - <state_province>CA</state_province> - <postal_code>50735</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>50735</postalCode> <country>USA</country> <phone1>164-555-2579</phone1> <phone2>652-555-1429</phone2> <birthdate>15.12.1968</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1990-06-01</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-06-01</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Michael Butcher</fullname> <test></test> </Customer> <Customer> - <account_num>98443406820</account_num> + <accountNum>98443406820</accountNum> <lname>Taurman</lname> <fname>Amy</fname> <mi>R.</mi> @@ -24039,28 +24039,28 @@ <address3></address3> <address4></address4> <city>Arcadia</city> - <state_province>CA</state_province> - <postal_code>89203</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>89203</postalCode> <country>USA</country> <phone1>745-555-7129</phone1> <phone2>110-555-1322</phone2> <birthdate>22.10.1944</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-03-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-03-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Amy Taurman</fullname> <test></test> </Customer> <Customer> - <account_num>98450981378</account_num> + <accountNum>98450981378</accountNum> <lname>Rachak</lname> <fname>Lillie</fname> <mi></mi> @@ -24069,28 +24069,28 @@ <address3></address3> <address4></address4> <city>San Andres</city> - <state_province>DF</state_province> - <postal_code>69368</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>69368</postalCode> <country>Mexico</country> <phone1>510-555-6565</phone1> <phone2>645-555-8615</phone2> <birthdate>12.02.1955</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-04-18</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-04-18</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Lillie Rachak</fullname> <test></test> </Customer> <Customer> - <account_num>98503643870</account_num> + <accountNum>98503643870</accountNum> <lname>Caro</lname> <fname>Loy</fname> <mi>D.</mi> @@ -24099,28 +24099,28 @@ <address3></address3> <address4></address4> <city>Santa Fe</city> - <state_province>DF</state_province> - <postal_code>73998</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>73998</postalCode> <country>Mexico</country> <phone1>453-555-4401</phone1> <phone2>126-555-7136</phone2> <birthdate>15.02.1966</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>5</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>5</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1993-10-22</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-10-22</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Loy Caro</fullname> <test></test> </Customer> <Customer> - <account_num>98519710302</account_num> + <accountNum>98519710302</accountNum> <lname>Robertson</lname> <fname>Beverly</fname> <mi></mi> @@ -24129,28 +24129,28 @@ <address3></address3> <address4></address4> <city>Port Hammond</city> - <state_province>BC</state_province> - <postal_code>93032</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>93032</postalCode> <country>Canada</country> <phone1>353-555-4725</phone1> <phone2>796-555-6318</phone2> <birthdate>04.05.1964</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-07-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Beverly Robertson</fullname> <test></test> </Customer> <Customer> - <account_num>98525702357</account_num> + <accountNum>98525702357</accountNum> <lname>Potter</lname> <fname>Margaret</fname> <mi></mi> @@ -24159,28 +24159,28 @@ <address3></address3> <address4></address4> <city>Port Orchard</city> - <state_province>WA</state_province> - <postal_code>99162</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>99162</postalCode> <country>USA</country> <phone1>319-555-1189</phone1> <phone2>299-555-3468</phone2> <birthdate>05.09.1977</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-02-08</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1994-02-08</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Margaret Potter</fullname> <test></test> </Customer> <Customer> - <account_num>98548350930</account_num> + <accountNum>98548350930</accountNum> <lname>Holmes</lname> <fname>Maya</fname> <mi></mi> @@ -24189,28 +24189,28 @@ <address3></address3> <address4></address4> <city>Downey</city> - <state_province>CA</state_province> - <postal_code>94110</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>94110</postalCode> <country>USA</country> <phone1>130-555-6882</phone1> <phone2>219-555-2675</phone2> <birthdate>23.06.1930</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>5</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>5</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-07-03</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-07-03</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Maya Holmes</fullname> <test></test> </Customer> <Customer> - <account_num>98561676144</account_num> + <accountNum>98561676144</accountNum> <lname>Crouch</lname> <fname>Ryan</fname> <mi>J.</mi> @@ -24219,28 +24219,28 @@ <address3></address3> <address4></address4> <city>W. Linn</city> - <state_province>OR</state_province> - <postal_code>31064</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>31064</postalCode> <country>USA</country> <phone1>357-555-5632</phone1> <phone2>645-555-7453</phone2> <birthdate>26.08.1913</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-08-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-08-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Ryan Crouch</fullname> <test></test> </Customer> <Customer> - <account_num>98566493391</account_num> + <accountNum>98566493391</accountNum> <lname>Henderson</lname> <fname>Jason</fname> <mi>A.</mi> @@ -24249,28 +24249,28 @@ <address3></address3> <address4></address4> <city>Lincoln Acres</city> - <state_province>CA</state_province> - <postal_code>81421</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>81421</postalCode> <country>USA</country> <phone1>430-555-4611</phone1> <phone2>588-555-5289</phone2> <birthdate>22.01.1928</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1994-06-06</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1994-06-06</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Clerical</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Jason Henderson</fullname> <test></test> </Customer> <Customer> - <account_num>98569583296</account_num> + <accountNum>98569583296</accountNum> <lname>Witte</lname> <fname>Leda</fname> <mi>C.</mi> @@ -24279,28 +24279,28 @@ <address3></address3> <address4></address4> <city>National City</city> - <state_province>CA</state_province> - <postal_code>83536</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>83536</postalCode> <country>USA</country> <phone1>680-555-1989</phone1> <phone2>376-555-3353</phone2> <birthdate>18.12.1978</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-08-16</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-08-16</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Leda Witte</fullname> <test></test> </Customer> <Customer> - <account_num>98579319715</account_num> + <accountNum>98579319715</accountNum> <lname>Bauer</lname> <fname>Harold</fname> <mi>B.</mi> @@ -24309,28 +24309,28 @@ <address3></address3> <address4></address4> <city>Metchosin</city> - <state_province>BC</state_province> - <postal_code>10562</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>10562</postalCode> <country>Canada</country> <phone1>776-555-8596</phone1> <phone2>341-555-8817</phone2> <birthdate>11.03.1942</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-03-18</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-03-18</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Harold Bauer</fullname> <test></test> </Customer> <Customer> - <account_num>98581272363</account_num> + <accountNum>98581272363</accountNum> <lname>Thompson</lname> <fname>Joseph</fname> <mi>M.</mi> @@ -24339,28 +24339,28 @@ <address3></address3> <address4></address4> <city>Mill Valley</city> - <state_province>CA</state_province> - <postal_code>68331</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>68331</postalCode> <country>USA</country> <phone1>149-555-4603</phone1> <phone2>392-555-9168</phone2> <birthdate>13.06.1968</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-02-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-02-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Joseph Thompson</fullname> <test></test> </Customer> <Customer> - <account_num>98606104254</account_num> + <accountNum>98606104254</accountNum> <lname>Sturgel</lname> <fname>Roberta</fname> <mi>A.</mi> @@ -24369,28 +24369,28 @@ <address3></address3> <address4></address4> <city>El Cajon</city> - <state_province>CA</state_province> - <postal_code>24720</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>24720</postalCode> <country>USA</country> <phone1>507-555-4496</phone1> <phone2>380-555-4260</phone2> <birthdate>06.09.1919</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-06-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-06-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Roberta Sturgel</fullname> <test></test> </Customer> <Customer> - <account_num>98622535467</account_num> + <accountNum>98622535467</accountNum> <lname>Gambao</lname> <fname>Norman</fname> <mi></mi> @@ -24399,28 +24399,28 @@ <address3></address3> <address4></address4> <city>Issaquah</city> - <state_province>WA</state_province> - <postal_code>58157</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>58157</postalCode> <country>USA</country> <phone1>803-555-8132</phone1> <phone2>453-555-3239</phone2> <birthdate>06.07.1948</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1993-06-26</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-06-26</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Norman Gambao</fullname> <test></test> </Customer> <Customer> - <account_num>98632749319</account_num> + <accountNum>98632749319</accountNum> <lname>Snow</lname> <fname>Dorothy</fname> <mi></mi> @@ -24429,28 +24429,28 @@ <address3></address3> <address4></address4> <city>Novato</city> - <state_province>CA</state_province> - <postal_code>79707</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>79707</postalCode> <country>USA</country> <phone1>284-555-6653</phone1> <phone2>703-555-9618</phone2> <birthdate>02.03.1922</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-07-14</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-07-14</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Dorothy Snow</fullname> <test></test> </Customer> <Customer> - <account_num>98641659617</account_num> + <accountNum>98641659617</accountNum> <lname>Vaughn</lname> <fname>Julia</fname> <mi>J.</mi> @@ -24459,28 +24459,28 @@ <address3></address3> <address4></address4> <city>Lincoln Acres</city> - <state_province>CA</state_province> - <postal_code>79306</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>79306</postalCode> <country>USA</country> <phone1>180-555-7232</phone1> <phone2>799-555-7225</phone2> <birthdate>03.08.1922</birthdate> - <marital_status>S</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-11-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-11-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Julia Vaughn</fullname> <test></test> </Customer> <Customer> - <account_num>98642126321</account_num> + <accountNum>98642126321</accountNum> <lname>Baccus</lname> <fname>Jack</fname> <mi>H.</mi> @@ -24489,28 +24489,28 @@ <address3></address3> <address4></address4> <city>Langford</city> - <state_province>BC</state_province> - <postal_code>67017</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>67017</postalCode> <country>Canada</country> <phone1>584-555-4382</phone1> <phone2>411-555-6889</phone2> <birthdate>19.10.1947</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-10-20</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-10-20</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Jack Baccus</fullname> <test></test> </Customer> <Customer> - <account_num>98654217720</account_num> + <accountNum>98654217720</accountNum> <lname>Smith</lname> <fname>Christopher</fname> <mi>J</mi> @@ -24519,28 +24519,28 @@ <address3></address3> <address4></address4> <city>La Jolla</city> - <state_province>CA</state_province> - <postal_code>32779</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>32779</postalCode> <country>USA</country> <phone1>857-555-9428</phone1> <phone2>223-555-3620</phone2> <birthdate>25.05.1955</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-07-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-07-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Christopher Smith</fullname> <test></test> </Customer> <Customer> - <account_num>98673620820</account_num> + <accountNum>98673620820</accountNum> <lname>Potter</lname> <fname>Josephine Joanne A</fname> <mi></mi> @@ -24549,28 +24549,28 @@ <address3></address3> <address4></address4> <city>San Gabriel</city> - <state_province>CA</state_province> - <postal_code>85651</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>85651</postalCode> <country>USA</country> <phone1>623-555-8863</phone1> <phone2>758-555-1913</phone2> <birthdate>11.04.1928</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-10-08</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-10-08</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Josephine Joanne A Potter</fullname> <test></test> </Customer> <Customer> - <account_num>98675830960</account_num> + <accountNum>98675830960</accountNum> <lname>Gerber</lname> <fname>Lisa</fname> <mi>F.</mi> @@ -24579,28 +24579,28 @@ <address3></address3> <address4></address4> <city>Glendale</city> - <state_province>CA</state_province> - <postal_code>17574</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>17574</postalCode> <country>USA</country> <phone1>565-555-6699</phone1> <phone2>238-555-9435</phone2> <birthdate>12.11.1971</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-05-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-05-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Lisa Gerber</fullname> <test></test> </Customer> <Customer> - <account_num>98699262738</account_num> + <accountNum>98699262738</accountNum> <lname>Vanderslice</lname> <fname>Deanne</fname> <mi>M.</mi> @@ -24609,28 +24609,28 @@ <address3></address3> <address4></address4> <city>Lebanon</city> - <state_province>OR</state_province> - <postal_code>36608</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>36608</postalCode> <country>USA</country> <phone1>354-555-4763</phone1> <phone2>796-555-6356</phone2> <birthdate>16.08.1959</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1993-09-15</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-09-15</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Deanne Vanderslice</fullname> <test></test> </Customer> <Customer> - <account_num>98727463483</account_num> + <accountNum>98727463483</accountNum> <lname>Wood</lname> <fname>Kathy</fname> <mi>M.</mi> @@ -24639,28 +24639,28 @@ <address3></address3> <address4></address4> <city>Oakland</city> - <state_province>CA</state_province> - <postal_code>80107</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>80107</postalCode> <country>USA</country> <phone1>319-555-1228</phone1> <phone2>300-555-3506</phone2> <birthdate>15.09.1934</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-03-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-03-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Kathy Wood</fullname> <test></test> </Customer> <Customer> - <account_num>98739501237</account_num> + <accountNum>98739501237</accountNum> <lname>Bostwick</lname> <fname>Howard</fname> <mi>R.</mi> @@ -24669,28 +24669,28 @@ <address3></address3> <address4></address4> <city>Port Hammond</city> - <state_province>BC</state_province> - <postal_code>65303</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>65303</postalCode> <country>Canada</country> <phone1>130-555-6920</phone1> <phone2>219-555-2713</phone2> <birthdate>03.02.1919</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-07-28</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-28</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Howard Bostwick</fullname> <test></test> </Customer> <Customer> - <account_num>98765684962</account_num> + <accountNum>98765684962</accountNum> <lname>Corcoran</lname> <fname>Lavona</fname> <mi>V.</mi> @@ -24699,28 +24699,28 @@ <address3></address3> <address4></address4> <city>Merida</city> - <state_province>Yucatan</state_province> - <postal_code>22572</postal_code> + <stateProvince>Yucatan</stateProvince> + <postalCode>22572</postalCode> <country>Mexico</country> <phone1>357-555-5670</phone1> <phone2>646-555-7492</phone2> <birthdate>03.11.1934</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>5</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>5</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-04-12</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-04-12</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Lavona Corcoran</fullname> <test></test> </Customer> <Customer> - <account_num>98773082494</account_num> + <accountNum>98773082494</accountNum> <lname>Good</lname> <fname>Dixie</fname> <mi>L.</mi> @@ -24729,28 +24729,28 @@ <address3></address3> <address4></address4> <city>Altadena</city> - <state_province>CA</state_province> - <postal_code>52614</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>52614</postalCode> <country>USA</country> <phone1>431-555-4649</phone1> <phone2>588-555-5328</phone2> <birthdate>24.01.1911</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1992-02-09</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-02-09</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Dixie Good</fullname> <test></test> </Customer> <Customer> - <account_num>98784916400</account_num> + <accountNum>98784916400</accountNum> <lname>Grosvenor</lname> <fname>Andrew</fname> <mi></mi> @@ -24759,28 +24759,28 @@ <address3></address3> <address4></address4> <city>Santa Monica</city> - <state_province>CA</state_province> - <postal_code>54729</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>54729</postalCode> <country>USA</country> <phone1>681-555-2028</phone1> <phone2>377-555-3392</phone2> <birthdate>28.11.1935</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-12-16</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-12-16</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Andrew Grosvenor</fullname> <test></test> </Customer> <Customer> - <account_num>98802071809</account_num> + <accountNum>98802071809</accountNum> <lname>Smrha</lname> <fname>Nancy</fname> <mi>R.</mi> @@ -24789,28 +24789,28 @@ <address3></address3> <address4></address4> <city>Berkeley</city> - <state_province>CA</state_province> - <postal_code>44955</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>44955</postalCode> <country>USA</country> <phone1>777-555-8635</phone1> <phone2>342-555-8856</phone2> <birthdate>18.10.1931</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-03-16</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-03-16</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Nancy Smrha</fullname> <test></test> </Customer> <Customer> - <account_num>98830358386</account_num> + <accountNum>98830358386</accountNum> <lname>Wright</lname> <fname>Robert</fname> <mi></mi> @@ -24819,28 +24819,28 @@ <address3></address3> <address4></address4> <city>Lemon Grove</city> - <state_province>CA</state_province> - <postal_code>13232</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>13232</postalCode> <country>USA</country> <phone1>262-555-6902</phone1> <phone2>504-555-2466</phone2> <birthdate>17.10.1919</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-02-26</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-02-26</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Robert Wright</fullname> <test></test> </Customer> <Customer> - <account_num>98857126800</account_num> + <accountNum>98857126800</accountNum> <lname>Kalman</lname> <fname>Kenneth</fname> <mi></mi> @@ -24849,28 +24849,28 @@ <address3></address3> <address4></address4> <city>Corvallis</city> - <state_province>OR</state_province> - <postal_code>94911</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>94911</postalCode> <country>USA</country> <phone1>620-555-6795</phone1> <phone2>493-555-6559</phone2> <birthdate>08.09.1972</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-03-15</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-03-15</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Kenneth Kalman</fullname> <test></test> </Customer> <Customer> - <account_num>98892896771</account_num> + <accountNum>98892896771</accountNum> <lname>Ponce</lname> <fname>Greg</fname> <mi>S.</mi> @@ -24879,28 +24879,28 @@ <address3></address3> <address4></address4> <city>Cliffside</city> - <state_province>BC</state_province> - <postal_code>29350</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>29350</postalCode> <country>Canada</country> <phone1>255-555-5088</phone1> <phone2>566-555-5537</phone2> <birthdate>16.06.1975</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-09-26</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-09-26</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Greg Ponce</fullname> <test></test> </Customer> <Customer> - <account_num>98893336653</account_num> + <accountNum>98893336653</accountNum> <lname>Borrelli</lname> <fname>Chad</fname> <mi>L.</mi> @@ -24909,28 +24909,28 @@ <address3></address3> <address4></address4> <city>El Cajon</city> - <state_province>CA</state_province> - <postal_code>50899</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>50899</postalCode> <country>USA</country> <phone1>396-555-8952</phone1> <phone2>816-555-2916</phone2> <birthdate>09.10.1911</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-10-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-10-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Chad Borrelli</fullname> <test></test> </Customer> <Customer> - <account_num>98893374204</account_num> + <accountNum>98893374204</accountNum> <lname>Gillmore</lname> <fname>Eddie</fname> <mi>D.</mi> @@ -24939,28 +24939,28 @@ <address3></address3> <address4></address4> <city>Burnaby</city> - <state_province>BC</state_province> - <postal_code>50499</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>50499</postalCode> <country>Canada</country> <phone1>293-555-9531</phone1> <phone2>912-555-9523</phone2> <birthdate>07.12.1943</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-11-08</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-11-08</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Eddie Gillmore</fullname> <test></test> </Customer> <Customer> - <account_num>98923720717</account_num> + <accountNum>98923720717</accountNum> <lname>Mixon</lname> <fname>Hazel</fname> <mi>I.</mi> @@ -24969,28 +24969,28 @@ <address3></address3> <address4></address4> <city>Bremerton</city> - <state_province>WA</state_province> - <postal_code>38210</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>38210</postalCode> <country>USA</country> <phone1>697-555-6680</phone1> <phone2>524-555-9188</phone2> <birthdate>21.10.1930</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-09-10</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-09-10</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Hazel Mixon</fullname> <test></test> </Customer> <Customer> - <account_num>98943778276</account_num> + <accountNum>98943778276</accountNum> <lname>Tommerup</lname> <fname>John</fname> <mi>R.</mi> @@ -24999,28 +24999,28 @@ <address3></address3> <address4></address4> <city>San Diego</city> - <state_province>CA</state_province> - <postal_code>39712</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>39712</postalCode> <country>USA</country> <phone1>377-555-2230</phone1> <phone2>643-555-5423</phone2> <birthdate>07.04.1912</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-11-15</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-11-15</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>John Tommerup</fullname> <test></test> </Customer> <Customer> - <account_num>98950237035</account_num> + <accountNum>98950237035</accountNum> <lname>Martinez</lname> <fname>Emilio</fname> <mi>S.</mi> @@ -25029,28 +25029,28 @@ <address3></address3> <address4></address4> <city>Woodland Hills</city> - <state_province>CA</state_province> - <postal_code>56843</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>56843</postalCode> <country>USA</country> <phone1>143-555-1666</phone1> <phone2>277-555-3716</phone2> <birthdate>18.10.1918</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-02-19</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-02-19</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Emilio Martinez</fullname> <test></test> </Customer> <Customer> - <account_num>98951293826</account_num> + <accountNum>98951293826</accountNum> <lname>Glancy</lname> <fname>Michael</fname> <mi>G.</mi> @@ -25059,28 +25059,28 @@ <address3></address3> <address4></address4> <city>Milwaukie</city> - <state_province>OR</state_province> - <postal_code>61474</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>61474</postalCode> <country>USA</country> <phone1>985-555-8502</phone1> <phone2>658-555-2238</phone2> <birthdate>27.06.1934</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-04-01</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-04-01</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Michael Glancy</fullname> <test></test> </Customer> <Customer> - <account_num>98954426646</account_num> + <accountNum>98954426646</accountNum> <lname>Cappa</lname> <fname>M.</fname> <mi>T.</mi> @@ -25089,28 +25089,28 @@ <address3></address3> <address4></address4> <city>Glendale</city> - <state_province>CA</state_province> - <postal_code>80508</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>80508</postalCode> <country>USA</country> <phone1>774-555-6566</phone1> <phone2>316-555-8159</phone2> <birthdate>11.03.1977</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-05-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-05-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>M. Cappa</fullname> <test></test> </Customer> <Customer> - <account_num>98972472548</account_num> + <accountNum>98972472548</accountNum> <lname>Netz</lname> <fname>Jonathan</fname> <mi> </mi> @@ -25119,28 +25119,28 @@ <address3></address3> <address4></address4> <city>Redmond</city> - <state_province>WA</state_province> - <postal_code>51300</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>51300</postalCode> <country>USA</country> <phone1>739-555-3030</phone1> <phone2>720-555-5309</phone2> <birthdate>18.03.1926</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-05-04</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-05-04</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Jonathan Netz</fullname> <test></test> </Customer> <Customer> - <account_num>98989670872</account_num> + <accountNum>98989670872</accountNum> <lname>Blanc</lname> <fname>Teresa</fname> <mi>L.</mi> @@ -25149,28 +25149,28 @@ <address3></address3> <address4></address4> <city>Santa Anita</city> - <state_province>DF</state_province> - <postal_code>81296</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>81296</postalCode> <country>Mexico</country> <phone1>550-555-8723</phone1> <phone2>639-555-4516</phone2> <birthdate>04.04.1943</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-05-04</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-05-04</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Teresa Blanc</fullname> <test></test> </Customer> <Customer> - <account_num>99002566933</account_num> + <accountNum>99002566933</accountNum> <lname>Collins</lname> <fname>William</fname> <mi></mi> @@ -25179,28 +25179,28 @@ <address3></address3> <address4></address4> <city>Oakland</city> - <state_province>CA</state_province> - <postal_code>44542</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>44542</postalCode> <country>USA</country> <phone1>243-555-3528</phone1> <phone2>532-555-5350</phone2> <birthdate>12.01.1932</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-10-13</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-10-13</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>William Collins</fullname> <test></test> </Customer> <Customer> - <account_num>99016315937</account_num> + <accountNum>99016315937</accountNum> <lname>Scroggins</lname> <fname>Lou</fname> <mi>Z.</mi> @@ -25209,28 +25209,28 @@ <address3></address3> <address4></address4> <city>Metchosin</city> - <state_province>BC</state_province> - <postal_code>68606</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>68606</postalCode> <country>Canada</country> <phone1>316-555-2507</phone1> <phone2>474-555-3185</phone2> <birthdate>03.10.1942</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-07-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-07-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Lou Scroggins</fullname> <test></test> </Customer> <Customer> - <account_num>99018182754</account_num> + <accountNum>99018182754</accountNum> <lname>Marsh</lname> <fname>Hazel</fname> <mi></mi> @@ -25239,28 +25239,28 @@ <address3></address3> <address4></address4> <city>Metchosin</city> - <state_province>BC</state_province> - <postal_code>70721</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>70721</postalCode> <country>Canada</country> <phone1>566-555-8885</phone1> <phone2>262-555-1250</phone2> <birthdate>04.05.1927</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-05-09</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-05-09</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Hazel Marsh</fullname> <test></test> </Customer> <Customer> - <account_num>99031137824</account_num> + <accountNum>99031137824</accountNum> <lname>Robinson</lname> <fname>Mildred</fname> <mi>J.</mi> @@ -25269,28 +25269,28 @@ <address3></address3> <address4></address4> <city>Richmond</city> - <state_province>BC</state_province> - <postal_code>87240</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>87240</postalCode> <country>Canada</country> <phone1>662-555-6493</phone1> <phone2>467-555-1371</phone2> <birthdate>19.11.1955</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-04-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-04-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Mildred Robinson</fullname> <test></test> </Customer> <Customer> - <account_num>99078253507</account_num> + <accountNum>99078253507</accountNum> <lname>Cox</lname> <fname>Susan</fname> <mi>C.</mi> @@ -25299,28 +25299,28 @@ <address3></address3> <address4></address4> <city>Burbank</city> - <state_province>CA</state_province> - <postal_code>55517</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>55517</postalCode> <country>USA</country> <phone1>935-555-2500</phone1> <phone2>278-555-7064</phone2> <birthdate>26.11.1918</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-10-14</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-10-14</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Susan Cox</fullname> <test></test> </Customer> <Customer> - <account_num>99097678065</account_num> + <accountNum>99097678065</accountNum> <lname>Clare</lname> <fname>Janine</fname> <mi>R.</mi> @@ -25329,28 +25329,28 @@ <address3></address3> <address4></address4> <city>Los Angeles</city> - <state_province>CA</state_province> - <postal_code>38197</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>38197</postalCode> <country>USA</country> <phone1>393-555-2393</phone1> <phone2>505-555-5814</phone2> <birthdate>14.07.1932</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-10-10</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-10-10</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Janine Clare</fullname> <test></test> </Customer> <Customer> - <account_num>99101797938</account_num> + <accountNum>99101797938</accountNum> <lname>Barnurn</lname> <fname>James</fname> <mi>M.</mi> @@ -25359,28 +25359,28 @@ <address3></address3> <address4></address4> <city>Coronado</city> - <state_province>CA</state_province> - <postal_code>45343</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>45343</postalCode> <country>USA</country> <phone1>928-555-9686</phone1> <phone2>339-555-1135</phone2> <birthdate>19.11.1967</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-03-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-03-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>James Barnurn</fullname> <test></test> </Customer> <Customer> - <account_num>99112381935</account_num> + <accountNum>99112381935</accountNum> <lname>Chrisman</lname> <fname>Dorothy</fname> <mi></mi> @@ -25389,28 +25389,28 @@ <address3></address3> <address4></address4> <city>La Cruz</city> - <state_province>Sinaloa</state_province> - <postal_code>93184</postal_code> + <stateProvince>Sinaloa</stateProvince> + <postalCode>93184</postalCode> <country>Mexico</country> <phone1>409-555-8207</phone1> <phone2>589-555-7514</phone2> <birthdate>09.12.1935</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>5</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>5</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-11-13</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1990-11-13</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Dorothy Chrisman</fullname> <test></test> </Customer> <Customer> - <account_num>99116405248</account_num> + <accountNum>99116405248</accountNum> <lname>Taryle</lname> <fname>Walter</fname> <mi></mi> @@ -25419,28 +25419,28 @@ <address3></address3> <address4></address4> <city>Shawnee</city> - <state_province>BC</state_province> - <postal_code>66491</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>66491</postalCode> <country>Canada</country> <phone1>966-555-5128</phone1> <phone2>685-555-5121</phone2> <birthdate>05.10.1929</birthdate> - <marital_status>S</marital_status> - <yearly_income>$150K +</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$150K +</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-08-20</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-08-20</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Walter Taryle</fullname> <test></test> </Customer> <Customer> - <account_num>99117681980</account_num> + <accountNum>99117681980</accountNum> <lname>Spencer</lname> <fname>Herve</fname> <mi>R.</mi> @@ -25449,28 +25449,28 @@ <address3></address3> <address4></address4> <city>Yakima</city> - <state_province>WA</state_province> - <postal_code>80495</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>80495</postalCode> <country>USA</country> <phone1>470-555-2278</phone1> <phone2>297-555-4786</phone2> <birthdate>27.07.1960</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-03-18</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-03-18</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Herve Spencer</fullname> <test></test> </Customer> <Customer> - <account_num>99119865298</account_num> + <accountNum>99119865298</accountNum> <lname>Tribble</lname> <fname>Christopher</fname> <mi></mi> @@ -25479,28 +25479,28 @@ <address3></address3> <address4></address4> <city>Long Beach</city> - <state_province>CA</state_province> - <postal_code>19964</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>19964</postalCode> <country>USA</country> <phone1>390-555-1486</phone1> <phone2>416-555-1021</phone2> <birthdate>26.07.1962</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-09-15</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1994-09-15</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Christopher Tribble</fullname> <test></test> </Customer> <Customer> - <account_num>99132890105</account_num> + <accountNum>99132890105</accountNum> <lname>Skapinok</lname> <fname>Nick</fname> <mi></mi> @@ -25509,28 +25509,28 @@ <address3></address3> <address4></address4> <city>Lynnwood</city> - <state_province>WA</state_province> - <postal_code>72836</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>72836</postalCode> <country>USA</country> <phone1>816-555-6264</phone1> <phone2>951-555-8314</phone2> <birthdate>05.04.1924</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-08-16</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-08-16</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Nick Skapinok</fullname> <test></test> </Customer> <Customer> - <account_num>99153966903</account_num> + <accountNum>99153966903</accountNum> <lname>Belleci</lname> <fname>Janice</fname> <mi>L.</mi> @@ -25539,28 +25539,28 @@ <address3></address3> <address4></address4> <city>Port Orchard</city> - <state_province>WA</state_province> - <postal_code>47592</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>47592</postalCode> <country>USA</country> <phone1>871-555-6360</phone1> <phone2>544-555-9095</phone2> <birthdate>11.07.1972</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-07-23</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-07-23</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Janice Belleci</fullname> <test></test> </Customer> <Customer> - <account_num>99163397550</account_num> + <accountNum>99163397550</accountNum> <lname>Armstrong</lname> <fname>Ila</fname> <mi>O.</mi> @@ -25569,28 +25569,28 @@ <address3></address3> <address4></address4> <city>Santa Anita</city> - <state_province>DF</state_province> - <postal_code>23793</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>23793</postalCode> <country>Mexico</country> <phone1>659-555-4424</phone1> <phone2>201-555-6017</phone2> <birthdate>02.03.1938</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-07-23</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-07-23</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Ila Armstrong</fullname> <test></test> </Customer> <Customer> - <account_num>99172179102</account_num> + <accountNum>99172179102</accountNum> <lname>Koeber</lname> <fname>Millard</fname> <mi></mi> @@ -25599,28 +25599,28 @@ <address3></address3> <address4></address4> <city>Burien</city> - <state_province>WA</state_province> - <postal_code>93584</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>93584</postalCode> <country>USA</country> <phone1>624-555-9888</phone1> <phone2>605-555-3167</phone2> <birthdate>07.11.1919</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-03-04</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-03-04</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Millard Koeber</fullname> <test></test> </Customer> <Customer> - <account_num>99172796010</account_num> + <accountNum>99172796010</accountNum> <lname>Wagner</lname> <fname>Jacquelyn</fname> <mi>M.</mi> @@ -25629,28 +25629,28 @@ <address3></address3> <address4></address4> <city>Bellflower</city> - <state_province>CA</state_province> - <postal_code>78780</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>78780</postalCode> <country>USA</country> <phone1>675-555-1238</phone1> <phone2>525-555-2374</phone2> <birthdate>17.08.1968</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-11-01</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-11-01</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Jacquelyn Wagner</fullname> <test></test> </Customer> <Customer> - <account_num>99175923500</account_num> + <accountNum>99175923500</accountNum> <lname>Noice</lname> <fname>Rosalina</fname> <mi></mi> @@ -25659,28 +25659,28 @@ <address3></address3> <address4></address4> <city>Kirkland</city> - <state_province>WA</state_province> - <postal_code>13829</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>13829</postalCode> <country>USA</country> <phone1>663-555-5331</phone1> <phone2>951-555-7152</phone2> <birthdate>22.03.1919</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-12-07</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1990-12-07</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Rosalina Noice</fullname> <test></test> </Customer> <Customer> - <account_num>99209338426</account_num> + <accountNum>99209338426</accountNum> <lname>Lindall</lname> <fname>Sharon</fname> <mi>L.</mi> @@ -25689,28 +25689,28 @@ <address3></address3> <address4></address4> <city>San Diego</city> - <state_province>CA</state_province> - <postal_code>64186</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>64186</postalCode> <country>USA</country> <phone1>736-555-4310</phone1> <phone2>894-555-4988</phone2> <birthdate>10.08.1961</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-06-10</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-06-10</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Sharon Lindall</fullname> <test></test> </Customer> <Customer> - <account_num>99211843609</account_num> + <accountNum>99211843609</accountNum> <lname>Noakes</lname> <fname>Charles</fname> <mi>T.</mi> @@ -25719,28 +25719,28 @@ <address3></address3> <address4></address4> <city>Puyallup</city> - <state_province>WA</state_province> - <postal_code>66301</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>66301</postalCode> <country>USA</country> <phone1>986-555-1688</phone1> <phone2>682-555-3052</phone2> <birthdate>20.03.1920</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-08-11</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-08-11</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Charles Noakes</fullname> <test></test> </Customer> <Customer> - <account_num>99217492341</account_num> + <accountNum>99217492341</accountNum> <lname>Mc Nair</lname> <fname>Susan</fname> <mi>M.</mi> @@ -25749,28 +25749,28 @@ <address3></address3> <address4></address4> <city>Sooke</city> - <state_province>BC</state_province> - <postal_code>82820</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>82820</postalCode> <country>Canada</country> <phone1>182-555-8295</phone1> <phone2>886-555-3174</phone2> <birthdate>05.05.1910</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-10-03</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-10-03</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Susan Mc Nair</fullname> <test></test> </Customer> <Customer> - <account_num>99221188400</account_num> + <accountNum>99221188400</accountNum> <lname>Ceballos</lname> <fname>Wilfred</fname> <mi></mi> @@ -25779,28 +25779,28 @@ <address3></address3> <address4></address4> <city>Richmond</city> - <state_province>CA</state_province> - <postal_code>51096</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>51096</postalCode> <country>USA</country> <phone1>694-555-7960</phone1> <phone2>698-555-8867</phone2> <birthdate>09.01.1975</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-01-08</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-01-08</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Wilfred Ceballos</fullname> <test></test> </Customer> <Customer> - <account_num>99228425025</account_num> + <accountNum>99228425025</accountNum> <lname>Landrum</lname> <fname>Georgia</fname> <mi>B.</mi> @@ -25809,28 +25809,28 @@ <address3></address3> <address4></address4> <city>Haney</city> - <state_province>BC</state_province> - <postal_code>74852</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>74852</postalCode> <country>Canada</country> <phone1>813-555-4195</phone1> <phone2>925-555-7617</phone2> <birthdate>05.08.1963</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-09-02</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-09-02</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Georgia Landrum</fullname> <test></test> </Customer> <Customer> - <account_num>99234932065</account_num> + <accountNum>99234932065</accountNum> <lname>Netz</lname> <fname>Niki</fname> <mi>Dog</mi> @@ -25839,28 +25839,28 @@ <address3></address3> <address4></address4> <city>Redmond</city> - <state_province>WA</state_province> - <postal_code>40922</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>40922</postalCode> <country>USA</country> <phone1>448-555-2488</phone1> <phone2>759-555-2938</phone2> <birthdate>08.08.1960</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-12-19</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-12-19</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Niki Netz</fullname> <test></test> </Customer> <Customer> - <account_num>99243944287</account_num> + <accountNum>99243944287</accountNum> <lname>Amyotte</lname> <fname>Carol</fname> <mi>J.</mi> @@ -25869,28 +25869,28 @@ <address3></address3> <address4></address4> <city>San Jose</city> - <state_province>CA</state_province> - <postal_code>62472</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>62472</postalCode> <country>USA</country> <phone1>829-555-1010</phone1> <phone2>109-555-9317</phone2> <birthdate>22.05.1960</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-06-10</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-06-10</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Carol Amyotte</fullname> <test></test> </Customer> <Customer> - <account_num>99254447817</account_num> + <accountNum>99254447817</accountNum> <lname>Watson</lname> <fname>Brian</fname> <mi>P.</mi> @@ -25899,28 +25899,28 @@ <address3></address3> <address4></address4> <city>San Diego</city> - <state_province>CA</state_province> - <postal_code>62071</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>62071</postalCode> <country>USA</country> <phone1>486-555-6931</phone1> <phone2>444-555-1581</phone2> <birthdate>26.03.1928</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-02-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-02-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Brian Watson</fullname> <test></test> </Customer> <Customer> - <account_num>99271624684</account_num> + <accountNum>99271624684</accountNum> <lname>Waddle</lname> <fname>Mary</fname> <mi>B.</mi> @@ -25929,28 +25929,28 @@ <address3></address3> <address4></address4> <city>Woodland Hills</city> - <state_province>CA</state_province> - <postal_code>49782</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>49782</postalCode> <country>USA</country> <phone1>580-555-4656</phone1> <phone2>407-555-7163</phone2> <birthdate>18.08.1921</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-04-21</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-04-21</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Mary Waddle</fullname> <test></test> </Customer> <Customer> - <account_num>99276881814</account_num> + <accountNum>99276881814</accountNum> <lname>Shintani</lname> <fname>Alice</fname> <mi>E.</mi> @@ -25959,28 +25959,28 @@ <address3></address3> <address4></address4> <city>Sooke</city> - <state_province>BC</state_province> - <postal_code>15544</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>15544</postalCode> <country>Canada</country> <phone1>500-555-3863</phone1> <phone2>526-555-3399</phone2> <birthdate>15.04.1955</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-02-05</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-02-05</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Alice Shintani</fullname> <test></test> </Customer> <Customer> - <account_num>99299401640</account_num> + <accountNum>99299401640</accountNum> <lname>Chavez</lname> <fname>Prudence</fname> <mi>G.</mi> @@ -25989,28 +25989,28 @@ <address3></address3> <address4></address4> <city>Long Beach</city> - <state_province>CA</state_province> - <postal_code>68416</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>68416</postalCode> <country>USA</country> <phone1>926-555-8642</phone1> <phone2>161-555-1692</phone2> <birthdate>04.06.1967</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-06-19</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-06-19</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Prudence Chavez</fullname> <test></test> </Customer> <Customer> - <account_num>99332467913</account_num> + <accountNum>99332467913</accountNum> <lname>Wilson</lname> <fname>John</fname> <mi>T.</mi> @@ -26019,28 +26019,28 @@ <address3></address3> <address4></address4> <city>Arcadia</city> - <state_province>CA</state_province> - <postal_code>73046</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>73046</postalCode> <country>USA</country> <phone1>869-555-6477</phone1> <phone2>542-555-9213</phone2> <birthdate>08.06.1977</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-03-18</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-03-18</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>John Wilson</fullname> <test></test> </Customer> <Customer> - <account_num>99379406571</account_num> + <accountNum>99379406571</accountNum> <lname>Gill</lname> <fname>William</fname> <mi>A.</mi> @@ -26049,28 +26049,28 @@ <address3></address3> <address4></address4> <city>Woodburn</city> - <state_province>OR</state_province> - <postal_code>92080</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>92080</postalCode> <country>USA</country> <phone1>657-555-4542</phone1> <phone2>199-555-6134</phone2> <birthdate>23.09.1975</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1994-11-16</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-11-16</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Clerical</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>William Gill</fullname> <test></test> </Customer> <Customer> - <account_num>99385495185</account_num> + <accountNum>99385495185</accountNum> <lname>Smallwood</lname> <fname>Beverly</fname> <mi>J.</mi> @@ -26079,28 +26079,28 @@ <address3></address3> <address4></address4> <city>Fremont</city> - <state_province>CA</state_province> - <postal_code>89164</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>89164</postalCode> <country>USA</country> <phone1>622-555-1006</phone1> <phone2>603-555-3284</phone2> <birthdate>25.03.1918</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-03-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-03-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Beverly Smallwood</fullname> <test></test> </Customer> <Customer> - <account_num>99395928978</account_num> + <accountNum>99395928978</accountNum> <lname>Chavez</lname> <fname>David</fname> <mi>E.</mi> @@ -26109,28 +26109,28 @@ <address3></address3> <address4></address4> <city>Langley</city> - <state_province>BC</state_province> - <postal_code>74360</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>74360</postalCode> <country>Canada</country> <phone1>673-555-1356</phone1> <phone2>523-555-2492</phone2> <birthdate>16.10.1941</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-11-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-11-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>David Chavez</fullname> <test></test> </Customer> <Customer> - <account_num>99408830404</account_num> + <accountNum>99408830404</accountNum> <lname>Blackburn</lname> <fname>Deborah</fname> <mi>S.</mi> @@ -26139,28 +26139,28 @@ <address3></address3> <address4></address4> <city>Salem</city> - <state_province>OR</state_province> - <postal_code>35991</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>35991</postalCode> <country>USA</country> <phone1>661-555-5449</phone1> <phone2>288-555-1928</phone2> <birthdate>19.12.1924</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-09-03</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-09-03</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Deborah Blackburn</fullname> <test></test> </Customer> <Customer> - <account_num>99440378546</account_num> + <accountNum>99440378546</accountNum> <lname>Abston</lname> <fname>Donald</fname> <mi>R.</mi> @@ -26169,28 +26169,28 @@ <address3></address3> <address4></address4> <city>Concord</city> - <state_province>CA</state_province> - <postal_code>86348</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>86348</postalCode> <country>USA</country> <phone1>734-555-4427</phone1> <phone2>231-555-8763</phone2> <birthdate>15.05.1940</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-10-03</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-10-03</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Donald Abston</fullname> <test></test> </Customer> <Customer> - <account_num>99445195794</account_num> + <accountNum>99445195794</accountNum> <lname>Blauvelt</lname> <fname>J. Scott</fname> <mi>S.</mi> @@ -26199,28 +26199,28 @@ <address3></address3> <address4></address4> <city>Concord</city> - <state_province>CA</state_province> - <postal_code>88463</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>88463</postalCode> <country>USA</country> <phone1>984-555-1806</phone1> <phone2>680-555-3170</phone2> <birthdate>22.08.1931</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-12-12</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-12-12</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>J. Scott Blauvelt</fullname> <test></test> </Customer> <Customer> - <account_num>99454379677</account_num> + <accountNum>99454379677</accountNum> <lname>Wardley</lname> <fname>Curtis</fname> <mi>C.</mi> @@ -26229,28 +26229,28 @@ <address3></address3> <address4></address4> <city>La Jolla</city> - <state_province>CA</state_province> - <postal_code>78689</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>78689</postalCode> <country>USA</country> <phone1>180-555-8413</phone1> <phone2>884-555-3292</phone2> <birthdate>04.07.1953</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-04-04</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-04-04</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Curtis Wardley</fullname> <test></test> </Customer> <Customer> - <account_num>96067506074</account_num> + <accountNum>96067506074</accountNum> <lname>Simpson</lname> <fname>Marty</fname> <mi>A.</mi> @@ -26259,28 +26259,28 @@ <address3></address3> <address4></address4> <city>San Francisco</city> - <state_province>CA</state_province> - <postal_code>35530</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>35530</postalCode> <country>USA</country> <phone1>664-555-3955</phone1> <phone2>572-555-1603</phone2> <birthdate>16.02.1921</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-05-17</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-05-17</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Marty Simpson</fullname> <test></test> </Customer> <Customer> - <account_num>96070569200</account_num> + <accountNum>96070569200</accountNum> <lname>Jones</lname> <fname>Robert</fname> <mi>F.</mi> @@ -26289,28 +26289,28 @@ <address3></address3> <address4></address4> <city>Lincoln Acres</city> - <state_province>CA</state_province> - <postal_code>63222</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>63222</postalCode> <country>USA</country> <phone1>334-555-9132</phone1> <phone2>315-555-2411</phone2> <birthdate>15.03.1966</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-08-03</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-08-03</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Robert Jones</fullname> <test></test> </Customer> <Customer> - <account_num>96079672574</account_num> + <accountNum>96079672574</accountNum> <lname>Casts</lname> <fname>Raul</fname> <mi>A.</mi> @@ -26319,28 +26319,28 @@ <address3></address3> <address4></address4> <city>Royal Oak</city> - <state_province>BC</state_province> - <postal_code>90517</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>90517</postalCode> <country>Canada</country> <phone1>146-555-5825</phone1> <phone2>896-555-6960</phone2> <birthdate>27.09.1954</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-01-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-01-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Raul Casts</fullname> <test></test> </Customer> <Customer> - <account_num>96085857748</account_num> + <accountNum>96085857748</accountNum> <lname>Browqett</lname> <fname>Bridget</fname> <mi>M.</mi> @@ -26349,28 +26349,28 @@ <address3></address3> <address4></address4> <city>Acapulco</city> - <state_province>Guerrero</state_province> - <postal_code>27471</postal_code> + <stateProvince>Guerrero</stateProvince> + <postalCode>27471</postalCode> <country>Mexico</country> <phone1>373-555-4575</phone1> <phone2>661-555-6396</phone2> <birthdate>11.11.1912</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-06-07</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-06-07</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Bridget Browqett</fullname> <test></test> </Customer> <Customer> - <account_num>96115834100</account_num> + <accountNum>96115834100</accountNum> <lname>Kartz</lname> <fname>Kay</fname> <mi></mi> @@ -26379,28 +26379,28 @@ <address3></address3> <address4></address4> <city>Arcadia</city> - <state_province>CA</state_province> - <postal_code>77828</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>77828</postalCode> <country>USA</country> <phone1>207-555-8896</phone1> <phone2>604-555-4232</phone2> <birthdate>21.09.1947</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1994-05-04</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-05-04</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Kay Kartz</fullname> <test></test> </Customer> <Customer> - <account_num>96121359467</account_num> + <accountNum>96121359467</accountNum> <lname>Wold</lname> <fname>Audrey</fname> <mi>M.</mi> @@ -26409,28 +26409,28 @@ <address3></address3> <address4></address4> <city>Arcadia</city> - <state_province>CA</state_province> - <postal_code>79943</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>79943</postalCode> <country>USA</country> <phone1>457-555-6275</phone1> <phone2>392-555-2296</phone2> <birthdate>25.08.1971</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-06-22</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-06-22</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Audrey Wold</fullname> <test></test> </Customer> <Customer> - <account_num>96155503988</account_num> + <accountNum>96155503988</accountNum> <lname>French</lname> <fname>Susan</fname> <mi>C.</mi> @@ -26439,28 +26439,28 @@ <address3></address3> <address4></address4> <city>Mill Valley</city> - <state_province>CA</state_province> - <postal_code>96461</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>96461</postalCode> <country>USA</country> <phone1>553-555-3882</phone1> <phone2>357-555-7760</phone2> <birthdate>15.06.1967</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-05-10</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1990-05-10</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Susan French</fullname> <test></test> </Customer> <Customer> - <account_num>96199046969</account_num> + <accountNum>96199046969</accountNum> <lname>Pederson</lname> <fname>Trish</fname> <mi></mi> @@ -26469,28 +26469,28 @@ <address3></address3> <address4></address4> <city>Sedro Woolley</city> - <state_province>WA</state_province> - <postal_code>64738</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>64738</postalCode> <country>USA</country> <phone1>165-555-3546</phone1> <phone2>169-555-4453</phone2> <birthdate>25.09.1967</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-04-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-04-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Trish Pederson</fullname> <test></test> </Customer> <Customer> - <account_num>96202088594</account_num> + <accountNum>96202088594</accountNum> <lname>Renn</lname> <fname>Eric</fname> <mi>J.</mi> @@ -26499,28 +26499,28 @@ <address3></address3> <address4></address4> <city>Downey</city> - <state_province>CA</state_province> - <postal_code>21127</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>21127</postalCode> <country>USA</country> <phone1>284-555-8782</phone1> <phone2>396-555-3203</phone2> <birthdate>15.09.1949</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1993-07-23</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-07-23</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Eric Renn</fullname> <test></test> </Customer> <Customer> - <account_num>96214888095</account_num> + <accountNum>96214888095</accountNum> <lname>Catalano</lname> <fname>Elizabeth</fname> <mi>C.</mi> @@ -26529,28 +26529,28 @@ <address3></address3> <address4></address4> <city>Kirkland</city> - <state_province>WA</state_province> - <postal_code>54564</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>54564</postalCode> <country>USA</country> <phone1>819-555-7075</phone1> <phone2>469-555-2182</phone2> <birthdate>13.02.1940</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-03-07</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1994-03-07</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Elizabeth Catalano</fullname> <test></test> </Customer> <Customer> - <account_num>96268945336</account_num> + <accountNum>96268945336</accountNum> <lname>Coleman</lname> <fname>Eric</fname> <mi>F.</mi> @@ -26559,28 +26559,28 @@ <address3></address3> <address4></address4> <city>Tacoma</city> - <state_province>WA</state_province> - <postal_code>46592</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>46592</postalCode> <country>USA</country> <phone1>300-555-5596</phone1> <phone2>719-555-8560</phone2> <birthdate>05.06.1947</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-04-03</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-04-03</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Eric Coleman</fullname> <test></test> </Customer> <Customer> - <account_num>96309478878</account_num> + <accountNum>96309478878</accountNum> <lname>Hurkett</lname> <fname>Lawrence</fname> <mi>D.</mi> @@ -26589,28 +26589,28 @@ <address3></address3> <address4></address4> <city>San Gabriel</city> - <state_province>CA</state_province> - <postal_code>19899</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>19899</postalCode> <country>USA</country> <phone1>857-555-2517</phone1> <phone2>815-555-6168</phone2> <birthdate>04.08.1978</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-05-13</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-05-13</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Lawrence Hurkett</fullname> <test></test> </Customer> <Customer> - <account_num>96314451694</account_num> + <accountNum>96314451694</accountNum> <lname>Pettengill</lname> <fname>Sara</fname> <mi>R.</mi> @@ -26619,28 +26619,28 @@ <address3></address3> <address4></address4> <city>Berkeley</city> - <state_province>CA</state_province> - <postal_code>33902</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>33902</postalCode> <country>USA</country> <phone1>361-555-8667</phone1> <phone2>188-555-2175</phone2> <birthdate>02.09.1978</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-03-15</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-03-15</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Sara Pettengill</fullname> <test></test> </Customer> <Customer> - <account_num>96325427300</account_num> + <accountNum>96325427300</accountNum> <lname>Elson</lname> <fname>Jauna</fname> <mi></mi> @@ -26649,28 +26649,28 @@ <address3></address3> <address4></address4> <city>Walla Walla</city> - <state_province>WA</state_province> - <postal_code>72371</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>72371</postalCode> <country>USA</country> <phone1>393-555-1135</phone1> <phone2>658-555-4328</phone2> <birthdate>04.12.1948</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-05-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-05-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Jauna Elson</fullname> <test></test> </Customer> <Customer> - <account_num>96338913440</account_num> + <accountNum>96338913440</accountNum> <lname>Hirota</lname> <fname>Nancy</fname> <mi>L.</mi> @@ -26679,28 +26679,28 @@ <address3></address3> <address4></address4> <city>Richmond</city> - <state_province>CA</state_province> - <postal_code>26244</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>26244</postalCode> <country>USA</country> <phone1>819-555-5913</phone1> <phone2>954-555-7963</phone2> <birthdate>15.07.1953</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-04-13</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-04-13</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Nancy Hirota</fullname> <test></test> </Customer> <Customer> - <account_num>96351417899</account_num> + <accountNum>96351417899</accountNum> <lname>Blasingame</lname> <fname>Linda</fname> <mi>S.</mi> @@ -26709,28 +26709,28 @@ <address3></address3> <address4></address4> <city>Mill Valley</city> - <state_province>CA</state_province> - <postal_code>57166</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>57166</postalCode> <country>USA</country> <phone1>762-555-3749</phone1> <phone2>435-555-6484</phone2> <birthdate>11.06.1948</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-07-22</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-07-22</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Linda Blasingame</fullname> <test></test> </Customer> <Customer> - <account_num>96393968462</account_num> + <accountNum>96393968462</accountNum> <lname>Blackwell</lname> <fname>Jackie</fname> <mi>S</mi> @@ -26739,28 +26739,28 @@ <address3></address3> <address4></address4> <city>Lakewood</city> - <state_province>CA</state_province> - <postal_code>76200</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>76200</postalCode> <country>USA</country> <phone1>550-555-1813</phone1> <phone2>331-555-7063</phone2> <birthdate>21.02.1940</birthdate> - <marital_status>S</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-10-26</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1992-10-26</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Jackie Blackwell</fullname> <test></test> </Customer> <Customer> - <account_num>96418945200</account_num> + <accountNum>96418945200</accountNum> <lname>Moya</lname> <fname>Marie</fname> <mi></mi> @@ -26769,28 +26769,28 @@ <address3></address3> <address4></address4> <city>Issaquah</city> - <state_province>WA</state_province> - <postal_code>46992</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>46992</postalCode> <country>USA</country> <phone1>754-555-1935</phone1> <phone2>735-555-4213</phone2> <birthdate>28.02.1959</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-04-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-04-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Marie Moya</fullname> <test></test> </Customer> <Customer> - <account_num>96450455784</account_num> + <accountNum>96450455784</accountNum> <lname>Chesnut</lname> <fname>Nicky</fname> <mi>H.</mi> @@ -26799,28 +26799,28 @@ <address3></address3> <address4></address4> <city>Marysville</city> - <state_province>WA</state_province> - <postal_code>32188</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>32188</postalCode> <country>USA</country> <phone1>566-555-7627</phone1> <phone2>415-555-8763</phone2> <birthdate>25.06.1918</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-01-06</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1994-01-06</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Nicky Chesnut</fullname> <test></test> </Customer> <Customer> - <account_num>96461152434</account_num> + <accountNum>96461152434</accountNum> <lname>Ortiz</lname> <fname>John</fname> <mi>C.</mi> @@ -26829,28 +26829,28 @@ <address3></address3> <address4></address4> <city>Lincoln Acres</city> - <state_province>CA</state_province> - <postal_code>68141</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>68141</postalCode> <country>USA</country> <phone1>793-555-6377</phone1> <phone2>181-555-8199</phone2> <birthdate>22.12.1965</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-09-25</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1992-09-25</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>John Ortiz</fullname> <test></test> </Customer> <Customer> - <account_num>96467289328</account_num> + <accountNum>96467289328</accountNum> <lname>Tearpak</lname> <fname>Stacey</fname> <mi>L.</mi> @@ -26859,28 +26859,28 @@ <address3></address3> <address4></address4> <city>Woodland Hills</city> - <state_province>CA</state_province> - <postal_code>19499</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>19499</postalCode> <country>USA</country> <phone1>627-555-1699</phone1> <phone2>123-555-6035</phone2> <birthdate>13.09.1974</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-03-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-03-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Stacey Tearpak</fullname> <test></test> </Customer> <Customer> - <account_num>96478061079</account_num> + <accountNum>96478061079</accountNum> <lname>Hall</lname> <fname>Karen</fname> <mi>W.</mi> @@ -26889,28 +26889,28 @@ <address3></address3> <address4></address4> <city>La Jolla</city> - <state_province>CA</state_province> - <postal_code>21614</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>21614</postalCode> <country>USA</country> <phone1>877-555-8077</phone1> <phone2>812-555-4099</phone2> <birthdate>14.05.1960</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-09-24</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-09-24</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Karen Hall</fullname> <test></test> </Customer> <Customer> - <account_num>96488956212</account_num> + <accountNum>96488956212</accountNum> <lname>Narberes</lname> <fname>Greg</fname> <mi></mi> @@ -26919,28 +26919,28 @@ <address3></address3> <address4></address4> <city>Long Beach</city> - <state_province>CA</state_province> - <postal_code>38132</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>38132</postalCode> <country>USA</country> <phone1>312-555-9342</phone1> <phone2>777-555-9563</phone2> <birthdate>01.11.1918</birthdate> - <marital_status>S</marital_status> - <yearly_income>$150K +</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$150K +</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-08-21</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-08-21</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Greg Narberes</fullname> <test></test> </Customer> <Customer> - <account_num>96521899104</account_num> + <accountNum>96521899104</accountNum> <lname>Weber</lname> <fname>Fannye</fname> <mi>F.</mi> @@ -26949,28 +26949,28 @@ <address3></address3> <address4></address4> <city>Richmond</city> - <state_province>BC</state_province> - <postal_code>79116</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>79116</postalCode> <country>Canada</country> <phone1>585-555-5349</phone1> <phone2>588-555-6256</phone2> <birthdate>09.10.1950</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-06-13</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1992-06-13</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Clerical</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Fannye Weber</fullname> <test></test> </Customer> <Customer> - <account_num>96529291272</account_num> + <accountNum>96529291272</accountNum> <lname>Kabbes</lname> <fname>Diane</fname> <mi>C.</mi> @@ -26979,28 +26979,28 @@ <address3></address3> <address4></address4> <city>Santa Cruz</city> - <state_province>CA</state_province> - <postal_code>61796</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>61796</postalCode> <country>USA</country> <phone1>704-555-1584</phone1> <phone2>816-555-5006</phone2> <birthdate>23.06.1965</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-07-09</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-07-09</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Diane Kabbes</fullname> <test></test> </Customer> <Customer> - <account_num>96540647745</account_num> + <accountNum>96540647745</accountNum> <lname>Townsend</lname> <fname>Anna</fname> <mi></mi> @@ -27009,28 +27009,28 @@ <address3></address3> <address4></address4> <city>Burien</city> - <state_province>WA</state_province> - <postal_code>95234</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>95234</postalCode> <country>USA</country> <phone1>339-555-8877</phone1> <phone2>889-555-3985</phone2> <birthdate>02.10.1930</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-10-18</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-10-18</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Anna Townsend</fullname> <test></test> </Customer> <Customer> - <account_num>96542573571</account_num> + <accountNum>96542573571</accountNum> <lname>Rockne</lname> <fname>Carol Ann</fname> <mi></mi> @@ -27039,28 +27039,28 @@ <address3></address3> <address4></address4> <city>Downey</city> - <state_province>CA</state_province> - <postal_code>42752</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>42752</postalCode> <country>USA</country> <phone1>418-555-7736</phone1> <phone2>837-555-1701</phone2> <birthdate>19.11.1968</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-07-12</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-07-12</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Carol Ann Rockne</fullname> <test></test> </Customer> <Customer> - <account_num>96546671986</account_num> + <accountNum>96546671986</accountNum> <lname>Heaney</lname> <fname>Brenda</fname> <mi></mi> @@ -27069,28 +27069,28 @@ <address3></address3> <address4></address4> <city>Merida</city> - <state_province>Yucatan</state_province> - <postal_code>42351</postal_code> + <stateProvince>Yucatan</stateProvince> + <postalCode>42351</postalCode> <country>Mexico</country> <phone1>975-555-4658</phone1> <phone2>933-555-8308</phone2> <birthdate>26.01.1974</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-04-22</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-04-22</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Brenda Heaney</fullname> <test></test> </Customer> <Customer> - <account_num>96550191044</account_num> + <accountNum>96550191044</accountNum> <lname>Karavites</lname> <fname>Judith</fname> <mi>L.</mi> @@ -27099,28 +27099,28 @@ <address3></address3> <address4></address4> <city>Lincoln Acres</city> - <state_province>CA</state_province> - <postal_code>30062</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>30062</postalCode> <country>USA</country> <phone1>479-555-1808</phone1> <phone2>306-555-4315</phone2> <birthdate>09.07.1923</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-10-20</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-10-20</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Judith Karavites</fullname> <test></test> </Customer> <Customer> - <account_num>96550679206</account_num> + <accountNum>96550679206</accountNum> <lname>Carreras</lname> <fname>Donna</fname> <mi>L.</mi> @@ -27129,28 +27129,28 @@ <address3></address3> <address4></address4> <city>Santa Monica</city> - <state_province>CA</state_province> - <postal_code>94823</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>94823</postalCode> <country>USA</country> <phone1>398-555-1015</phone1> <phone2>664-555-4208</phone2> <birthdate>20.09.1937</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-11-07</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-11-07</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Donna Carreras</fullname> <test></test> </Customer> <Customer> - <account_num>96559053063</account_num> + <accountNum>96559053063</accountNum> <lname>Mendiola</lname> <fname>Gladys</fname> <mi>I.</mi> @@ -27159,28 +27159,28 @@ <address3></address3> <address4></address4> <city>Metchosin</city> - <state_province>BC</state_province> - <postal_code>48696</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>48696</postalCode> <country>Canada</country> <phone1>164-555-9451</phone1> <phone2>299-555-2501</phone2> <birthdate>28.12.1975</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-07-24</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1990-07-24</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Gladys Mendiola</fullname> <test></test> </Customer> <Customer> - <account_num>96565281152</account_num> + <accountNum>96565281152</accountNum> <lname>Trolen</lname> <fname>David</fname> <mi>S.</mi> @@ -27189,28 +27189,28 @@ <address3></address3> <address4></address4> <city>Tixapan</city> - <state_province>DF</state_province> - <postal_code>53326</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>53326</postalCode> <country>Mexico</country> <phone1>106-555-7287</phone1> <phone2>440-555-6365</phone2> <birthdate>07.04.1953</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-09-15</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-15</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>David Trolen</fullname> <test></test> </Customer> <Customer> - <account_num>96604081988</account_num> + <accountNum>96604081988</accountNum> <lname>Vernon</lname> <fname>Wanda</fname> <mi></mi> @@ -27219,28 +27219,28 @@ <address3></address3> <address4></address4> <city>Grossmont</city> - <state_province>CA</state_province> - <postal_code>72360</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>72360</postalCode> <country>USA</country> <phone1>556-555-1693</phone1> <phone2>337-555-6944</phone2> <birthdate>26.11.1919</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-06-04</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-06-04</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Wanda Vernon</fullname> <test></test> </Customer> <Customer> - <account_num>96613957881</account_num> + <accountNum>96613957881</accountNum> <lname>Lynn</lname> <fname>Sharon</fname> <mi>M.</mi> @@ -27249,28 +27249,28 @@ <address3></address3> <address4></address4> <city>Pomona</city> - <state_province>CA</state_province> - <postal_code>69444</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>69444</postalCode> <country>USA</country> <phone1>760-555-1815</phone1> <phone2>741-555-4094</phone2> <birthdate>03.08.1970</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-05-23</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-05-23</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Sharon Lynn</fullname> <test></test> </Customer> <Customer> - <account_num>96629815101</account_num> + <accountNum>96629815101</accountNum> <lname>Cavendish</lname> <fname>Brigid</fname> <mi>N.</mi> @@ -27279,28 +27279,28 @@ <address3></address3> <address4></address4> <city>Burlingame</city> - <state_province>CA</state_province> - <postal_code>54640</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>54640</postalCode> <country>USA</country> <phone1>571-555-7508</phone1> <phone2>421-555-8643</phone2> <birthdate>24.08.1961</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1993-10-09</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-10-09</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Brigid Cavendish</fullname> <test></test> </Customer> <Customer> - <account_num>96640200614</account_num> + <accountNum>96640200614</accountNum> <lname>Baltazar</lname> <fname>Alberto</fname> <mi>C.</mi> @@ -27309,28 +27309,28 @@ <address3></address3> <address4></address4> <city>Anacortes</city> - <state_province>WA</state_province> - <postal_code>90593</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>90593</postalCode> <country>USA</country> <phone1>798-555-6258</phone1> <phone2>187-555-8079</phone2> <birthdate>18.10.1970</birthdate> - <marital_status>S</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-03-26</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-03-26</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Alberto Baltazar</fullname> <test></test> </Customer> <Customer> - <account_num>96659013600</account_num> + <accountNum>96659013600</accountNum> <lname>Higgs</lname> <fname>Onetha</fname> <mi></mi> @@ -27339,28 +27339,28 @@ <address3></address3> <address4></address4> <city>Cliffside</city> - <state_province>BC</state_province> - <postal_code>41951</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>41951</postalCode> <country>Canada</country> <phone1>633-555-1579</phone1> <phone2>129-555-5915</phone2> <birthdate>20.07.1923</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-08-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-08-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Onetha Higgs</fullname> <test></test> </Customer> <Customer> - <account_num>96662001600</account_num> + <accountNum>96662001600</accountNum> <lname>Demott Jr</lname> <fname>Della</fname> <mi></mi> @@ -27369,28 +27369,28 @@ <address3></address3> <address4></address4> <city>Langford</city> - <state_province>BC</state_province> - <postal_code>44066</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>44066</postalCode> <country>Canada</country> <phone1>222-555-2615</phone1> <phone2>818-555-3979</phone2> <birthdate>18.10.1941</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-02-24</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-02-24</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Della Demott Jr</fullname> <test></test> </Customer> <Customer> - <account_num>96693496108</account_num> + <accountNum>96693496108</accountNum> <lname>Carmichael</lname> <fname>Jane</fname> <mi></mi> @@ -27399,28 +27399,28 @@ <address3></address3> <address4></address4> <city>Yakima</city> - <state_province>WA</state_province> - <postal_code>34292</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>34292</postalCode> <country>USA</country> <phone1>318-555-9222</phone1> <phone2>895-555-2703</phone2> <birthdate>03.01.1931</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-08-19</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-08-19</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Jane Carmichael</fullname> <test></test> </Customer> <Customer> - <account_num>96711778044</account_num> + <accountNum>96711778044</accountNum> <lname>Montera</lname> <fname>Hillaine</fname> <mi>D.</mi> @@ -27429,28 +27429,28 @@ <address3></address3> <address4></address4> <city>Milwaukie</city> - <state_province>OR</state_province> - <postal_code>25692</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>25692</postalCode> <country>USA</country> <phone1>703-555-7489</phone1> <phone2>706-555-8396</phone2> <birthdate>08.08.1926</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-03-08</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-03-08</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Hillaine Montera</fullname> <test></test> </Customer> <Customer> - <account_num>96764408349</account_num> + <accountNum>96764408349</accountNum> <lname>Ciochon</lname> <fname>Gina</fname> <mi>M.</mi> @@ -27459,28 +27459,28 @@ <address3></address3> <address4></address4> <city>Imperial Beach</city> - <state_province>CA</state_province> - <postal_code>84248</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>84248</postalCode> <country>USA</country> <phone1>161-555-7382</phone1> <phone2>933-555-7146</phone2> <birthdate>04.04.1914</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-11-01</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-11-01</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Gina Ciochon</fullname> <test></test> </Customer> <Customer> - <account_num>96776108145</account_num> + <accountNum>96776108145</accountNum> <lname>Anderson</lname> <fname>Mae</fname> <mi></mi> @@ -27489,28 +27489,28 @@ <address3></address3> <address4></address4> <city>Ballard</city> - <state_province>WA</state_province> - <postal_code>91394</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>91394</postalCode> <country>USA</country> <phone1>456-555-2018</phone1> <phone2>107-555-6125</phone2> <birthdate>07.05.1911</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-11-08</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-11-08</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Mae Anderson</fullname> <test></test> </Customer> <Customer> - <account_num>96814935803</account_num> + <accountNum>96814935803</accountNum> <lname>Allen</lname> <fname>Marvin</fname> <mi>L.</mi> @@ -27519,28 +27519,28 @@ <address3></address3> <address4></address4> <city>Santa Cruz</city> - <state_province>CA</state_province> - <postal_code>40236</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>40236</postalCode> <country>USA</country> <phone1>837-555-9539</phone1> <phone2>357-555-3503</phone2> <birthdate>21.02.1911</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-08-09</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-08-09</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Marvin Allen</fullname> <test></test> </Customer> <Customer> - <account_num>96817210316</account_num> + <accountNum>96817210316</accountNum> <lname>Bidelman</lname> <fname>Chris</fname> <mi>L.</mi> @@ -27549,28 +27549,28 @@ <address3></address3> <address4></address4> <city>Oakland</city> - <state_province>CA</state_province> - <postal_code>32052</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>32052</postalCode> <country>USA</country> <phone1>495-555-6460</phone1> <phone2>453-555-1111</phone2> <birthdate>25.11.1949</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-01-14</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-01-14</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Chris Bidelman</fullname> <test></test> </Customer> <Customer> - <account_num>96819458000</account_num> + <accountNum>96819458000</accountNum> <lname>Gee</lname> <fname>Orlando</fname> <mi></mi> @@ -27579,28 +27579,28 @@ <address3></address3> <address4></address4> <city>Issaquah</city> - <state_province>WA</state_province> - <postal_code>19763</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>19763</postalCode> <country>USA</country> <phone1>238-555-7268</phone1> <phone2>726-555-6118</phone2> <birthdate>17.04.1942</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-03-10</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-03-10</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Orlando Gee</fullname> <test></test> </Customer> <Customer> - <account_num>96832740306</account_num> + <accountNum>96832740306</accountNum> <lname>Breer</lname> <fname>Sara</fname> <mi>M.</mi> @@ -27609,28 +27609,28 @@ <address3></address3> <address4></address4> <city>West Covina</city> - <state_province>CA</state_province> - <postal_code>58231</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>58231</postalCode> <country>USA</country> <phone1>818-555-2818</phone1> <phone2>184-555-6011</phone2> <birthdate>14.11.1976</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-12-23</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1993-12-23</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Sara Breer</fullname> <test></test> </Customer> <Customer> - <account_num>96844837069</account_num> + <accountNum>96844837069</accountNum> <lname>Barrera</lname> <fname>Norma</fname> <mi>L.</mi> @@ -27639,28 +27639,28 @@ <address3></address3> <address4></address4> <city>San Diego</city> - <state_province>CA</state_province> - <postal_code>38396</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>38396</postalCode> <country>USA</country> <phone1>584-555-2254</phone1> <phone2>718-555-4303</phone2> <birthdate>03.02.1918</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-07-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-07-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Norma Barrera</fullname> <test></test> </Customer> <Customer> - <account_num>96848152279</account_num> + <accountNum>96848152279</accountNum> <lname>Banack</lname> <fname>Wayne</fname> <mi>R.</mi> @@ -27669,28 +27669,28 @@ <address3></address3> <address4></address4> <city>National City</city> - <state_province>CA</state_province> - <postal_code>43027</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>43027</postalCode> <country>USA</country> <phone1>526-555-9089</phone1> <phone2>199-555-2825</phone2> <birthdate>06.02.1928</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1992-06-09</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-06-09</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Wayne Banack</fullname> <test></test> </Customer> <Customer> - <account_num>96852899789</account_num> + <accountNum>96852899789</accountNum> <lname>Dean</lname> <fname>Jacob</fname> <mi>D.</mi> @@ -27699,28 +27699,28 @@ <address3></address3> <address4></address4> <city>Tixapan</city> - <state_province>DF</state_province> - <postal_code>62060</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>62060</postalCode> <country>Mexico</country> <phone1>315-555-7154</phone1> <phone2>757-555-8746</phone2> <birthdate>06.08.1938</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1990-02-07</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-02-07</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Clerical</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Jacob Dean</fullname> <test></test> </Customer> <Customer> - <account_num>96865382790</account_num> + <accountNum>96865382790</accountNum> <lname>Thompson</lname> <fname>Kendra</fname> <mi>R.</mi> @@ -27729,28 +27729,28 @@ <address3></address3> <address4></address4> <city>Lebanon</city> - <state_province>OR</state_province> - <postal_code>32853</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>32853</postalCode> <country>USA</country> <phone1>280-555-3618</phone1> <phone2>261-555-5896</phone2> <birthdate>08.02.1951</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-06-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-06-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Kendra Thompson</fullname> <test></test> </Customer> <Customer> - <account_num>96871594800</account_num> + <accountNum>96871594800</accountNum> <lname>Stevens</lname> <fname>Liza Marie</fname> <mi></mi> @@ -27759,28 +27759,28 @@ <address3></address3> <address4></address4> <city>Burbank</city> - <state_province>CA</state_province> - <postal_code>18048</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>18048</postalCode> <country>USA</country> <phone1>991-555-9310</phone1> <phone2>180-555-5104</phone2> <birthdate>26.09.1974</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-11-07</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-11-07</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Liza Marie Stevens</fullname> <test></test> </Customer> <Customer> - <account_num>96888540983</account_num> + <accountNum>96888540983</accountNum> <lname>Davis</lname> <fname>Megan</fname> <mi>S.</mi> @@ -27789,28 +27789,28 @@ <address3></address3> <address4></address4> <city>Orizaba</city> - <state_province>Veracruz</state_province> - <postal_code>54001</postal_code> + <stateProvince>Veracruz</stateProvince> + <postalCode>54001</postalCode> <country>Mexico</country> <phone1>908-555-8635</phone1> <phone2>297-555-1457</phone2> <birthdate>02.11.1957</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-11-21</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-11-21</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Megan Davis</fullname> <test></test> </Customer> <Customer> - <account_num>96891180276</account_num> + <accountNum>96891180276</accountNum> <lname>Westgaard</lname> <fname>Kerry</fname> <mi>L.</mi> @@ -27819,28 +27819,28 @@ <address3></address3> <address4></address4> <city>Bremerton</city> - <state_province>WA</state_province> - <postal_code>53592</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>53592</postalCode> <country>USA</country> <phone1>982-555-7614</phone1> <phone2>239-555-8293</phone2> <birthdate>14.02.1960</birthdate> - <marital_status>S</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-02-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-02-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Kerry Westgaard</fullname> <test></test> </Customer> <Customer> - <account_num>96894774436</account_num> + <accountNum>96894774436</accountNum> <lname>Agcaoili</lname> <fname>Samuel</fname> <mi>D.</mi> @@ -27849,28 +27849,28 @@ <address3></address3> <address4></address4> <city>Bremerton</city> - <state_province>WA</state_province> - <postal_code>74743</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>74743</postalCode> <country>USA</country> <phone1>332-555-4993</phone1> <phone2>928-555-6357</phone2> <birthdate>20.04.1952</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-03-03</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-03-03</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Samuel Agcaoili</fullname> <test></test> </Customer> <Customer> - <account_num>96895353794</account_num> + <accountNum>96895353794</accountNum> <lname>Sabella</lname> <fname>Deanna</fname> <mi>C.</mi> @@ -27879,28 +27879,28 @@ <address3></address3> <address4></address4> <city>Woodland Hills</city> - <state_province>CA</state_province> - <postal_code>23993</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>23993</postalCode> <country>USA</country> <phone1>428-555-2600</phone1> <phone2>893-555-2821</phone2> <birthdate>13.06.1916</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-09-08</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-08</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Deanna Sabella</fullname> <test></test> </Customer> <Customer> - <account_num>96895670294</account_num> + <accountNum>96895670294</accountNum> <lname>Vanderlinden</lname> <fname>Kara</fname> <mi>A.</mi> @@ -27909,28 +27909,28 @@ <address3></address3> <address4></address4> <city>Metchosin</city> - <state_province>BC</state_province> - <postal_code>91268</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>91268</postalCode> <country>Canada</country> <phone1>701-555-7607</phone1> <phone2>943-555-3171</phone2> <birthdate>16.10.1943</birthdate> - <marital_status>M</marital_status> - <yearly_income>$150K +</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$150K +</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-11-21</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-11-21</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Kara Vanderlinden</fullname> <test></test> </Customer> <Customer> - <account_num>96898486614</account_num> + <accountNum>96898486614</accountNum> <lname>Virden</lname> <fname>Keith</fname> <mi></mi> @@ -27939,28 +27939,28 @@ <address3></address3> <address4></address4> <city>Edmonds</city> - <state_province>WA</state_province> - <postal_code>47657</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>47657</postalCode> <country>USA</country> <phone1>159-555-7500</phone1> <phone2>931-555-7264</phone2> <birthdate>24.10.1951</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-04-13</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-04-13</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Keith Virden</fullname> <test></test> </Customer> <Customer> - <account_num>96922685500</account_num> + <accountNum>96922685500</accountNum> <lname>Spencer</lname> <fname>Sylvia</fname> <mi></mi> @@ -27969,28 +27969,28 @@ <address3></address3> <address4></address4> <city>Walla Walla</city> - <state_province>WA</state_province> - <postal_code>81094</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>81094</postalCode> <country>USA</country> <phone1>454-555-2135</phone1> <phone2>105-555-6243</phone2> <birthdate>09.10.1922</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-04-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-04-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Sylvia Spencer</fullname> <test></test> </Customer> <Customer> - <account_num>96939701437</account_num> + <accountNum>96939701437</accountNum> <lname>Castellucio</lname> <fname>Joseph</fname> <mi>O.</mi> @@ -27999,28 +27999,28 @@ <address3></address3> <address4></address4> <city>Santa Anita</city> - <state_province>DF</state_province> - <postal_code>36454</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>36454</postalCode> <country>Mexico</country> <phone1>835-555-9657</phone1> <phone2>355-555-3621</phone2> <birthdate>28.08.1970</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-08-26</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-08-26</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Joseph Castellucio</fullname> <test></test> </Customer> <Customer> - <account_num>96976501345</account_num> + <accountNum>96976501345</accountNum> <lname>Zugelder</lname> <fname>Judy</fname> <mi>M.</mi> @@ -28029,28 +28029,28 @@ <address3></address3> <address4></address4> <city>Port Orchard</city> - <state_province>WA</state_province> - <postal_code>53924</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>53924</postalCode> <country>USA</country> <phone1>732-555-1236</phone1> <phone2>451-555-1228</phone2> <birthdate>02.03.1970</birthdate> - <marital_status>S</marital_status> - <yearly_income>$150K +</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$150K +</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-01-12</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1991-01-12</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Judy Zugelder</fullname> <test></test> </Customer> <Customer> - <account_num>96979832649</account_num> + <accountNum>96979832649</accountNum> <lname>Malmendier</lname> <fname>Kimberly</fname> <mi>M.</mi> @@ -28059,28 +28059,28 @@ <address3></address3> <address4></address4> <city>West Covina</city> - <state_province>CA</state_province> - <postal_code>41635</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>41635</postalCode> <country>USA</country> <phone1>236-555-7386</phone1> <phone2>962-555-9893</phone2> <birthdate>18.04.1925</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-11-05</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-11-05</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Kimberly Malmendier</fullname> <test></test> </Customer> <Customer> - <account_num>96983528733</account_num> + <accountNum>96983528733</accountNum> <lname>Farrell</lname> <fname>Geri</fname> <mi>C.</mi> @@ -28089,28 +28089,28 @@ <address3></address3> <address4></address4> <city>Royal Oak</city> - <state_province>BC</state_province> - <postal_code>73962</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>73962</postalCode> <country>Canada</country> <phone1>816-555-2935</phone1> <phone2>181-555-6128</phone2> <birthdate>23.10.1933</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-05-13</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-05-13</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Geri Farrell</fullname> <test></test> </Customer> <Customer> - <account_num>96985197067</account_num> + <accountNum>96985197067</accountNum> <lname>Ault</lname> <fname>John</fname> <mi></mi> @@ -28119,28 +28119,28 @@ <address3></address3> <address4></address4> <city>Beverly Hills</city> - <state_province>CA</state_province> - <postal_code>60268</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>60268</postalCode> <country>USA</country> <phone1>582-555-2371</phone1> <phone2>716-555-4421</phone2> <birthdate>21.01.1919</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-08-08</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-08-08</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>John Ault</fullname> <test></test> </Customer> <Customer> - <account_num>96993259787</account_num> + <accountNum>96993259787</accountNum> <lname>Highfill</lname> <fname>Fran</fname> <mi>J.</mi> @@ -28149,28 +28149,28 @@ <address3></address3> <address4></address4> <city>Santa Monica</city> - <state_province>CA</state_province> - <postal_code>91190</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>91190</postalCode> <country>USA</country> <phone1>875-555-6124</phone1> <phone2>548-555-8860</phone2> <birthdate>21.08.1961</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-03-20</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1990-03-20</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Fran Highfill</fullname> <test></test> </Customer> <Customer> - <account_num>97041056752</account_num> + <accountNum>97041056752</accountNum> <lname>Waggoner</lname> <fname>Julie</fname> <mi>L.</mi> @@ -28179,28 +28179,28 @@ <address3></address3> <address4></address4> <city>San Francisco</city> - <state_province>CA</state_province> - <postal_code>11225</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>11225</postalCode> <country>USA</country> <phone1>664-555-4189</phone1> <phone2>206-555-5781</phone2> <birthdate>07.08.1921</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-09-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-09-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Clerical</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Julie Waggoner</fullname> <test></test> </Customer> <Customer> - <account_num>97041646838</account_num> + <accountNum>97041646838</accountNum> <lname>Estes</lname> <fname>Julie</fname> <mi>A.</mi> @@ -28209,28 +28209,28 @@ <address3></address3> <address4></address4> <city>Burien</city> - <state_province>WA</state_province> - <postal_code>81017</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>81017</postalCode> <country>USA</country> <phone1>629-555-9653</phone1> <phone2>610-555-2931</phone2> <birthdate>17.01.1978</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-01-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-01-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Julie Estes</fullname> <test></test> </Customer> <Customer> - <account_num>97043401002</account_num> + <accountNum>97043401002</accountNum> <lname>Jarmillo</lname> <fname>Vivian</fname> <mi>L.</mi> @@ -28239,28 +28239,28 @@ <address3></address3> <address4></address4> <city>Camacho</city> - <state_province>Zacatecas</state_province> - <postal_code>66212</postal_code> + <stateProvince>Zacatecas</stateProvince> + <postalCode>66212</postalCode> <country>Mexico</country> <phone1>440-555-6346</phone1> <phone2>529-555-2139</phone2> <birthdate>06.05.1963</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-03-17</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-03-17</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Vivian Jarmillo</fullname> <test></test> </Customer> <Customer> - <account_num>97052938938</account_num> + <accountNum>97052938938</accountNum> <lname>Steele</lname> <fname>Joan</fname> <mi></mi> @@ -28269,28 +28269,28 @@ <address3></address3> <address4></address4> <city>Kirkland</city> - <state_province>WA</state_province> - <postal_code>31667</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>31667</postalCode> <country>USA</country> <phone1>667-555-5096</phone1> <phone2>956-555-6917</phone2> <birthdate>06.04.1978</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-10-02</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-10-02</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Clerical</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Joan Steele</fullname> <test></test> </Customer> <Customer> - <account_num>97060722708</account_num> + <accountNum>97060722708</accountNum> <lname>Thompson</lname> <fname>Daniel</fname> <mi>A.</mi> @@ -28299,28 +28299,28 @@ <address3></address3> <address4></address4> <city>Spokane</city> - <state_province>WA</state_province> - <postal_code>53523</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>53523</postalCode> <country>USA</country> <phone1>741-555-4074</phone1> <phone2>898-555-4753</phone2> <birthdate>26.05.1956</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-09-26</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-09-26</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Daniel Thompson</fullname> <test></test> </Customer> <Customer> - <account_num>97062342762</account_num> + <accountNum>97062342762</accountNum> <lname>Howard</lname> <fname>Curtis</fname> <mi>W.</mi> @@ -28329,28 +28329,28 @@ <address3></address3> <address4></address4> <city>Puyallup</city> - <state_province>WA</state_province> - <postal_code>55638</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>55638</postalCode> <country>USA</country> <phone1>990-555-1453</phone1> <phone2>686-555-2817</phone2> <birthdate>03.04.1979</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-07-06</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-07-06</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Curtis Howard</fullname> <test></test> </Customer> <Customer> - <account_num>97106760144</account_num> + <accountNum>97106760144</accountNum> <lname>Elliott</lname> <fname>Shannon</fname> <mi></mi> @@ -28359,28 +28359,28 @@ <address3></address3> <address4></address4> <city>Renton</city> - <state_province>WA</state_province> - <postal_code>45864</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>45864</postalCode> <country>USA</country> <phone1>187-555-8060</phone1> <phone2>652-555-8281</phone2> <birthdate>20.02.1975</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-09-05</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-09-05</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Shannon Elliott</fullname> <test></test> </Customer> <Customer> - <account_num>97109249234</account_num> + <accountNum>97109249234</accountNum> <lname>Kobylinski</lname> <fname>Andrew</fname> <mi>J.</mi> @@ -28389,28 +28389,28 @@ <address3></address3> <address4></address4> <city>Berkeley</city> - <state_province>CA</state_province> - <postal_code>14141</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>14141</postalCode> <country>USA</country> <phone1>459-555-4067</phone1> <phone2>702-555-8631</phone2> <birthdate>20.02.1964</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-08-16</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-08-16</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Andrew Kobylinski</fullname> <test></test> </Customer> <Customer> - <account_num>97118250727</account_num> + <accountNum>97118250727</accountNum> <lname>Verdad</lname> <fname>Dora</fname> <mi></mi> @@ -28419,28 +28419,28 @@ <address3></address3> <address4></address4> <city>Haney</city> - <state_province>BC</state_province> - <postal_code>95821</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>95821</postalCode> <country>Canada</country> <phone1>817-555-3960</phone1> <phone2>690-555-3724</phone2> <birthdate>10.02.1946</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-12-15</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1994-12-15</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Dora Verdad</fullname> <test></test> </Customer> <Customer> - <account_num>97133126258</account_num> + <accountNum>97133126258</accountNum> <lname>Browning</lname> <fname>Dave</fname> <mi></mi> @@ -28449,28 +28449,28 @@ <address3></address3> <address4></address4> <city>Redmond</city> - <state_province>WA</state_province> - <postal_code>30259</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>30259</postalCode> <country>USA</country> <phone1>452-555-2253</phone1> <phone2>763-555-2703</phone2> <birthdate>10.06.1977</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1990-10-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-10-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Dave Browning</fullname> <test></test> </Customer> <Customer> - <account_num>97150464057</account_num> + <accountNum>97150464057</accountNum> <lname>Lyeba</lname> <fname>Robert</fname> <mi>J.</mi> @@ -28479,28 +28479,28 @@ <address3></address3> <address4></address4> <city>Santa Cruz</city> - <state_province>CA</state_province> - <postal_code>51809</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>51809</postalCode> <country>USA</country> <phone1>594-555-6117</phone1> <phone2>113-555-9081</phone2> <birthdate>02.10.1913</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1993-11-08</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-11-08</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Clerical</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Robert Lyeba</fullname> <test></test> </Customer> <Customer> - <account_num>97175446152</account_num> + <accountNum>97175446152</accountNum> <lname>Handley</lname> <fname>Jean</fname> <mi>F.</mi> @@ -28509,28 +28509,28 @@ <address3></address3> <address4></address4> <city>Coronado</city> - <state_province>CA</state_province> - <postal_code>51408</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>51408</postalCode> <country>USA</country> <phone1>491-555-6696</phone1> <phone2>209-555-6688</phone2> <birthdate>12.04.1957</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-01-18</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1994-01-18</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Jean Handley</fullname> <test></test> </Customer> <Customer> - <account_num>97204312086</account_num> + <accountNum>97204312086</accountNum> <lname>Meyerhoff</lname> <fname>Gary</fname> <mi>W.</mi> @@ -28539,28 +28539,28 @@ <address3></address3> <address4></address4> <city>Fremont</city> - <state_province>CA</state_province> - <postal_code>66587</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>66587</postalCode> <country>USA</country> <phone1>348-555-9684</phone1> <phone2>175-555-3191</phone2> <birthdate>26.02.1944</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-07-09</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-07-09</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Gary Meyerhoff</fullname> <test></test> </Customer> <Customer> - <account_num>97212369441</account_num> + <accountNum>97212369441</accountNum> <lname>Vigil</lname> <fname>Shane</fname> <mi>E.</mi> @@ -28569,28 +28569,28 @@ <address3></address3> <address4></address4> <city>Renton</city> - <state_province>WA</state_province> - <postal_code>71418</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>71418</postalCode> <country>USA</country> <phone1>929-555-5234</phone1> <phone2>294-555-8427</phone2> <birthdate>01.05.1914</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1991-12-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-12-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Shane Vigil</fullname> <test></test> </Customer> <Customer> - <account_num>97218812108</account_num> + <accountNum>97218812108</accountNum> <lname>Gash</lname> <fname>Dominic</fname> <mi>S.</mi> @@ -28599,28 +28599,28 @@ <address3></address3> <address4></address4> <city>Ballard</city> - <state_province>WA</state_province> - <postal_code>25291</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>25291</postalCode> <country>USA</country> <phone1>694-555-4670</phone1> <phone2>829-555-6720</phone2> <birthdate>23.03.1932</birthdate> - <marital_status>M</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-11-18</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1994-11-18</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Dominic Gash</fullname> <test></test> </Customer> <Customer> - <account_num>97218871116</account_num> + <accountNum>97218871116</accountNum> <lname>Greer</lname> <fname>Jane</fname> <mi></mi> @@ -28629,28 +28629,28 @@ <address3></address3> <address4></address4> <city>Salem</city> - <state_province>OR</state_province> - <postal_code>29922</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>29922</postalCode> <country>USA</country> <phone1>637-555-2505</phone1> <phone2>310-555-5241</phone2> <birthdate>21.07.1936</birthdate> - <marital_status>S</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1993-03-27</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1993-03-27</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Jane Greer</fullname> <test></test> </Customer> <Customer> - <account_num>97219032049</account_num> + <accountNum>97219032049</accountNum> <lname>Benson</lname> <fname>Payton</fname> <mi></mi> @@ -28659,28 +28659,28 @@ <address3></address3> <address4></address4> <city>Lemon Grove</city> - <state_province>CA</state_province> - <postal_code>48956</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>48956</postalCode> <country>USA</country> <phone1>425-555-9570</phone1> <phone2>867-555-2162</phone2> <birthdate>15.06.1940</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-06-03</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-06-03</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Payton Benson</fullname> <test></test> </Customer> <Customer> - <account_num>97238998413</account_num> + <accountNum>97238998413</accountNum> <lname>Mitzner</lname> <fname>Joseph</fname> <mi>J.</mi> @@ -28689,28 +28689,28 @@ <address3></address3> <address4></address4> <city>Olympia</city> - <state_province>WA</state_province> - <postal_code>19748</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>19748</postalCode> <country>USA</country> <phone1>390-555-6034</phone1> <phone2>371-555-8312</phone2> <birthdate>11.03.1947</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-06-14</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1990-06-14</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Joseph Mitzner</fullname> <test></test> </Customer> <Customer> - <account_num>97249673604</account_num> + <accountNum>97249673604</accountNum> <lname>Brooks</lname> <fname>Willie</fname> <mi></mi> @@ -28719,28 +28719,28 @@ <address3></address3> <address4></address4> <city>Beaverton</city> - <state_province>OR</state_province> - <postal_code>49447</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>49447</postalCode> <country>USA</country> <phone1>202-555-2727</phone1> <phone2>290-555-7520</phone2> <birthdate>08.07.1976</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-08-13</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-08-13</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Willie Brooks</fullname> <test></test> </Customer> <Customer> - <account_num>97262092232</account_num> + <accountNum>97262092232</accountNum> <lname>Hass</lname> <fname>Ann</fname> <mi>M.</mi> @@ -28749,28 +28749,28 @@ <address3></address3> <address4></address4> <city>Cliffside</city> - <state_province>BC</state_province> - <postal_code>67189</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>67189</postalCode> <country>Canada</country> <phone1>429-555-1477</phone1> <phone2>717-555-3298</phone2> <birthdate>05.02.1953</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-02-22</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-02-22</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Ann Hass</fullname> <test></test> </Customer> <Customer> - <account_num>97270310521</account_num> + <accountNum>97270310521</accountNum> <lname>Netz</lname> <fname>Amir</fname> <mi></mi> @@ -28779,28 +28779,28 @@ <address3></address3> <address4></address4> <city>Redmond</city> - <state_province>WA</state_province> - <postal_code>91253</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>91253</postalCode> <country>USA</country> <phone1>502-555-9455</phone1> <phone2>659-555-1134</phone2> <birthdate>23.10.1963</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-10-27</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1994-10-27</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>Amir Netz</fullname> <test></test> </Customer> <Customer> - <account_num>97302046418</account_num> + <accountNum>97302046418</accountNum> <lname>Hill</lname> <fname>Geneva</fname> <mi></mi> @@ -28809,28 +28809,28 @@ <address3></address3> <address4></address4> <city>Seattle</city> - <state_province>WA</state_province> - <postal_code>93368</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>93368</postalCode> <country>USA</country> <phone1>752-555-6834</phone1> <phone2>448-555-8198</phone2> <birthdate>24.06.1948</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1994-05-04</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-05-04</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Geneva Hill</fullname> <test></test> </Customer> <Customer> - <account_num>97316396236</account_num> + <accountNum>97316396236</accountNum> <lname>Drury</lname> <fname>Gary</fname> <mi>L.</mi> @@ -28839,28 +28839,28 @@ <address3></address3> <address4></address4> <city>Vancouver</city> - <state_province>BC</state_province> - <postal_code>10888</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>10888</postalCode> <country>Canada</country> <phone1>848-555-4441</phone1> <phone2>652-555-8320</phone2> <birthdate>22.04.1918</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-04-01</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-04-01</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Gary Drury</fullname> <test></test> </Customer> <Customer> - <account_num>97330188155</account_num> + <accountNum>97330188155</accountNum> <lname>White</lname> <fname>Vincent</fname> <mi>B.</mi> @@ -28869,28 +28869,28 @@ <address3></address3> <address4></address4> <city>Lynnwood</city> - <state_province>WA</state_province> - <postal_code>78163</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>78163</postalCode> <country>USA</country> <phone1>221-555-9448</phone1> <phone2>464-555-5013</phone2> <birthdate>19.11.1939</birthdate> - <marital_status>M</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1990-10-09</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-10-09</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Vincent White</fullname> <test></test> </Customer> <Customer> - <account_num>97333889603</account_num> + <accountNum>97333889603</accountNum> <lname>Kahl</lname> <fname>Sandra</fname> <mi></mi> @@ -28899,28 +28899,28 @@ <address3></address3> <address4></address4> <city>Hidalgo</city> - <state_province>Zacatecas</state_province> - <postal_code>60844</postal_code> + <stateProvince>Zacatecas</stateProvince> + <postalCode>60844</postalCode> <country>Mexico</country> <phone1>579-555-9341</phone1> <phone2>142-555-9680</phone2> <birthdate>06.07.1953</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1994-11-06</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1994-11-06</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Sandra Kahl</fullname> <test></test> </Customer> <Customer> - <account_num>97347338199</account_num> + <accountNum>97347338199</accountNum> <lname>Aguilar</lname> <fname>James</fname> <mi>E.</mi> @@ -28929,28 +28929,28 @@ <address3></address3> <address4></address4> <city>Lebanon</city> - <state_province>OR</state_province> - <postal_code>67990</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>67990</postalCode> <country>USA</country> <phone1>565-555-4551</phone1> <phone2>876-555-5001</phone2> <birthdate>12.12.1918</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1992-03-15</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-03-15</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>James Aguilar</fullname> <test></test> </Customer> <Customer> - <account_num>97361274957</account_num> + <accountNum>97361274957</accountNum> <lname>Vanderbout</lname> <fname>Gregory</fname> <mi>D.</mi> @@ -28959,28 +28959,28 @@ <address3></address3> <address4></address4> <city>Haney</city> - <state_province>BC</state_province> - <postal_code>16832</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>16832</postalCode> <country>Canada</country> <phone1>946-555-3073</phone1> <phone2>226-555-2380</phone2> <birthdate>02.12.1956</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1994-03-19</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1994-03-19</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Gregory Vanderbout</fullname> <test></test> </Customer> <Customer> - <account_num>97369326949</account_num> + <accountNum>97369326949</accountNum> <lname>Visser</lname> <fname>Filomena</fname> <mi>S.</mi> @@ -28989,28 +28989,28 @@ <address3></address3> <address4></address4> <city>Pomona</city> - <state_province>CA</state_province> - <postal_code>89138</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>89138</postalCode> <country>USA</country> <phone1>603-555-8994</phone1> <phone2>322-555-8987</phone2> <birthdate>09.02.1962</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-03-13</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1991-03-13</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Filomena Visser</fullname> <test></test> </Customer> <Customer> - <account_num>97370748519</account_num> + <accountNum>97370748519</accountNum> <lname>Sanchez</lname> <fname>Thomas</fname> <mi>E.</mi> @@ -29019,28 +29019,28 @@ <address3></address3> <address4></address4> <city>Redwood City</city> - <state_province>CA</state_province> - <postal_code>41438</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>41438</postalCode> <country>USA</country> <phone1>107-555-6144</phone1> <phone2>834-555-8651</phone2> <birthdate>04.11.1923</birthdate> - <marital_status>S</marital_status> - <yearly_income>$110K - $130K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$110K - $130K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-09-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-09-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Thomas Sanchez</fullname> <test></test> </Customer> <Customer> - <account_num>97371311783</account_num> + <accountNum>97371311783</accountNum> <lname>Spicer</lname> <fname>Geraldine</fname> <mi></mi> @@ -29049,28 +29049,28 @@ <address3></address3> <address4></address4> <city>Vancouver</city> - <state_province>BC</state_province> - <postal_code>93580</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>93580</postalCode> <country>Canada</country> <phone1>926-555-5351</phone1> <phone2>953-555-4887</phone2> <birthdate>03.10.1925</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-07-14</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1992-07-14</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Geraldine Spicer</fullname> <test></test> </Customer> <Customer> - <account_num>97371982336</account_num> + <accountNum>97371982336</accountNum> <lname>Medina</lname> <fname>Nellie</fname> <mi></mi> @@ -29079,28 +29079,28 @@ <address3></address3> <address4></address4> <city>Daly City</city> - <state_province>CA</state_province> - <postal_code>47453</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>47453</postalCode> <country>USA</country> <phone1>453-555-1130</phone1> <phone2>588-555-3180</phone2> <birthdate>22.05.1975</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>5</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>5</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1994-06-15</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1994-06-15</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Nellie Medina</fullname> <test></test> </Customer> <Customer> - <account_num>97392292022</account_num> + <accountNum>97392292022</accountNum> <lname>Young</lname> <fname>Richard</fname> <mi>I.</mi> @@ -29109,28 +29109,28 @@ <address3></address3> <address4></address4> <city>La Jolla</city> - <state_province>CA</state_province> - <postal_code>78376</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>78376</postalCode> <country>USA</country> <phone1>395-555-7966</phone1> <phone2>969-555-1701</phone2> <birthdate>17.05.1941</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-05-21</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-05-21</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Richard Young</fullname> <test></test> </Customer> <Customer> - <account_num>97394636273</account_num> + <accountNum>97394636273</accountNum> <lname>Krupka</lname> <fname>Margaret</fname> <mi>C.</mi> @@ -29139,28 +29139,28 @@ <address3></address3> <address4></address4> <city>Arcadia</city> - <state_province>CA</state_province> - <postal_code>97410</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>97410</postalCode> <country>USA</country> <phone1>184-555-6030</phone1> <phone2>626-555-7623</phone2> <birthdate>09.12.1977</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-05-22</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-05-22</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Margaret Krupka</fullname> <test></test> </Customer> <Customer> - <account_num>97403530478</account_num> + <accountNum>97403530478</accountNum> <lname>Buensalido</lname> <fname>Edward</fname> <mi>V.</mi> @@ -29169,28 +29169,28 @@ <address3></address3> <address4></address4> <city>Grossmont</city> - <state_province>CA</state_province> - <postal_code>68202</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>68202</postalCode> <country>USA</country> <phone1>149-555-2494</phone1> <phone2>130-555-4773</phone2> <birthdate>13.09.1958</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1991-12-03</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-12-03</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Edward Buensalido</fullname> <test></test> </Customer> <Customer> - <account_num>97438431382</account_num> + <accountNum>97438431382</accountNum> <lname>Donovan</lname> <fname>John</fname> <mi>N.</mi> @@ -29199,28 +29199,28 @@ <address3></address3> <address4></address4> <city>San Andres</city> - <state_province>DF</state_province> - <postal_code>53398</postal_code> + <stateProvince>DF</stateProvince> + <postalCode>53398</postalCode> <country>Mexico</country> <phone1>199-555-2844</phone1> <phone2>949-555-3980</phone2> <birthdate>07.09.1949</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-09-27</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-09-27</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>John Donovan</fullname> <test></test> </Customer> <Customer> - <account_num>97446322441</account_num> + <accountNum>97446322441</accountNum> <lname>Smith</lname> <fname>Roberto</fname> <mi>A.</mi> @@ -29229,28 +29229,28 @@ <address3></address3> <address4></address4> <city>Victoria</city> - <state_province>BC</state_province> - <postal_code>89351</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>89351</postalCode> <country>Canada</country> <phone1>188-555-6937</phone1> <phone2>476-555-8758</phone2> <birthdate>12.03.1970</birthdate> - <marital_status>S</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-02-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-02-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Roberto Smith</fullname> <test></test> </Customer> <Customer> - <account_num>97453017200</account_num> + <accountNum>97453017200</accountNum> <lname>Gentile</lname> <fname>Josef</fname> <mi>S.</mi> @@ -29259,28 +29259,28 @@ <address3></address3> <address4></address4> <city>Downey</city> - <state_province>CA</state_province> - <postal_code>40708</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>40708</postalCode> <country>USA</country> <phone1>261-555-5916</phone1> <phone2>545-555-7992</phone2> <birthdate>27.08.1942</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>M</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Graduate Degree</education> - <date_accnt_opened>1994-03-22</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1994-03-22</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Josef Gentile</fullname> <test></test> </Customer> <Customer> - <account_num>97465274930</account_num> + <accountNum>97465274930</accountNum> <lname>Tancredy</lname> <fname>Sarah</fname> <mi>M.</mi> @@ -29289,28 +29289,28 @@ <address3></address3> <address4></address4> <city>San Carlos</city> - <state_province>CA</state_province> - <postal_code>42823</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>42823</postalCode> <country>USA</country> <phone1>638-555-4692</phone1> <phone2>334-555-6056</phone2> <birthdate>26.11.1959</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-08-07</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-08-07</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Sarah Tancredy</fullname> <test></test> </Customer> <Customer> - <account_num>97467849850</account_num> + <accountNum>97467849850</accountNum> <lname>Wilson</lname> <fname>Shelly</fname> <mi>L.</mi> @@ -29319,28 +29319,28 @@ <address3></address3> <address4></address4> <city>Newport Beach</city> - <state_province>CA</state_province> - <postal_code>59342</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>59342</postalCode> <country>USA</country> <phone1>734-555-2299</phone1> <phone2>538-555-6178</phone2> <birthdate>02.11.1911</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1990-04-01</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1990-04-01</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Shelly Wilson</fullname> <test></test> </Customer> <Customer> - <account_num>97469169497</account_num> + <accountNum>97469169497</accountNum> <lname>Leri</lname> <fname>Sean</fname> <mi>P.</mi> @@ -29349,28 +29349,28 @@ <address3></address3> <address4></address4> <city>Sooke</city> - <state_province>BC</state_province> - <postal_code>27618</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>27618</postalCode> <country>Canada</country> <phone1>346-555-1963</phone1> <phone2>349-555-2870</phone2> <birthdate>07.07.1975</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>2</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-07-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-07-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Sean Leri</fullname> <test></test> </Customer> <Customer> - <account_num>97479984164</account_num> + <accountNum>97479984164</accountNum> <lname>Carr</lname> <fname>Mike</fname> <mi></mi> @@ -29379,28 +29379,28 @@ <address3></address3> <address4></address4> <city>Arcadia</city> - <state_province>CA</state_province> - <postal_code>83006</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>83006</postalCode> <country>USA</country> <phone1>465-555-7199</phone1> <phone2>576-555-1620</phone2> <birthdate>18.10.1952</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-06-11</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-06-11</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Mike Carr</fullname> <test></test> </Customer> <Customer> - <account_num>97508142000</account_num> + <accountNum>97508142000</accountNum> <lname>Zobairi</lname> <fname>Steven</fname> <mi>A.</mi> @@ -29409,28 +29409,28 @@ <address3></address3> <address4></address4> <city>Olympia</city> - <state_province>WA</state_province> - <postal_code>17445</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>17445</postalCode> <country>USA</country> <phone1>999-555-5492</phone1> <phone2>411-555-5942</phone2> <birthdate>21.11.1948</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-06-17</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-06-17</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Steven Zobairi</fullname> <test></test> </Customer> <Customer> - <account_num>11419414281</account_num> + <accountNum>11419414281</accountNum> <lname>Bowen</lname> <fname>Kelly</fname> <mi></mi> @@ -29439,28 +29439,28 @@ <address3></address3> <address4></address4> <city>Olympia</city> - <state_province>WA</state_province> - <postal_code>99508</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>99508</postalCode> <country>USA</country> <phone1>231-555-4603</phone1> <phone2>189-555-8253</phone2> <birthdate>11.12.1941</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>M</gender> - <total_children>4</total_children> - <num_children_at_home>4</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>4</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-06-24</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-06-24</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Kelly Bowen</fullname> <test></test> </Customer> <Customer> - <account_num>11419902400</account_num> + <accountNum>11419902400</accountNum> <lname>Murphy</lname> <fname>Esther</fname> <mi></mi> @@ -29469,28 +29469,28 @@ <address3></address3> <address4></address4> <city>Woodburn</city> - <state_province>OR</state_province> - <postal_code>36462</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>36462</postalCode> <country>USA</country> <phone1>635-555-1753</phone1> <phone2>462-555-4260</phone2> <birthdate>11.10.1957</birthdate> - <marital_status>S</marital_status> - <yearly_income>$90K - $110K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$90K - $110K</yearlyIncome> <gender>F</gender> - <total_children>0</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>0</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-08-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-08-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Esther Murphy</fullname> <test></test> </Customer> <Customer> - <account_num>11423416137</account_num> + <accountNum>11423416137</accountNum> <lname>Miller</lname> <fname>Tiffany</fname> <mi></mi> @@ -29499,28 +29499,28 @@ <address3></address3> <address4></address4> <city>Chula Vista</city> - <state_province>CA</state_province> - <postal_code>86818</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>86818</postalCode> <country>USA</country> <phone1>666-555-3220</phone1> <phone2>693-555-2755</phone2> <birthdate>05.11.1934</birthdate> - <marital_status>S</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-06-04</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-06-04</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Tiffany Miller</fullname> <test></test> </Customer> <Customer> - <account_num>11425427800</account_num> + <accountNum>11425427800</accountNum> <lname>Abravaya</lname> <fname>William</fname> <mi>J.</mi> @@ -29529,28 +29529,28 @@ <address3></address3> <address4></address4> <city>Oregon City</city> - <state_province>OR</state_province> - <postal_code>88933</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>88933</postalCode> <country>USA</country> <phone1>193-555-7998</phone1> <phone2>328-555-1048</phone2> <birthdate>09.10.1958</birthdate> - <marital_status>S</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>5</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>5</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-04-16</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1991-04-16</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>0</num_cars_owned> + <numCarsOwned>0</numCarsOwned> <fullname>William Abravaya</fullname> <test></test> </Customer> <Customer> - <account_num>11428716200</account_num> + <accountNum>11428716200</accountNum> <lname>Hazlip</lname> <fname>Margaret</fname> <mi></mi> @@ -29559,28 +29559,28 @@ <address3></address3> <address4></address4> <city>Albany</city> - <state_province>OR</state_province> - <postal_code>79160</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>79160</postalCode> <country>USA</country> <phone1>135-555-5834</phone1> <phone2>709-555-8570</phone2> <birthdate>26.08.1953</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-03-03</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-03-03</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Margaret Hazlip</fullname> <test></test> </Customer> <Customer> - <account_num>11429612000</account_num> + <accountNum>11429612000</accountNum> <lname>Carter</lname> <fname>Linda</fname> <mi></mi> @@ -29589,28 +29589,28 @@ <address3></address3> <address4></address4> <city>Yakima</city> - <state_province>WA</state_province> - <postal_code>47436</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>47436</postalCode> <country>USA</country> <phone1>824-555-3898</phone1> <phone2>366-555-5491</phone2> <birthdate>28.08.1912</birthdate> - <marital_status>S</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1993-10-01</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1993-10-01</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Linda Carter</fullname> <test></test> </Customer> <Customer> - <account_num>11430507900</account_num> + <accountNum>11430507900</accountNum> <lname>Slusher</lname> <fname>Frank</fname> <mi></mi> @@ -29619,28 +29619,28 @@ <address3></address3> <address4></address4> <city>Glendale</city> - <state_province>CA</state_province> - <postal_code>30117</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>30117</postalCode> <country>USA</country> <phone1>789-555-9362</phone1> <phone2>770-555-2641</phone2> <birthdate>18.08.1964</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-03-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-03-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Frank Slusher</fullname> <test></test> </Customer> <Customer> - <account_num>11433152556</account_num> + <accountNum>11433152556</accountNum> <lname>Nzwonkwelle</lname> <fname>Janelle</fname> <mi></mi> @@ -29649,28 +29649,28 @@ <address3></address3> <address4></address4> <city>Victoria</city> - <state_province>BC</state_province> - <postal_code>63555</postal_code> + <stateProvince>BC</stateProvince> + <postalCode>63555</postalCode> <country>Canada</country> <phone1>839-555-9713</phone1> <phone2>689-555-1848</phone2> <birthdate>27.04.1967</birthdate> - <marital_status>M</marital_status> - <yearly_income>$130K - $150K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$130K - $150K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-10-12</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-10-12</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Janelle Nzwonkwelle</fullname> <test></test> </Customer> <Customer> - <account_num>11437229500</account_num> + <accountNum>11437229500</accountNum> <lname>McCain</lname> <fname>Linda</fname> <mi>L.</mi> @@ -29679,28 +29679,28 @@ <address3></address3> <address4></address4> <city>Burlingame</city> - <state_province>CA</state_province> - <postal_code>85104</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>85104</postalCode> <country>USA</country> <phone1>828-555-4805</phone1> <phone2>455-555-1284</phone2> <birthdate>19.08.1974</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>3</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1993-08-15</date_accnt_opened> - <member_card>Silver</member_card> + <dateAccntOpened>1993-08-15</dateAccntOpened> + <memberCard>Silver</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Linda McCain</fullname> <test></test> </Customer> <Customer> - <account_num>11456353700</account_num> + <accountNum>11456353700</accountNum> <lname>Daly</lname> <fname>Juanita</fname> <mi></mi> @@ -29709,28 +29709,28 @@ <address3></address3> <address4></address4> <city>W. Linn</city> - <state_province>OR</state_province> - <postal_code>84703</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>84703</postalCode> <country>USA</country> <phone1>901-555-3784</phone1> <phone2>397-555-8120</phone2> <birthdate>18.10.1935</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-10-15</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-10-15</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Juanita Daly</fullname> <test></test> </Customer> <Customer> - <account_num>11468155400</account_num> + <accountNum>11468155400</accountNum> <lname>LaTulippe</lname> <fname>Nancy</fname> <mi></mi> @@ -29739,28 +29739,28 @@ <address3></address3> <address4></address4> <city>W. Linn</city> - <state_province>OR</state_province> - <postal_code>72415</postal_code> + <stateProvince>OR</stateProvince> + <postalCode>72415</postalCode> <country>USA</country> <phone1>251-555-1162</phone1> <phone2>847-555-2527</phone2> <birthdate>04.08.1922</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-11-25</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-11-25</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Nancy LaTulippe</fullname> <test></test> </Customer> <Customer> - <account_num>11469324827</account_num> + <accountNum>11469324827</accountNum> <lname>Lewis</lname> <fname>Saje</fname> <mi></mi> @@ -29769,28 +29769,28 @@ <address3></address3> <address4></address4> <city>Burbank</city> - <state_province>CA</state_province> - <postal_code>38176</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>38176</postalCode> <country>USA</country> <phone1>347-555-7770</phone1> <phone2>151-555-2648</phone2> <birthdate>25.08.1924</birthdate> - <marital_status>M</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1992-03-16</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-03-16</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Saje Lewis</fullname> <test></test> </Customer> <Customer> - <account_num>11473680734</account_num> + <accountNum>11473680734</accountNum> <lname>Bomar</lname> <fname>Herbert</fname> <mi>R.</mi> @@ -29799,28 +29799,28 @@ <address3></address3> <address4></address4> <city>Spring Valley</city> - <state_province>CA</state_province> - <postal_code>91048</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>91048</postalCode> <country>USA</country> <phone1>859-555-7434</phone1> <phone2>862-555-8341</phone2> <birthdate>08.03.1930</birthdate> - <marital_status>M</marital_status> - <yearly_income>$70K - $90K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$70K - $90K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>3</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>3</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1992-05-15</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1992-05-15</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Herbert Bomar</fullname> <test></test> </Customer> <Customer> - <account_num>11475585103</account_num> + <accountNum>11475585103</accountNum> <lname>Renfro</lname> <fname>Darlene</fname> <mi>S.</mi> @@ -29829,28 +29829,28 @@ <address3></address3> <address4></address4> <city>Renton</city> - <state_province>WA</state_province> - <postal_code>95678</postal_code> + <stateProvince>WA</stateProvince> + <postalCode>95678</postalCode> <country>USA</country> <phone1>444-555-8725</phone1> <phone2>555-555-3146</phone2> <birthdate>17.10.1946</birthdate> - <marital_status>M</marital_status> - <yearly_income>$10K - $30K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$10K - $30K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial High School</education> - <date_accnt_opened>1992-12-17</date_accnt_opened> - <member_card>Normal</member_card> + <dateAccntOpened>1992-12-17</dateAccntOpened> + <memberCard>Normal</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>2</num_cars_owned> + <numCarsOwned>2</numCarsOwned> <fullname>Darlene Renfro</fullname> <test></test> </Customer> <Customer> - <account_num>11479506500</account_num> + <accountNum>11479506500</accountNum> <lname>Wheeler</lname> <fname>Maria</fname> <mi></mi> @@ -29859,28 +29859,28 @@ <address3></address3> <address4></address4> <city>Imperial Beach</city> - <state_province>CA</state_province> - <postal_code>14388</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>14388</postalCode> <country>USA</country> <phone1>978-555-7018</phone1> <phone2>390-555-7467</phone2> <birthdate>28.06.1938</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>1</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>1</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1990-08-20</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-08-20</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Professional</occupation> <houseowner>N</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Maria Wheeler</fullname> <test></test> </Customer> <Customer> - <account_num>11483218669</account_num> + <accountNum>11483218669</accountNum> <lname>Irvin</lname> <fname>Tony</fname> <mi></mi> @@ -29889,28 +29889,28 @@ <address3></address3> <address4></address4> <city>Richmond</city> - <state_province>CA</state_province> - <postal_code>84180</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>84180</postalCode> <country>USA</country> <phone1>459-555-5539</phone1> <phone2>878-555-8503</phone2> <birthdate>08.07.1957</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1991-02-19</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-02-19</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>Y</houseowner> - <num_cars_owned>1</num_cars_owned> + <numCarsOwned>1</numCarsOwned> <fullname>Tony Irvin</fullname> <test></test> </Customer> <Customer> - <account_num>11492204100</account_num> + <accountNum>11492204100</accountNum> <lname>Green</lname> <fname>Stephen</fname> <mi></mi> @@ -29919,28 +29919,28 @@ <address3></address3> <address4></address4> <city>Daly City</city> - <state_province>CA</state_province> - <postal_code>69375</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>69375</postalCode> <country>USA</country> <phone1>117-555-2460</phone1> <phone2>975-555-6111</phone2> <birthdate>20.07.1974</birthdate> - <marital_status>S</marital_status> - <yearly_income>$30K - $50K</yearly_income> + <maritalStatus>S</maritalStatus> + <yearlyIncome>$30K - $50K</yearlyIncome> <gender>F</gender> - <total_children>4</total_children> - <num_children_at_home>0</num_children_at_home> + <totalChildren>4</totalChildren> + <numChildrenAtHome>0</numChildrenAtHome> <education>High School Degree</education> - <date_accnt_opened>1990-06-05</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1990-06-05</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Skilled Manual</occupation> <houseowner>N</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Stephen Green</fullname> <test></test> </Customer> <Customer> - <account_num>11500020027</account_num> + <accountNum>11500020027</accountNum> <lname>Stanford</lname> <fname>Virginia</fname> <mi>C.</mi> @@ -29949,28 +29949,28 @@ <address3></address3> <address4></address4> <city>Spring Valley</city> - <state_province>CA</state_province> - <postal_code>32621</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>32621</postalCode> <country>USA</country> <phone1>520-555-8610</phone1> <phone2>347-555-2118</phone2> <birthdate>02.05.1963</birthdate> - <marital_status>M</marital_status> - <yearly_income>$150K +</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$150K +</yearlyIncome> <gender>M</gender> - <total_children>3</total_children> - <num_children_at_home>1</num_children_at_home> + <totalChildren>3</totalChildren> + <numChildrenAtHome>1</numChildrenAtHome> <education>Partial College</education> - <date_accnt_opened>1994-04-25</date_accnt_opened> - <member_card>Golden</member_card> + <dateAccntOpened>1994-04-25</dateAccntOpened> + <memberCard>Golden</memberCard> <occupation>Management</occupation> <houseowner>Y</houseowner> - <num_cars_owned>4</num_cars_owned> + <numCarsOwned>4</numCarsOwned> <fullname>Virginia Stanford</fullname> <test></test> </Customer> <Customer> - <account_num>11509236100</account_num> + <accountNum>11509236100</accountNum> <lname>Ritchie</lname> <fname>Michael</fname> <mi>R.</mi> @@ -29979,24 +29979,24 @@ <address3></address3> <address4></address4> <city>Glendale</city> - <state_province>CA</state_province> - <postal_code>56686</postal_code> + <stateProvince>CA</stateProvince> + <postalCode>56686</postalCode> <country>USA</country> <phone1>440-555-7818</phone1> <phone2>705-555-2011</phone2> <birthdate>19.02.1973</birthdate> - <marital_status>M</marital_status> - <yearly_income>$50K - $70K</yearly_income> + <maritalStatus>M</maritalStatus> + <yearlyIncome>$50K - $70K</yearlyIncome> <gender>M</gender> - <total_children>2</total_children> - <num_children_at_home>2</num_children_at_home> + <totalChildren>2</totalChildren> + <numChildrenAtHome>2</numChildrenAtHome> <education>Bachelors Degree</education> - <date_accnt_opened>1991-10-06</date_accnt_opened> - <member_card>Bronze</member_card> + <dateAccntOpened>1991-10-06</dateAccntOpened> + <memberCard>Bronze</memberCard> <occupation>Management</occupation> <houseowner>N</houseowner> - <num_cars_owned>3</num_cars_owned> + <numCarsOwned>3</numCarsOwned> <fullname>Michael Ritchie</fullname> <test></test> </Customer> -</vector> \ No newline at end of file +</vector>
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/employeesdepartment.xml b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/employeesdepartment.xml index 846bbc8..df0f63b 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/employeesdepartment.xml +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/employeesdepartment.xml
@@ -1,38 +1,39 @@ <vector> <Department> - <department_description>HQ General Management</department_description> + <departmentDescription>HQ General Management</departmentDescription> </Department> <Department> - <department_description>HQ Information Systems</department_description> + <departmentDescription>HQ Information Systems</departmentDescription> </Department> <Department> - <department_description>HQ Marketing</department_description> + <departmentDescription>HQ Marketing</departmentDescription> </Department> <Department> - <department_description>HQ Human Resources</department_description> + <departmentDescription>HQ Human Resources</departmentDescription> </Department> <Department> - <department_description>HQ Finance and Accounting</department_description> + <departmentDescription>HQ Finance and Accounting</departmentDescription> </Department> <Department> - <department_description>Store Management</department_description> + <departmentDescription>Store Management</departmentDescription> </Department> <Department> - <department_description>Store Information Systems</department_description> + <departmentDescription>Store Information Systems</departmentDescription> </Department> <Department> - <department_description>Store Permanent Checkers</department_description> + <departmentDescription>Store Permanent Checker</departmentDescription> </Department> <Department> - <department_description>Store Temporary Checkers</department_description> + <departmentDescription>Store Temporary Checker</departmentDescription> </Department> <Department> - <department_description>Store Permanent Stockers</department_description> + <departmentDescription>Store Permanent Stocker</departmentDescription> </Department> <Department> - <department_description>Store Temporary Stockers</department_description> + <departmentDescription>Store Temporary Stocker</departmentDescription> </Department> <Department> - <department_description>Store Permanent Butchers</department_description> + <departmentDescription>Store Permanent Butcher</departmentDescription> </Department> -</vector> \ No newline at end of file +</vector> +
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/employeesposition.xml b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/employeesposition.xml index b8aa182..1c760fa 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/employeesposition.xml +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/employeesposition.xml
@@ -1,18592 +1,18595 @@ <vector> <Position> - <position_title>President</position_title> - <pay_type>Monthly</pay_type> - <min_scale>25000</min_scale> - <max_scale>85000</max_scale> - <management_role>Senior Management</management_role> + <positionTitle>President</positionTitle> + <payType>Monthly</payType> + <minScale>25000</minScale> + <maxScale>85000</maxScale> + <managementRole>Senior Management</managementRole> <Employee> - <full_name>Sheri Nowymer</full_name> - <first_name>Sheri</first_name> - <last_name>Nowmer</last_name> - <position_title>President</position_title> - <birth_date>26.08.1961</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Sheri Nowymer</fullName> + <firstName>Sheri</firstName> + <lastName>Nowmer</lastName> + <positionTitle>President</positionTitle> + <Department> + <departmentDescription>HQ General Management</departmentDescription> + </Department> + <birthDate>26.08.1961</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>80000</salary> - <supervisor_id>0</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>0</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Senior Management</management_role> + <managementRole>Senior Management</managementRole> <profileimage></profileimage> </Employee> </Position> <Position> - <position_title>HQ Information Systems</position_title> - <pay_type>Monthly</pay_type> - <min_scale>6700</min_scale> - <max_scale>10000</max_scale> - <management_role>Middle Management</management_role> + <positionTitle>HQ Information Systems</positionTitle> + <payType>Monthly</payType> + <minScale>6700</minScale> + <maxScale>10000</maxScale> + <managementRole>Middle Management</managementRole> <Employee> - <full_name>Jennifer Cooper</full_name> - <first_name>Jennifer</first_name> - <last_name>Cooper</last_name> - <position_title>HQ Information Systems</position_title> - <birth_date>06.04.1961</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jennifer Cooper</fullName> + <firstName>Jennifer</firstName> + <lastName>Cooper</lastName> + <positionTitle>HQ Information Systems</positionTitle><Department><departmentDescription>HQ Information Systems</departmentDescription></Department> + <birthDate>06.04.1961</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>6</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>6</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Middle Management</management_role> + <managementRole>Middle Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Peggy Petty</full_name> - <first_name>Peggy</first_name> - <last_name>Petty</last_name> - <position_title>HQ Information Systems</position_title> - <birth_date>09.04.1958</birth_date> - <hire_date>01.01.1995</hire_date> - <end_date></end_date> + <fullName>Peggy Petty</fullName> + <firstName>Peggy</firstName> + <lastName>Petty</lastName> + <positionTitle>HQ Information Systems</positionTitle><Department><departmentDescription>HQ Information Systems</departmentDescription></Department> + <birthDate>09.04.1958</birthDate> + <hireDate>01.01.1995</hireDate> + <endDate></endDate> <salary>8000</salary> - <supervisor_id>6</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>6</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Middle Management</management_role> + <managementRole>Middle Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jessica Olguin</full_name> - <first_name>Jessica</first_name> - <last_name>Olguin</last_name> - <position_title>HQ Information Systems</position_title> - <birth_date>23.01.1959</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jessica Olguin</fullName> + <firstName>Jessica</firstName> + <lastName>Olguin</lastName> + <positionTitle>HQ Information Systems</positionTitle><Department><departmentDescription>HQ Information Systems</departmentDescription></Department> + <birthDate>23.01.1959</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>10000</salary> - <supervisor_id>6</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>6</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Middle Management</management_role> + <managementRole>Middle Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Phyllis Burchett</full_name> - <first_name>Phyllis</first_name> - <last_name>Burchett</last_name> - <position_title>HQ Information Systems</position_title> - <birth_date>27.10.1926</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Phyllis Burchett</fullName> + <firstName>Phyllis</firstName> + <lastName>Burchett</lastName> + <positionTitle>HQ Information Systems</positionTitle><Department><departmentDescription>HQ Information Systems</departmentDescription></Department> + <birthDate>27.10.1926</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>10000</salary> - <supervisor_id>6</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>6</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Middle Management</management_role> + <managementRole>Middle Management</managementRole> <profileimage></profileimage> </Employee> </Position> <Position> - <position_title>HQ Marketing</position_title> - <pay_type>Monthly</pay_type> - <min_scale>5000</min_scale> - <max_scale>8500</max_scale> - <management_role>Middle Management</management_role> + <positionTitle>HQ Marketing</positionTitle> + <payType>Monthly</payType> + <minScale>5000</minScale> + <maxScale>8500</maxScale> + <managementRole>Middle Management</managementRole> <Employee> - <full_name>Donna Arnold</full_name> - <first_name>Donna</first_name> - <last_name>Arnold</last_name> - <position_title>HQ Marketing</position_title> - <birth_date>22.11.1915</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Donna Arnold</fullName> + <firstName>Donna</firstName> + <lastName>Arnold</lastName> + <positionTitle>HQ Marketing</positionTitle><Department><departmentDescription>HQ Marketing</departmentDescription></Department> + <birthDate>22.11.1915</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>45000</salary> - <supervisor_id>1</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Middle Management</management_role> + <managementRole>Middle Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Howard Bechard</full_name> - <first_name>Howard</first_name> - <last_name>Bechard</last_name> - <position_title>HQ Marketing</position_title> - <birth_date>19.04.1919</birth_date> - <hire_date>01.01.1995</hire_date> - <end_date></end_date> + <fullName>Howard Bechard</fullName> + <firstName>Howard</firstName> + <lastName>Bechard</lastName> + <positionTitle>HQ Marketing</positionTitle><Department><departmentDescription>HQ Marketing</departmentDescription></Department> + <birthDate>19.04.1919</birthDate> + <hireDate>01.01.1995</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>36</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>36</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Middle Management</management_role> + <managementRole>Middle Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Doris Carter</full_name> - <first_name>Doris</first_name> - <last_name>Carter</last_name> - <position_title>HQ Marketing</position_title> - <birth_date>27.03.1965</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Doris Carter</fullName> + <firstName>Doris</firstName> + <lastName>Carter</lastName> + <positionTitle>HQ Marketing</positionTitle><Department><departmentDescription>HQ Marketing</departmentDescription></Department> + <birthDate>27.03.1965</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>5000</salary> - <supervisor_id>36</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>36</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Middle Management</management_role> + <managementRole>Middle Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Adam Reynold</full_name> - <first_name>Adam</first_name> - <last_name>Reynold</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>10.09.2016</birth_date> - <hire_date>13.02.1997</hire_date> - <end_date></end_date> + <fullName>Adam Reynold</fullName> + <firstName>Adam</firstName> + <lastName>Reynold</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>10.09.2016</birthDate> + <hireDate>13.02.1997</hireDate> + <endDate></endDate> <salary>13000</salary> - <supervisor_id>32</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>32</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage>c390a031-9b80-47c3-bc01-a66412f8813f</profileimage> </Employee> </Position> <Position> - <position_title>HQ Human Resources</position_title> - <pay_type>Monthly</pay_type> - <min_scale>5000</min_scale> - <max_scale>6700</max_scale> - <management_role>Middle Management</management_role> + <positionTitle>HQ Human Resources</positionTitle> + <payType>Monthly</payType> + <minScale>5000</minScale> + <maxScale>6700</maxScale> + <managementRole>Middle Management</managementRole> <Employee> - <full_name>Juanita Sharp</full_name> - <first_name>Juanita</first_name> - <last_name>Sharp</last_name> - <position_title>HQ Human Resources</position_title> - <birth_date>16.05.1977</birth_date> - <hire_date>01.01.1994</hire_date> - <end_date></end_date> + <fullName>Juanita Sharp</fullName> + <firstName>Juanita</firstName> + <lastName>Sharp</lastName> + <positionTitle>HQ Human Resources</positionTitle><Department><departmentDescription>HQ Human Resources</departmentDescription></Department> + <birthDate>16.05.1977</birthDate> + <hireDate>01.01.1994</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>7</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>7</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Middle Management</management_role> + <managementRole>Middle Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sandra Brunner</full_name> - <first_name>Sandra</first_name> - <last_name>Brunner</last_name> - <position_title>HQ Human Resources</position_title> - <birth_date>20.05.1917</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Sandra Brunner</fullName> + <firstName>Sandra</firstName> + <lastName>Brunner</lastName> + <positionTitle>HQ Human Resources</positionTitle><Department><departmentDescription>HQ Human Resources</departmentDescription></Department> + <birthDate>20.05.1917</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>5000</salary> - <supervisor_id>7</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>7</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Middle Management</management_role> + <managementRole>Middle Management</managementRole> <profileimage></profileimage> </Employee> </Position> <Position> - <position_title>HQ Finance and Accounting</position_title> - <pay_type>Monthly</pay_type> - <min_scale>5000</min_scale> - <max_scale>6700</max_scale> - <management_role>Middle Management</management_role> + <positionTitle>HQ Finance and Accounting</positionTitle> + <payType>Monthly</payType> + <minScale>5000</minScale> + <maxScale>6700</maxScale> + <managementRole>Middle Management</managementRole> <Employee> - <full_name>Ernest Staton</full_name> - <first_name>Ernest</first_name> - <last_name>Staton</last_name> - <position_title>HQ Finance and Accounting</position_title> - <birth_date>09.08.1916</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ernest Staton</fullName> + <firstName>Ernest</firstName> + <lastName>Staton</lastName> + <positionTitle>HQ Finance and Accounting</positionTitle><Department><departmentDescription>HQ Finance and Accounting</departmentDescription></Department> + <birthDate>09.08.1916</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>10</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>10</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Middle Management</management_role> + <managementRole>Middle Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Rose Sims</full_name> - <first_name>Rose</first_name> - <last_name>Sims</last_name> - <position_title>HQ Finance and Accounting</position_title> - <birth_date>09.08.1916</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Rose Sims</fullName> + <firstName>Rose</firstName> + <lastName>Sims</lastName> + <positionTitle>HQ Finance and Accounting</positionTitle><Department><departmentDescription>HQ Finance and Accounting</departmentDescription></Department> + <birthDate>09.08.1916</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6600</salary> - <supervisor_id>10</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>10</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Middle Management</management_role> + <managementRole>Middle Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lauretta De Carlo</full_name> - <first_name>Lauretta</first_name> - <last_name>De Carlo</last_name> - <position_title>HQ Finance and Accounting</position_title> - <birth_date>09.08.1916</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Lauretta De Carlo</fullName> + <firstName>Lauretta</firstName> + <lastName>De Carlo</lastName> + <positionTitle>HQ Finance and Accounting</positionTitle><Department><departmentDescription>HQ Finance and Accounting</departmentDescription></Department> + <birthDate>09.08.1916</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>10</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>10</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Middle Management</management_role> + <managementRole>Middle Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Williams</full_name> - <first_name>Mary</first_name> - <last_name>Williams</last_name> - <position_title>HQ Finance and Accounting</position_title> - <birth_date>09.08.1916</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mary Williams</fullName> + <firstName>Mary</firstName> + <lastName>Williams</lastName> + <positionTitle>HQ Finance and Accounting</positionTitle><Department><departmentDescription>HQ Finance and Accounting</departmentDescription></Department> + <birthDate>09.08.1916</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7200</salary> - <supervisor_id>10</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>10</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Middle Management</management_role> + <managementRole>Middle Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Terri Burke</full_name> - <first_name>Terri</first_name> - <last_name>Burke</last_name> - <position_title>HQ Finance and Accounting</position_title> - <birth_date>09.08.1916</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Terri Burke</fullName> + <firstName>Terri</firstName> + <lastName>Burke</lastName> + <positionTitle>HQ Finance and Accounting</positionTitle><Department><departmentDescription>HQ Finance and Accounting</departmentDescription></Department> + <birthDate>09.08.1916</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>5000</salary> - <supervisor_id>10</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>10</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Middle Management</management_role> + <managementRole>Middle Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Audrey Osborn</full_name> - <first_name>Audrey</first_name> - <last_name>Osborn</last_name> - <position_title>HQ Finance and Accounting</position_title> - <birth_date>09.08.1916</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Audrey Osborn</fullName> + <firstName>Audrey</firstName> + <lastName>Osborn</lastName> + <positionTitle>HQ Finance and Accounting</positionTitle><Department><departmentDescription>HQ Finance and Accounting</departmentDescription></Department> + <birthDate>09.08.1916</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>5000</salary> - <supervisor_id>10</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>10</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Middle Management</management_role> + <managementRole>Middle Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Brian Binai</full_name> - <first_name>Brian</first_name> - <last_name>Binai</last_name> - <position_title>HQ Finance and Accounting</position_title> - <birth_date>09.08.1916</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Brian Binai</fullName> + <firstName>Brian</firstName> + <lastName>Binai</lastName> + <positionTitle>HQ Finance and Accounting</positionTitle><Department><departmentDescription>HQ Finance and Accounting</departmentDescription></Department> + <birthDate>09.08.1916</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>5000</salary> - <supervisor_id>10</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>10</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Middle Management</management_role> + <managementRole>Middle Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Concepcion Lozada</full_name> - <first_name>Concepcion</first_name> - <last_name>Lozada</last_name> - <position_title>HQ Finance and Accounting</position_title> - <birth_date>09.08.1916</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Concepcion Lozada</fullName> + <firstName>Concepcion</firstName> + <lastName>Lozada</lastName> + <positionTitle>HQ Finance and Accounting</positionTitle><Department><departmentDescription>HQ Finance and Accounting</departmentDescription></Department> + <birthDate>09.08.1916</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>5000</salary> - <supervisor_id>10</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>10</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Middle Management</management_role> + <managementRole>Middle Management</managementRole> <profileimage></profileimage> </Employee> </Position> <Position> - <position_title>Store Manager</position_title> - <pay_type>Monthly</pay_type> - <min_scale>8500</min_scale> - <max_scale>17000</max_scale> - <management_role>Store Management</management_role> + <positionTitle>Store Manager</positionTitle> + <payType>Monthly</payType> + <minScale>8500</minScale> + <maxScale>17000</maxScale> + <managementRole>Store Management</managementRole> <Employee> - <full_name>Kim Brunner</full_name> - <first_name>Kim</first_name> - <last_name>Brunner</last_name> - <position_title>Store Manager</position_title> - <birth_date>10.08.1922</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Kim Brunner</fullName> + <firstName>Kim</firstName> + <lastName>Brunner</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>10.08.1922</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>10000</salary> - <supervisor_id>5</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>5</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Brenda Blumberg</full_name> - <first_name>Brenda</first_name> - <last_name>Blumberg</last_name> - <position_title>Store Manager</position_title> - <birth_date>23.06.1979</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Brenda Blumberg</fullName> + <firstName>Brenda</firstName> + <lastName>Blumberg</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>23.06.1979</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>17000</salary> - <supervisor_id>5</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>5</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage>bb90a031-9b80-47c3-bc01-a66412f8813f</profileimage> </Employee> <Employee> - <full_name>Jonathan Murraiin</full_name> - <first_name>Jonathan</first_name> - <last_name>Murraiin</last_name> - <position_title>Store Manager</position_title> - <birth_date>20.06.1967</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jonathan Murraiin</fullName> + <firstName>Jonathan</firstName> + <lastName>Murraiin</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>20.06.1967</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>15000</salary> - <supervisor_id>5</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>5</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jewel Creek</full_name> - <first_name>Jewel</first_name> - <last_name>Creek</last_name> - <position_title>Store Manager</position_title> - <birth_date>18.10.1971</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jewel Creek</fullName> + <firstName>Jewel</firstName> + <lastName>Creek</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>18.10.1971</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>5</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>5</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Peggy Medina</full_name> - <first_name>Peggy</first_name> - <last_name>Medina</last_name> - <position_title>Store Manager</position_title> - <birth_date>12.10.1975</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Peggy Medina</fullName> + <firstName>Peggy</firstName> + <lastName>Medina</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>12.10.1975</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>15000</salary> - <supervisor_id>5</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>5</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Bryan Rutledge</full_name> - <first_name>Bryan</first_name> - <last_name>Rutledges</last_name> - <position_title>Store Manager</position_title> - <birth_date>09.07.1912</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Bryan Rutledge</fullName> + <firstName>Bryan</firstName> + <lastName>Rutledges</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>09.07.1912</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>17000</salary> - <supervisor_id>5</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>5</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage>c49ef549-6cb6-4b67-9d66-d89ad4df7e42</profileimage> </Employee> <Employee> - <full_name>Walter Cavestany</full_name> - <first_name>Walter</first_name> - <last_name>Cavestany</last_name> - <position_title>Store Manager</position_title> - <birth_date>05.11.1941</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Walter Cavestany</fullName> + <firstName>Walter</firstName> + <lastName>Cavestany</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>05.11.1941</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>12000</salary> - <supervisor_id>5</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>5</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Peggy Planck</full_name> - <first_name>Peggy</first_name> - <last_name>Planck</last_name> - <position_title>Store Manager</position_title> - <birth_date>02.06.1919</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Peggy Planck</fullName> + <firstName>Peggy</firstName> + <lastName>Planck</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>02.06.1919</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>17000</salary> - <supervisor_id>5</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>5</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage>dec4340a-e3f8-4414-90c9-3474ae150ed1</profileimage> </Employee> <Employee> - <full_name>Brenda Marshall</full_name> - <first_name>DBrenda</first_name> - <last_name>Marshall</last_name> - <position_title>Store Manager</position_title> - <birth_date>20.03.1928</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Brenda Marshall</fullName> + <firstName>DBrenda</firstName> + <lastName>Marshall</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>20.03.1928</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>10000</salary> - <supervisor_id>5</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>5</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Daniel Wolter</full_name> - <first_name>Daniel</first_name> - <last_name>Wolter</last_name> - <position_title>Store Manager</position_title> - <birth_date>21.09.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Daniel Wolter</fullName> + <firstName>Daniel</firstName> + <lastName>Wolter</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>21.09.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>17000</salary> - <supervisor_id>4</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>4</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dianne Collins</full_name> - <first_name>Dianne</first_name> - <last_name>Collins</last_name> - <position_title>Store Manager</position_title> - <birth_date>20.07.1953</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Dianne Collins</fullName> + <firstName>Dianne</firstName> + <lastName>Collins</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>20.07.1953</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>10000</salary> - <supervisor_id>4</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>4</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Shauna Wyro</full_name> - <first_name>Shauna</first_name> - <last_name>Wyro</last_name> - <position_title>Store Manager</position_title> - <birth_date>24.10.1916</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Shauna Wyro</fullName> + <firstName>Shauna</firstName> + <lastName>Wyro</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.10.1916</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>15000</salary> - <supervisor_id>20</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>20</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jacqueline Wyllie</full_name> - <first_name>Jacqueline</first_name> - <last_name>Wyllie</last_name> - <position_title>Store Manager</position_title> - <birth_date>04.12.1921</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Jacqueline Wyllie</fullName> + <firstName>Jacqueline</firstName> + <lastName>Wyllie</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>04.12.1921</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>17000</salary> - <supervisor_id>20</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>20</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lin Conley</full_name> - <first_name>Lin</first_name> - <last_name>Conley</last_name> - <position_title>Store Manager</position_title> - <birth_date>26.09.1952</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Lin Conley</fullName> + <firstName>Lin</firstName> + <lastName>Conley</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>26.09.1952</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>12000</salary> - <supervisor_id>21</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>21</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jose Bernard</full_name> - <first_name>Jose</first_name> - <last_name>Bernard</last_name> - <position_title>Store Manager</position_title> - <birth_date>25.08.1954</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Jose Bernard</fullName> + <firstName>Jose</firstName> + <lastName>Bernard</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>25.08.1954</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>15000</salary> - <supervisor_id>21</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>21</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Charles Macaluso</full_name> - <first_name>Charles</first_name> - <last_name>Macaluso</last_name> - <position_title>Store Manager</position_title> - <birth_date>17.03.1934</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Charles Macaluso</fullName> + <firstName>Charles</firstName> + <lastName>Macaluso</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>17.03.1934</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>16000</salary> - <supervisor_id>21</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>21</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lois Wood</full_name> - <first_name>Lois</first_name> - <last_name>Wood</last_name> - <position_title>Store Manager</position_title> - <birth_date>12.03.1970</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Lois Wood</fullName> + <firstName>Lois</firstName> + <lastName>Wood</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>12.03.1970</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>14000</salary> - <supervisor_id>21</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>21</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kevin Armstrong</full_name> - <first_name>Kevin</first_name> - <last_name>Armstrong</last_name> - <position_title>Store Manager</position_title> - <birth_date>04.10.1937</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Kevin Armstrong</fullName> + <firstName>Kevin</firstName> + <lastName>Armstrong</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>04.10.1937</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>22</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>22</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Cody Goldey</full_name> - <first_name>Cody</first_name> - <last_name>Goldey</last_name> - <position_title>Store Manager</position_title> - <birth_date>08.07.1917</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Cody Goldey</fullName> + <firstName>Cody</firstName> + <lastName>Goldey</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>08.07.1917</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>15000</salary> - <supervisor_id>22</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>22</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Paula Nickell</full_name> - <first_name>Paula</first_name> - <last_name>Nickell</last_name> - <position_title>Store Manager</position_title> - <birth_date>02.07.1978</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Paula Nickell</fullName> + <firstName>Paula</firstName> + <lastName>Nickell</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>02.07.1978</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>14000</salary> - <supervisor_id>22</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>22</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Eric Long</full_name> - <first_name>Eric5</first_name> - <last_name>Long</last_name> - <position_title>Store Manager</position_title> - <birth_date>08.01.1930</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Eric Long</fullName> + <firstName>Eric5</firstName> + <lastName>Long</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>08.01.1930</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>17000</salary> - <supervisor_id>22</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>22</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Solimena</full_name> - <first_name>Mary</first_name> - <last_name>Solimena</last_name> - <position_title>Store Manager</position_title> - <birth_date>23.07.1971</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Mary Solimena</fullName> + <firstName>Mary</firstName> + <lastName>Solimena</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>23.07.1971</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>17000</salary> - <supervisor_id>22</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>22</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Nathan Muenich</full_name> - <first_name>Nathan</first_name> - <last_name>Muenich</last_name> - <position_title>Store Manager</position_title> - <birth_date>21.10.1919</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Nathan Muenich</fullName> + <firstName>Nathan</firstName> + <lastName>Muenich</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>21.10.1919</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>22</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>22</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ed Young</full_name> - <first_name>Ed</first_name> - <last_name>Young</last_name> - <position_title>Store Manager</position_title> - <birth_date>17.04.1920</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Ed Young</fullName> + <firstName>Ed</firstName> + <lastName>Young</lastName> + <positionTitle>Store Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>17.04.1920</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>11000</salary> - <supervisor_id>22</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>22</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Atallah Todd</full_name> - <first_name>Atallah</first_name> - <last_name>Todd</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1970</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Atallah Todd</fullName> + <firstName>Atallah</firstName> + <lastName>Todd</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1970</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>1019</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1019</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage>18b56d9d-0052-4b9f-ac9f-385846c9c18d</profileimage> </Employee> </Position> <Position> - <position_title>Store Information Systems</position_title> - <pay_type>Monthly</pay_type> - <min_scale>6700</min_scale> - <max_scale>10000</max_scale> - <management_role>Store Full Time Staff</management_role> + <positionTitle>Store Information Systems</positionTitle> + <payType>Monthly</payType> + <minScale>6700</minScale> + <maxScale>10000</maxScale> + <managementRole>Store Full Time Staff</managementRole> <Employee> - <full_name>Elizabeth Mosse</full_name> - <first_name>Elizabeth</first_name> - <last_name>Moss</last_name> - <position_title>Store Information Systems</position_title> - <birth_date>01.06.1942</birth_date> - <hire_date>06.02.1997</hire_date> - <end_date></end_date> + <fullName>Elizabeth Mosse</fullName> + <firstName>Elizabeth</firstName> + <lastName>Moss</lastName> + <positionTitle>Store Information Systems</positionTitle><Department><departmentDescription>Store Information Systems</departmentDescription></Department> + <birthDate>01.06.1942</birthDate> + <hireDate>06.02.1997</hireDate> + <endDate></endDate> <salary>9123.45</salary> - <supervisor_id>53</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>53</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Stewart</full_name> - <first_name>John</first_name> - <last_name>Stewart</last_name> - <position_title>Store Information Systems</position_title> - <birth_date>01.06.1942</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>John Stewart</fullName> + <firstName>John</firstName> + <lastName>Stewart</lastName> + <positionTitle>Store Information Systems</positionTitle><Department><departmentDescription>Store Information Systems</departmentDescription></Department> + <birthDate>01.06.1942</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>9000</salary> - <supervisor_id>100</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>100</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Bryan West</full_name> - <first_name>Bryan</first_name> - <last_name>West</last_name> - <position_title>Store Information Systems</position_title> - <birth_date>01.06.1942</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Bryan West</fullName> + <firstName>Bryan</firstName> + <lastName>West</lastName> + <positionTitle>Store Information Systems</positionTitle><Department><departmentDescription>Store Information Systems</departmentDescription></Department> + <birthDate>01.06.1942</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>9000</salary> - <supervisor_id>225</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>225</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Terry Zakerski</full_name> - <first_name>Terry</first_name> - <last_name>Zakerski</last_name> - <position_title>Store Information Systems</position_title> - <birth_date>01.06.1942</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Terry Zakerski</fullName> + <firstName>Terry</firstName> + <lastName>Zakerski</lastName> + <positionTitle>Store Information Systems</positionTitle><Department><departmentDescription>Store Information Systems</departmentDescription></Department> + <birthDate>01.06.1942</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>9000</salary> - <supervisor_id>161</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>161</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>James Clark</full_name> - <first_name>James</first_name> - <last_name>Clark</last_name> - <position_title>Store Information Systems</position_title> - <birth_date>01.06.1942</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>James Clark</fullName> + <firstName>James</firstName> + <lastName>Clark</lastName> + <positionTitle>Store Information Systems</positionTitle><Department><departmentDescription>Store Information Systems</departmentDescription></Department> + <birthDate>01.06.1942</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>9000</salary> - <supervisor_id>423</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>423</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Hazel Walker</full_name> - <first_name>Hazel</first_name> - <last_name>Walker</last_name> - <position_title>Store Information Systems</position_title> - <birth_date>01.06.1942</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Hazel Walker</fullName> + <firstName>Hazel</firstName> + <lastName>Walker</lastName> + <positionTitle>Store Information Systems</positionTitle><Department><departmentDescription>Store Information Systems</departmentDescription></Department> + <birthDate>01.06.1942</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>9000</salary> - <supervisor_id>639</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>639</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Irma Sherwood</full_name> - <first_name>Irma</first_name> - <last_name>Sherwood</last_name> - <position_title>Store Information Systems</position_title> - <birth_date>01.06.1942</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Irma Sherwood</fullName> + <firstName>Irma</firstName> + <lastName>Sherwood</lastName> + <positionTitle>Store Information Systems</positionTitle><Department><departmentDescription>Store Information Systems</departmentDescription></Department> + <birthDate>01.06.1942</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>9000</salary> - <supervisor_id>484</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>484</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Robin Mc Guigan</full_name> - <first_name>Robin</first_name> - <last_name>Mc Guigan</last_name> - <position_title>Store Information Systems</position_title> - <birth_date>01.06.1942</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Robin Mc Guigan</fullName> + <firstName>Robin</firstName> + <lastName>Mc Guigan</lastName> + <positionTitle>Store Information Systems</positionTitle><Department><departmentDescription>Store Information Systems</departmentDescription></Department> + <birthDate>01.06.1942</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>9000</salary> - <supervisor_id>545</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>545</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Nathan Vij</full_name> - <first_name>Nathan</first_name> - <last_name>Vij</last_name> - <position_title>Store Information Systems</position_title> - <birth_date>01.06.1942</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Nathan Vij</fullName> + <firstName>Nathan</firstName> + <lastName>Vij</lastName> + <positionTitle>Store Information Systems</positionTitle><Department><departmentDescription>Store Information Systems</departmentDescription></Department> + <birthDate>01.06.1942</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>9000</salary> - <supervisor_id>286</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>286</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ann Weyerhaeuser</full_name> - <first_name>Ann</first_name> - <last_name>Weyerhaeuser</last_name> - <position_title>Store Information Systems</position_title> - <birth_date>01.06.1942</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Ann Weyerhaeuser</fullName> + <firstName>Ann</firstName> + <lastName>Weyerhaeuser</lastName> + <positionTitle>Store Information Systems</positionTitle><Department><departmentDescription>Store Information Systems</departmentDescription></Department> + <birthDate>01.06.1942</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>9000</salary> - <supervisor_id>362</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>362</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Blanche Griffin</full_name> - <first_name>Blanche</first_name> - <last_name>Griffin</last_name> - <position_title>Store Information Systems</position_title> - <birth_date>01.06.1942</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Blanche Griffin</fullName> + <firstName>Blanche</firstName> + <lastName>Griffin</lastName> + <positionTitle>Store Information Systems</positionTitle><Department><departmentDescription>Store Information Systems</departmentDescription></Department> + <birthDate>01.06.1942</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>9000</salary> - <supervisor_id>1019</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>1019</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Samuel Agcaoili</full_name> - <first_name>Samuel</first_name> - <last_name>Agcaoili</last_name> - <position_title>Store Information Systems</position_title> - <birth_date>01.06.1942</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Samuel Agcaoili</fullName> + <firstName>Samuel</firstName> + <lastName>Agcaoili</lastName> + <positionTitle>Store Information Systems</positionTitle><Department><departmentDescription>Store Information Systems</departmentDescription></Department> + <birthDate>01.06.1942</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>9000</salary> - <supervisor_id>748</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>748</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ian Bloomberg</full_name> - <first_name>Ian</first_name> - <last_name>Bloomberg</last_name> - <position_title>Store Information Systems</position_title> - <birth_date>01.06.1942</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ian Bloomberg</fullName> + <firstName>Ian</firstName> + <lastName>Bloomberg</lastName> + <positionTitle>Store Information Systems</positionTitle><Department><departmentDescription>Store Information Systems</departmentDescription></Department> + <birthDate>01.06.1942</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>9000</salary> - <supervisor_id>821</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>821</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Josephine Joanne A Potter</full_name> - <first_name>Josephine Joanne A</first_name> - <last_name>Potter</last_name> - <position_title>Store Information Systems</position_title> - <birth_date>01.06.1942</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Josephine Joanne A Potter</fullName> + <firstName>Josephine Joanne A</firstName> + <lastName>Potter</lastName> + <positionTitle>Store Information Systems</positionTitle><Department><departmentDescription>Store Information Systems</departmentDescription></Department> + <birthDate>01.06.1942</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>9000</salary> - <supervisor_id>885</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>885</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Amir Oss</full_name> - <first_name>Amir</first_name> - <last_name>Oss</last_name> - <position_title>Store Information Systems</position_title> - <birth_date>01.06.1942</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Amir Oss</fullName> + <firstName>Amir</firstName> + <lastName>Oss</lastName> + <positionTitle>Store Information Systems</positionTitle><Department><departmentDescription>Store Information Systems</departmentDescription></Department> + <birthDate>01.06.1942</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>9000</salary> - <supervisor_id>946</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>946</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Donald Curl</full_name> - <first_name>Donald</first_name> - <last_name>Curl</last_name> - <position_title>Store Information Systems</position_title> - <birth_date>01.06.1942</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Donald Curl</fullName> + <firstName>Donald</firstName> + <lastName>Curl</lastName> + <positionTitle>Store Information Systems</positionTitle><Department><departmentDescription>Store Information Systems</departmentDescription></Department> + <birthDate>01.06.1942</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>9000</salary> - <supervisor_id>1066</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1066</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> </Position> <Position> - <position_title>Store Permanent Checker</position_title> - <pay_type>Monthly</pay_type> - <min_scale>5000</min_scale> - <max_scale>9000</max_scale> - <management_role>Store Full Time Staff</management_role> + <positionTitle>Store Permanent Checker</positionTitle> + <payType>Monthly</payType> + <minScale>5000</minScale> + <maxScale>9000</maxScale> + <managementRole>Store Full Time Staff</managementRole> <Employee> - <full_name>Lori Anderson</full_name> - <first_name>Lori</first_name> - <last_name>Anderson</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Lori Anderson</fullName> + <firstName>Lori</firstName> + <lastName>Anderson</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7200</salary> - <supervisor_id>54</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>54</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Michael Everson</full_name> - <first_name>Michael</first_name> - <last_name>Everson</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Michael Everson</fullName> + <firstName>Michael</firstName> + <lastName>Everson</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>54</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>54</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Borden</full_name> - <first_name>Mary</first_name> - <last_name>Borden</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mary Borden</fullName> + <firstName>Mary</firstName> + <lastName>Borden</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6900</salary> - <supervisor_id>54</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>54</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sue Willson</full_name> - <first_name>Sue</first_name> - <last_name>Willson</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Sue Willson</fullName> + <firstName>Sue</firstName> + <lastName>Willson</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7100</salary> - <supervisor_id>54</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>54</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Clayton Harris</full_name> - <first_name>Clayton</first_name> - <last_name>Harrisss</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Clayton Harris</fullName> + <firstName>Clayton</firstName> + <lastName>Harrisss</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>55</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>55</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Boyd Pusedu</full_name> - <first_name>Boyd</first_name> - <last_name>Pusedu</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Boyd Pusedu</fullName> + <firstName>Boyd</firstName> + <lastName>Pusedu</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>5000</salary> - <supervisor_id>55</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>55</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Cian Stedman</full_name> - <first_name>Cian</first_name> - <last_name>Stedman</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Cian Stedman</fullName> + <firstName>Cian</firstName> + <lastName>Stedman</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>9000</salary> - <supervisor_id>56</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>56</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Michele Zocchi</full_name> - <first_name>Michele</first_name> - <last_name>Zocchi</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Michele Zocchi</fullName> + <firstName>Michele</firstName> + <lastName>Zocchi</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>56</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>56</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jean Walsh</full_name> - <first_name>Jean</first_name> - <last_name>Walsh</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jean Walsh</fullName> + <firstName>Jean</firstName> + <lastName>Walsh</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7500</salary> - <supervisor_id>56</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>56</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Barney Velasquez</full_name> - <first_name>Barney</first_name> - <last_name>Velasquez</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Barney Velasquez</fullName> + <firstName>Barney</firstName> + <lastName>Velasquez</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>101</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>101</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kenneth Dubois</full_name> - <first_name>Kenneth</first_name> - <last_name>Dubois</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Kenneth Dubois</fullName> + <firstName>Kenneth</firstName> + <lastName>Dubois</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>101</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>101</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kate Maestas</full_name> - <first_name>Kate</first_name> - <last_name>Maestas</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Kate Maestas</fullName> + <firstName>Kate</firstName> + <lastName>Maestas</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>101</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>101</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Josie Underwood</full_name> - <first_name>Josie</first_name> - <last_name>Underwood</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Josie Underwood</fullName> + <firstName>Josie</firstName> + <lastName>Underwood</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>101</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>101</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ramon Strain</full_name> - <first_name>Ramon</first_name> - <last_name>Strain</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ramon Strain</fullName> + <firstName>Ramon</firstName> + <lastName>Strain</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>102</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>102</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Pat Azari</full_name> - <first_name>Pat</first_name> - <last_name>Azari</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Pat Azari</fullName> + <firstName>Pat</firstName> + <lastName>Azari</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>102</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>102</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Nancy Miller</full_name> - <first_name>Nancy</first_name> - <last_name>Miller</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Nancy Miller</fullName> + <firstName>Nancy</firstName> + <lastName>Miller</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>222</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>222</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Vicki Welsh</full_name> - <first_name>Vicki</first_name> - <last_name>Welsh</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Vicki Welsh</fullName> + <firstName>Vicki</firstName> + <lastName>Welsh</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>226</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>226</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Harvey McCollum</full_name> - <first_name>Harvey</first_name> - <last_name>McCollum</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Harvey McCollum</fullName> + <firstName>Harvey</firstName> + <lastName>McCollum</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>226</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>226</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Cramer</full_name> - <first_name>Mary</first_name> - <last_name>Cramer</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mary Cramer</fullName> + <firstName>Mary</firstName> + <lastName>Cramer</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>226</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>226</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Linda Fike</full_name> - <first_name>Linda</first_name> - <last_name>Fike</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Linda Fike</fullName> + <firstName>Linda</firstName> + <lastName>Fike</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>226</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>226</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sam Adair</full_name> - <first_name>Sam</first_name> - <last_name>Adair</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Sam Adair</fullName> + <firstName>Sam</firstName> + <lastName>Adair</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>227</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>227</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jerry Kolosso</full_name> - <first_name>Jerry</first_name> - <last_name>Kolosso</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jerry Kolosso</fullName> + <firstName>Jerry</firstName> + <lastName>Kolosso</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>227</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>227</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Todd Carpenter</full_name> - <first_name>Todd</first_name> - <last_name>Carpenter</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Todd Carpenter</fullName> + <firstName>Todd</firstName> + <lastName>Carpenter</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>227</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>227</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lisa Watkins</full_name> - <first_name>Lisa</first_name> - <last_name>Watkins</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Lisa Watkins</fullName> + <firstName>Lisa</firstName> + <lastName>Watkins</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>227</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>227</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kevin Barrera</full_name> - <first_name>Kevin</first_name> - <last_name>Barrera</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Kevin Barrera</fullName> + <firstName>Kevin</firstName> + <lastName>Barrera</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>228</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>228</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Maria Price</full_name> - <first_name>Maria</first_name> - <last_name>Price</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Maria Price</fullName> + <firstName>Maria</firstName> + <lastName>Price</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>228</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>228</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Flossie Rosemont</full_name> - <first_name>Flossie</first_name> - <last_name>Rosemont</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Flossie Rosemont</fullName> + <firstName>Flossie</firstName> + <lastName>Rosemont</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>228</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>228</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Betty McMenama</full_name> - <first_name>Betty</first_name> - <last_name>McMenama</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Betty McMenama</fullName> + <firstName>Betty</firstName> + <lastName>McMenama</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>228</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>228</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Bob Dabit</full_name> - <first_name>Bob</first_name> - <last_name>Dabit</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Bob Dabit</fullName> + <firstName>Bob</firstName> + <lastName>Dabit</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>102</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>102</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Marty Carmona</full_name> - <first_name>Marty</first_name> - <last_name>Carmona</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Marty Carmona</fullName> + <firstName>Marty</firstName> + <lastName>Carmona</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>102</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>102</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gina Saxton</full_name> - <first_name>Gina</first_name> - <last_name>Saxton</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Gina Saxton</fullName> + <firstName>Gina</firstName> + <lastName>Saxton</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>103</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>103</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Juan McLaughlin</full_name> - <first_name>Juan</first_name> - <last_name>McLaughlin</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Juan McLaughlin</fullName> + <firstName>Juan</firstName> + <lastName>McLaughlin</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>103</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>103</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Carol Eyster</full_name> - <first_name>Carol</first_name> - <last_name>Eyster</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Carol Eyster</fullName> + <firstName>Carol</firstName> + <lastName>Eyster</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>103</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>103</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Nancy Henry</full_name> - <first_name>Nancy</first_name> - <last_name>Henry</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Nancy Henry</fullName> + <firstName>Nancy</firstName> + <lastName>Henry</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>103</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>103</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>David Carlson</full_name> - <first_name>David</first_name> - <last_name>Carlson</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>David Carlson</fullName> + <firstName>David</firstName> + <lastName>Carlson</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>162</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>162</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Linda Symons</full_name> - <first_name>Linda</first_name> - <last_name>Symons</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Linda Symons</fullName> + <firstName>Linda</firstName> + <lastName>Symons</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>162</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>162</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Louis Reynolds</full_name> - <first_name>Louis</first_name> - <last_name>Reynolds</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Louis Reynolds</fullName> + <firstName>Louis</firstName> + <lastName>Reynolds</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>162</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>162</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Maureen Ibsen</full_name> - <first_name>Maureen</first_name> - <last_name>Ibsen</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Maureen Ibsen</fullName> + <firstName>Maureen</firstName> + <lastName>Ibsen</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>162</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>162</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Virginia Ciochon</full_name> - <first_name>Virginia</first_name> - <last_name>Ciochon</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Virginia Ciochon</fullName> + <firstName>Virginia</firstName> + <lastName>Ciochon</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>163</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>163</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Steve Berger</full_name> - <first_name>Steve</first_name> - <last_name>Berger</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Steve Berger</fullName> + <firstName>Steve</firstName> + <lastName>Berger</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>163</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>163</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>James Bayol</full_name> - <first_name>James</first_name> - <last_name>Bayol</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>James Bayol</fullName> + <firstName>James</firstName> + <lastName>Bayol</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>163</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>163</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Meredith Thumann</full_name> - <first_name>Meredith</first_name> - <last_name>Thumann</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Meredith Thumann</fullName> + <firstName>Meredith</firstName> + <lastName>Thumann</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>163</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>163</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Julie Jones</full_name> - <first_name>Julie</first_name> - <last_name>Jones</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Julie Jones</fullName> + <firstName>Julie</firstName> + <lastName>Jones</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>164</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>164</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Janet Bury</full_name> - <first_name>Janet</first_name> - <last_name>Bury</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Janet Bury</fullName> + <firstName>Janet</firstName> + <lastName>Bury</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>164</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>164</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Onita Bevan</full_name> - <first_name>Onita</first_name> - <last_name>Bevan</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Onita Bevan</fullName> + <firstName>Onita</firstName> + <lastName>Bevan</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>164</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>164</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Monarco</full_name> - <first_name>Mary</first_name> - <last_name>Monarco</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mary Monarco</fullName> + <firstName>Mary</firstName> + <lastName>Monarco</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>164</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>164</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Helen Dennis</full_name> - <first_name>Helen</first_name> - <last_name>Dennis</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Helen Dennis</fullName> + <firstName>Helen</firstName> + <lastName>Dennis</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>424</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>424</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Eric Brumfield</full_name> - <first_name>Eric</first_name> - <last_name>Brumfield</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Eric Brumfield</fullName> + <firstName>Eric</firstName> + <lastName>Brumfield</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>424</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>424</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Madalena Sanchez</full_name> - <first_name>Madalena</first_name> - <last_name>Sanchez</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Madalena Sanchez</fullName> + <firstName>Madalena</firstName> + <lastName>Sanchez</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>424</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>424</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gary Suess</full_name> - <first_name>Gary</first_name> - <last_name>Suess</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Gary Suess</fullName> + <firstName>Gary</firstName> + <lastName>Suess</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>424</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>424</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Glenn Trach</full_name> - <first_name>Glenn</first_name> - <last_name>Trach</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Glenn Trach</fullName> + <firstName>Glenn</firstName> + <lastName>Trach</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>425</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>425</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Cynthia White</full_name> - <first_name>Cynthia</first_name> - <last_name>White</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Cynthia White</fullName> + <firstName>Cynthia</firstName> + <lastName>White</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>425</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>425</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Walter Brian</full_name> - <first_name>Walter</first_name> - <last_name>Brian</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Walter Brian</fullName> + <firstName>Walter</firstName> + <lastName>Brian</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>425</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>425</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Christie Trujillo</full_name> - <first_name>Christie</first_name> - <last_name>Trujillo</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Christie Trujillo</fullName> + <firstName>Christie</firstName> + <lastName>Trujillo</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>425</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>425</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lili Alameda</full_name> - <first_name>Lili</first_name> - <last_name>Alameda</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Lili Alameda</fullName> + <firstName>Lili</firstName> + <lastName>Alameda</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>426</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>426</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dorothy Fox</full_name> - <first_name>Dorothy</first_name> - <last_name>Fox</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Dorothy Fox</fullName> + <firstName>Dorothy</firstName> + <lastName>Fox</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>426</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>426</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Aldeen Gallagher</full_name> - <first_name>Aldeen</first_name> - <last_name>Gallagher</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Aldeen Gallagher</fullName> + <firstName>Aldeen</firstName> + <lastName>Gallagher</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>426</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>426</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dorothy Myer</full_name> - <first_name>Dorothy</first_name> - <last_name>Myer</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Dorothy Myer</fullName> + <firstName>Dorothy</firstName> + <lastName>Myer</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>426</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>426</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Brooks</full_name> - <first_name>John</first_name> - <last_name>Brooks</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>John Brooks</fullName> + <firstName>John</firstName> + <lastName>Brooks</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>640</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Todd Logan</full_name> - <first_name>Todd</first_name> - <last_name>Logan</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Todd Logan</fullName> + <firstName>Todd</firstName> + <lastName>Logan</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>640</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Joshua Several</full_name> - <first_name>Joshua</first_name> - <last_name>Several</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Joshua Several</fullName> + <firstName>Joshua</firstName> + <lastName>Several</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>640</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>James Thomas</full_name> - <first_name>James</first_name> - <last_name>Thomas</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>James Thomas</fullName> + <firstName>James</firstName> + <lastName>Thomas</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>640</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Robert Vessa</full_name> - <first_name>Robert</first_name> - <last_name>Vessa</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Robert Vessa</fullName> + <firstName>Robert</firstName> + <lastName>Vessa</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8000</salary> - <supervisor_id>640</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>James Tran</full_name> - <first_name>James</first_name> - <last_name>Tran</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>James Tran</fullName> + <firstName>James</firstName> + <lastName>Tran</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>641</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Shelley Crow</full_name> - <first_name>Shelley</first_name> - <last_name>Crow</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Shelley Crow</fullName> + <firstName>Shelley</firstName> + <lastName>Crow</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>641</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Anne Sims</full_name> - <first_name>Anne</first_name> - <last_name>Sims</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Anne Sims</fullName> + <firstName>Anne</firstName> + <lastName>Sims</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>641</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Clarence Tatman</full_name> - <first_name>Clarence</first_name> - <last_name>Tatman</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Clarence Tatman</fullName> + <firstName>Clarence</firstName> + <lastName>Tatman</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>641</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jan Nelsen</full_name> - <first_name>Jan</first_name> - <last_name>Nelsen</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jan Nelsen</fullName> + <firstName>Jan</firstName> + <lastName>Nelsen</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7900</salary> - <supervisor_id>641</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jeanette Cole</full_name> - <first_name>Jeanette</first_name> - <last_name>Cole</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jeanette Cole</fullName> + <firstName>Jeanette</firstName> + <lastName>Cole</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>642</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Phyllis Huntsman</full_name> - <first_name>Phyllis</first_name> - <last_name>Huntsman</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Phyllis Huntsman</fullName> + <firstName>Phyllis</firstName> + <lastName>Huntsman</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>642</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Hannah Arakawa</full_name> - <first_name>Hannah</first_name> - <last_name>Arakawa</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Hannah Arakawa</fullName> + <firstName>Hannah</firstName> + <lastName>Arakawa</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>642</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Wathalee Steuber</full_name> - <first_name>Wathalee</first_name> - <last_name>Steuber</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Wathalee Steuber</fullName> + <firstName>Wathalee</firstName> + <lastName>Steuber</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>642</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Pamela Cox</full_name> - <first_name>Pamela</first_name> - <last_name>Cox</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Pamela Cox</fullName> + <firstName>Pamela</firstName> + <lastName>Cox</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8100</salary> - <supervisor_id>642</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Benjamin Becker</full_name> - <first_name>Benjamin</first_name> - <last_name>Becker</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Benjamin Becker</fullName> + <firstName>Benjamin</firstName> + <lastName>Becker</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>485</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>485</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Chad Tedford</full_name> - <first_name>Chad</first_name> - <last_name>Tedford</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Chad Tedford</fullName> + <firstName>Chad</firstName> + <lastName>Tedford</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>485</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>485</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Luke Roy</full_name> - <first_name>Luke</first_name> - <last_name>Roy</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Luke Roy</fullName> + <firstName>Luke</firstName> + <lastName>Roy</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>485</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>485</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jean Holloway</full_name> - <first_name>Jean</first_name> - <last_name>Holloway</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jean Holloway</fullName> + <firstName>Jean</firstName> + <lastName>Holloway</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>485</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>485</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Olga Trau</full_name> - <first_name>Olga</first_name> - <last_name>Trau</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Olga Trau</fullName> + <firstName>Olga</firstName> + <lastName>Trau</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>486</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>486</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Steve Carnes</full_name> - <first_name>Steve</first_name> - <last_name>Carnes</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Steve Carnes</fullName> + <firstName>Steve</firstName> + <lastName>Carnes</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>486</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>486</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Betty Potts</full_name> - <first_name>Betty</first_name> - <last_name>Potts</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Betty Potts</fullName> + <firstName>Betty</firstName> + <lastName>Potts</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>486</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>486</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Edward Kozlowski</full_name> - <first_name>Edward</first_name> - <last_name>Kozlowski</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Edward Kozlowski</fullName> + <firstName>Edward</firstName> + <lastName>Kozlowski</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>486</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>486</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sharon Looney</full_name> - <first_name>Sharon</first_name> - <last_name>Looney</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Sharon Looney</fullName> + <firstName>Sharon</firstName> + <lastName>Looney</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>487</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>487</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Patrick Magenheimer</full_name> - <first_name>Patrick</first_name> - <last_name>Magenheimer</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Patrick Magenheimer</fullName> + <firstName>Patrick</firstName> + <lastName>Magenheimer</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>487</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>487</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sue Hofsetz</full_name> - <first_name>Sue</first_name> - <last_name>Hofsetz</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Sue Hofsetz</fullName> + <firstName>Sue</firstName> + <lastName>Hofsetz</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>487</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>487</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Janet Gilliat</full_name> - <first_name>Janet</first_name> - <last_name>Gilliat</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Janet Gilliat</fullName> + <firstName>Janet</firstName> + <lastName>Gilliat</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>487</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>487</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dorothy Wollesen</full_name> - <first_name>Dorothy</first_name> - <last_name>Wollesen</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Dorothy Wollesen</fullName> + <firstName>Dorothy</firstName> + <lastName>Wollesen</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>546</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Marjorie Lee</full_name> - <first_name>Marjorie</first_name> - <last_name>Lee</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Marjorie Lee</fullName> + <firstName>Marjorie</firstName> + <lastName>Lee</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>546</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Gimmi</full_name> - <first_name>Mary</first_name> - <last_name>Gimmi</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mary Gimmi</fullName> + <firstName>Mary</firstName> + <lastName>Gimmi</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>546</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Milton Pugh</full_name> - <first_name>Milton</first_name> - <last_name>Pugh</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Milton Pugh</fullName> + <firstName>Milton</firstName> + <lastName>Pugh</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>546</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Bennetts</full_name> - <first_name>John</first_name> - <last_name>Bennetts</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>John Bennetts</fullName> + <firstName>John</firstName> + <lastName>Bennetts</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8000</salary> - <supervisor_id>546</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Caroline Woodard</full_name> - <first_name>Caroline</first_name> - <last_name>Woodard</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Caroline Woodard</fullName> + <firstName>Caroline</firstName> + <lastName>Woodard</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>547</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Tomas Manzanares</full_name> - <first_name>Tomas</first_name> - <last_name>Manzanares</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Tomas Manzanares</fullName> + <firstName>Tomas</firstName> + <lastName>Manzanares</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>547</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kayla Stotler</full_name> - <first_name>Kayla</first_name> - <last_name>Stotler</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Kayla Stotler</fullName> + <firstName>Kayla</firstName> + <lastName>Stotler</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>547</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Elizabeth Peoples</full_name> - <first_name>Elizabeth</first_name> - <last_name>Peoples</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Elizabeth Peoples</fullName> + <firstName>Elizabeth</firstName> + <lastName>Peoples</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>547</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mike Choi</full_name> - <first_name>Mike</first_name> - <last_name>Choi</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mike Choi</fullName> + <firstName>Mike</firstName> + <lastName>Choi</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7900</salary> - <supervisor_id>547</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Lou Quintana</full_name> - <first_name>Mary Lou</first_name> - <last_name>Quintana</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mary Lou Quintana</fullName> + <firstName>Mary Lou</firstName> + <lastName>Quintana</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>548</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Christopher Bright</full_name> - <first_name>Christopher</first_name> - <last_name>Bright</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Christopher Bright</fullName> + <firstName>Christopher</firstName> + <lastName>Bright</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>548</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Scott Rodgers</full_name> - <first_name>Scott</first_name> - <last_name>Rodgers</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Scott Rodgers</fullName> + <firstName>Scott</firstName> + <lastName>Rodgers</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>548</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Janet Gates</full_name> - <first_name>Janet</first_name> - <last_name>Gates</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Janet Gates</fullName> + <firstName>Janet</firstName> + <lastName>Gates</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>548</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Darren Watkins</full_name> - <first_name>Darren</first_name> - <last_name>Watkins</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Darren Watkins</fullName> + <firstName>Darren</firstName> + <lastName>Watkins</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8100</salary> - <supervisor_id>548</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Pat Pinkston</full_name> - <first_name>Pat</first_name> - <last_name>Pinkston</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Pat Pinkston</fullName> + <firstName>Pat</firstName> + <lastName>Pinkston</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6400</salary> - <supervisor_id>618</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>618</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>David Robinett</full_name> - <first_name>David</first_name> - <last_name>Robinett</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>David Robinett</fullName> + <firstName>David</firstName> + <lastName>Robinett</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6400</salary> - <supervisor_id>621</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>621</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Judy Lundahl</full_name> - <first_name>Judy</first_name> - <last_name>Lundahl</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Judy Lundahl</fullName> + <firstName>Judy</firstName> + <lastName>Lundahl</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>5900</salary> - <supervisor_id>621</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>621</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Shawn Demicell</full_name> - <first_name>Shawn</first_name> - <last_name>Demicell</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Shawn Demicell</fullName> + <firstName>Shawn</firstName> + <lastName>Demicell</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6200</salary> - <supervisor_id>622</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>622</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Linda Rousey</full_name> - <first_name>Linda</first_name> - <last_name>Rousey</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Linda Rousey</fullName> + <firstName>Linda</firstName> + <lastName>Rousey</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6100</salary> - <supervisor_id>622</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>622</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Corinne Zugschwert</full_name> - <first_name>Corinne</first_name> - <last_name>Zugschwert</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Corinne Zugschwert</fullName> + <firstName>Corinne</firstName> + <lastName>Zugschwert</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>287</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Michelle Adams</full_name> - <first_name>Michelle</first_name> - <last_name>Adams</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Michelle Adams</fullName> + <firstName>Michelle</firstName> + <lastName>Adams</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>287</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Donahue Steen</full_name> - <first_name>Donahue</first_name> - <last_name>Steen</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Donahue Steen</fullName> + <firstName>Donahue</firstName> + <lastName>Steen</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>287</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Baker</full_name> - <first_name>John</first_name> - <last_name>Baker</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>John Baker</fullName> + <firstName>John</firstName> + <lastName>Baker</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>287</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Keith Pearl</full_name> - <first_name>Keith</first_name> - <last_name>Pearl</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Keith Pearl</fullName> + <firstName>Keith</firstName> + <lastName>Pearl</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8000</salary> - <supervisor_id>287</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sarah Roundtree</full_name> - <first_name>Sarah</first_name> - <last_name>Roundtree</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Sarah Roundtree</fullName> + <firstName>Sarah</firstName> + <lastName>Roundtree</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>288</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lawrence Bollin</full_name> - <first_name>Lawrence</first_name> - <last_name>Bollin</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Lawrence Bollin</fullName> + <firstName>Lawrence</firstName> + <lastName>Bollin</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>288</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Fred Hopkins</full_name> - <first_name>Fred</first_name> - <last_name>Hopkins</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Fred Hopkins</fullName> + <firstName>Fred</firstName> + <lastName>Hopkins</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>288</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Caroline Vicknair</full_name> - <first_name>Caroline</first_name> - <last_name>Vicknair</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Caroline Vicknair</fullName> + <firstName>Caroline</firstName> + <lastName>Vicknair</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>288</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Nancy McPhearson</full_name> - <first_name>Nancy</first_name> - <last_name>McPhearson</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Nancy McPhearson</fullName> + <firstName>Nancy</firstName> + <lastName>McPhearson</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7900</salary> - <supervisor_id>288</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Anna Albright</full_name> - <first_name>Anna</first_name> - <last_name>Albright</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Anna Albright</fullName> + <firstName>Anna</firstName> + <lastName>Albright</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>289</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Phyllis Thomas</full_name> - <first_name>Phyllis</first_name> - <last_name>Thomas</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Phyllis Thomas</fullName> + <firstName>Phyllis</firstName> + <lastName>Thomas</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>289</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Tina Perko</full_name> - <first_name>Tina</first_name> - <last_name>Perko</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Tina Perko</fullName> + <firstName>Tina</firstName> + <lastName>Perko</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>289</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jane McCarty</full_name> - <first_name>Jane</first_name> - <last_name>McCarty</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jane McCarty</fullName> + <firstName>Jane</firstName> + <lastName>McCarty</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>289</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Scot Bent</full_name> - <first_name>Scot</first_name> - <last_name>Bent</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Scot Bent</fullName> + <firstName>Scot</firstName> + <lastName>Bent</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8100</salary> - <supervisor_id>289</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Bonnie Lepro</full_name> - <first_name>Bonnie</first_name> - <last_name>Lepro</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Bonnie Lepro</fullName> + <firstName>Bonnie</firstName> + <lastName>Lepro</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>359</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>359</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dorothy Robinson</full_name> - <first_name>Dorothy</first_name> - <last_name>Robinson</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Dorothy Robinson</fullName> + <firstName>Dorothy</firstName> + <lastName>Robinson</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>363</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>363</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>June Brunner</full_name> - <first_name>June</first_name> - <last_name>Brunner</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>June Brunner</fullName> + <firstName>June</firstName> + <lastName>Brunner</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>363</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>363</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Judith Frazier</full_name> - <first_name>Judith</first_name> - <last_name>Frazier</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Judith Frazier</fullName> + <firstName>Judith</firstName> + <lastName>Frazier</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>363</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>363</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Michelle Rector</full_name> - <first_name>Michelle</first_name> - <last_name>Rector</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Michelle Rector</fullName> + <firstName>Michelle</firstName> + <lastName>Rector</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>363</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>363</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mari Caldwell</full_name> - <first_name>Mari</first_name> - <last_name>Caldwell</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mari Caldwell</fullName> + <firstName>Mari</firstName> + <lastName>Caldwell</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>364</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>364</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Linda Gonzales</full_name> - <first_name>Linda</first_name> - <last_name>Gonzales</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Linda Gonzales</fullName> + <firstName>Linda</firstName> + <lastName>Gonzales</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>364</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>364</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Alan Monitor</full_name> - <first_name>Alan</first_name> - <last_name>Monitor</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Alan Monitor</fullName> + <firstName>Alan</firstName> + <lastName>Monitor</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>364</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>364</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Elsie Lewin</full_name> - <first_name>Elsie</first_name> - <last_name>Lewin</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Elsie Lewin</fullName> + <firstName>Elsie</firstName> + <lastName>Lewin</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>364</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>364</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Bev Desalvo</full_name> - <first_name>Bev</first_name> - <last_name>Desalvo</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Bev Desalvo</fullName> + <firstName>Bev</firstName> + <lastName>Desalvo</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>365</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>365</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Oscar Alpuerto</full_name> - <first_name>Oscar</first_name> - <last_name>Alpuerto</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Oscar Alpuerto</fullName> + <firstName>Oscar</firstName> + <lastName>Alpuerto</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>365</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>365</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Cecelia Marshall</full_name> - <first_name>Cecelia</first_name> - <last_name>Marshall</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Cecelia Marshall</fullName> + <firstName>Cecelia</firstName> + <lastName>Marshall</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>365</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>365</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gabriel Bockenkamp</full_name> - <first_name>Gabriel</first_name> - <last_name>Bockenkamp</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Gabriel Bockenkamp</fullName> + <firstName>Gabriel</firstName> + <lastName>Bockenkamp</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>365</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>365</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Beverly Carrington</full_name> - <first_name>Beverly</first_name> - <last_name>Carrington</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Beverly Carrington</fullName> + <firstName>Beverly</firstName> + <lastName>Carrington</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7200</salary> - <supervisor_id>1020</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1020</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kathy Vigil</full_name> - <first_name>Kathy</first_name> - <last_name>Vigil</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Kathy Vigil</fullName> + <firstName>Kathy</firstName> + <lastName>Vigil</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>1020</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>1020</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gary Gonzales</full_name> - <first_name>Gary</first_name> - <last_name>Gonzales</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Gary Gonzales</fullName> + <firstName>Gary</firstName> + <lastName>Gonzales</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6900</salary> - <supervisor_id>1020</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1020</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Catherine Starr</full_name> - <first_name>Catherine</first_name> - <last_name>Starr</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Catherine Starr</fullName> + <firstName>Catherine</firstName> + <lastName>Starr</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7100</salary> - <supervisor_id>1020</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1020</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Steven Murphy</full_name> - <first_name>Steven</first_name> - <last_name>Murphy</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Steven Murphy</fullName> + <firstName>Steven</firstName> + <lastName>Murphy</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>1021</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>1021</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Harold Rinks</full_name> - <first_name>Harold</first_name> - <last_name>Rinks</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Harold Rinks</fullName> + <firstName>Harold</firstName> + <lastName>Rinks</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>1021</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>1021</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>William Kroes</full_name> - <first_name>William</first_name> - <last_name>Kroes</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>William Kroes</fullName> + <firstName>William</firstName> + <lastName>Kroes</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>5000</salary> - <supervisor_id>1021</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1021</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Andrea Shafer</full_name> - <first_name>Andrea</first_name> - <last_name>Shafer</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Andrea Shafer</fullName> + <firstName>Andrea</firstName> + <lastName>Shafer</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>9000</salary> - <supervisor_id>1022</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1022</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Garrett Price</full_name> - <first_name>Garrett</first_name> - <last_name>Price</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Garrett Price</fullName> + <firstName>Garrett</firstName> + <lastName>Price</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>1022</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1022</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Betty Driscoll</full_name> - <first_name>Betty</first_name> - <last_name>Driscoll</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Betty Driscoll</fullName> + <firstName>Betty</firstName> + <lastName>Driscoll</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7500</salary> - <supervisor_id>1022</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1022</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jauna Elson</full_name> - <first_name>Jauna</first_name> - <last_name>Elson</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jauna Elson</fullName> + <firstName>Jauna</firstName> + <lastName>Elson</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6400</salary> - <supervisor_id>712</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>712</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Nancy Hirota</full_name> - <first_name>Nancy</first_name> - <last_name>Hirota</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Nancy Hirota</fullName> + <firstName>Nancy</firstName> + <lastName>Hirota</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>5900</salary> - <supervisor_id>712</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>712</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Linda Blasingame</full_name> - <first_name>Linda</first_name> - <last_name>Blasingame</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Linda Blasingame</fullName> + <firstName>Linda</firstName> + <lastName>Blasingame</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6200</salary> - <supervisor_id>713</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>713</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jackie Blackwell</full_name> - <first_name>Jackie</first_name> - <last_name>Blackwell</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jackie Blackwell</fullName> + <firstName>Jackie</firstName> + <lastName>Blackwell</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6100</salary> - <supervisor_id>713</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>713</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>David Trolen</full_name> - <first_name>David</first_name> - <last_name>Trolen</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>David Trolen</fullName> + <firstName>David</firstName> + <lastName>Trolen</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6400</salary> - <supervisor_id>730</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>730</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Wanda Vernon</full_name> - <first_name>Wanda</first_name> - <last_name>Vernon</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Wanda Vernon</fullName> + <firstName>Wanda</firstName> + <lastName>Vernon</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>5900</salary> - <supervisor_id>730</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>730</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sharon Lynn</full_name> - <first_name>Sharon</first_name> - <last_name>Lynn</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Sharon Lynn</fullName> + <firstName>Sharon</firstName> + <lastName>Lynn</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6200</salary> - <supervisor_id>731</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>731</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Brigid Cavendish</full_name> - <first_name>Brigid</first_name> - <last_name>Cavendish</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Brigid Cavendish</fullName> + <firstName>Brigid</firstName> + <lastName>Cavendish</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6100</salary> - <supervisor_id>731</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>731</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Deanna Sabella</full_name> - <first_name>Deanna</first_name> - <last_name>Sabella</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Deanna Sabella</fullName> + <firstName>Deanna</firstName> + <lastName>Sabella</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>749</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kara Vanderlinden</full_name> - <first_name>Kara</first_name> - <last_name>Vanderlinden</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Kara Vanderlinden</fullName> + <firstName>Kara</firstName> + <lastName>Vanderlinden</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>749</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Keith Virden</full_name> - <first_name>Keith</first_name> - <last_name>Virden</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Keith Virden</fullName> + <firstName>Keith</firstName> + <lastName>Virden</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>749</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sylvia Spencer</full_name> - <first_name>Sylvia</first_name> - <last_name>Spencer</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Sylvia Spencer</fullName> + <firstName>Sylvia</firstName> + <lastName>Spencer</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>749</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Joseph Castellucio</full_name> - <first_name>Joseph</first_name> - <last_name>Castellucio</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Joseph Castellucio</fullName> + <firstName>Joseph</firstName> + <lastName>Castellucio</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8000</salary> - <supervisor_id>749</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Judy Zugelder</full_name> - <first_name>Judy</first_name> - <last_name>Zugelder</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Judy Zugelder</fullName> + <firstName>Judy</firstName> + <lastName>Zugelder</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>750</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kimberly Malmendier</full_name> - <first_name>Kimberly</first_name> - <last_name>Malmendier</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Kimberly Malmendier</fullName> + <firstName>Kimberly</firstName> + <lastName>Malmendier</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>750</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Geri Farrell</full_name> - <first_name>Geri</first_name> - <last_name>Farrell</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Geri Farrell</fullName> + <firstName>Geri</firstName> + <lastName>Farrell</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>750</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Ault</full_name> - <first_name>John</first_name> - <last_name>Ault</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>John Ault</fullName> + <firstName>John</firstName> + <lastName>Ault</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>750</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Fran Highfill</full_name> - <first_name>Fran</first_name> - <last_name>Highfill</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Fran Highfill</fullName> + <firstName>Fran</firstName> + <lastName>Highfill</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7900</salary> - <supervisor_id>750</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Julie Waggoner</full_name> - <first_name>Julie</first_name> - <last_name>Waggoner</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Julie Waggoner</fullName> + <firstName>Julie</firstName> + <lastName>Waggoner</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>751</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Julie Estes</full_name> - <first_name>Julie</first_name> - <last_name>Estes</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Julie Estes</fullName> + <firstName>Julie</firstName> + <lastName>Estes</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>751</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Vivian Jarmillo</full_name> - <first_name>Vivian</first_name> - <last_name>Jarmillo</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Vivian Jarmillo</fullName> + <firstName>Vivian</firstName> + <lastName>Jarmillo</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>751</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Joan Steele</full_name> - <first_name>Joan</first_name> - <last_name>Steele</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Joan Steele</fullName> + <firstName>Joan</firstName> + <lastName>Steele</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>751</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Daniel Thompson</full_name> - <first_name>Daniel</first_name> - <last_name>Thompson</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Daniel Thompson</fullName> + <firstName>Daniel</firstName> + <lastName>Thompson</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8100</salary> - <supervisor_id>751</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Merav Netz</full_name> - <first_name>Merav</first_name> - <last_name>Netz</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Merav Netz</fullName> + <firstName>Merav</firstName> + <lastName>Netz</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>822</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>822</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Maria Green</full_name> - <first_name>Maria</first_name> - <last_name>Green</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Maria Green</fullName> + <firstName>Maria</firstName> + <lastName>Green</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>822</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>822</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Virginia Bobbitt</full_name> - <first_name>Virginia</first_name> - <last_name>Bobbitt</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Virginia Bobbitt</fullName> + <firstName>Virginia</firstName> + <lastName>Bobbitt</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>822</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>822</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Stanley Boston</full_name> - <first_name>Stanley</first_name> - <last_name>Boston</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Stanley Boston</fullName> + <firstName>Stanley</firstName> + <lastName>Boston</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>822</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>822</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Matthew Barry</full_name> - <first_name>Matthew</first_name> - <last_name>Barry</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Matthew Barry</fullName> + <firstName>Matthew</firstName> + <lastName>Barry</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>823</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>823</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Scott Chang</full_name> - <first_name>Scott</first_name> - <last_name>Chang</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Scott Chang</fullName> + <firstName>Scott</firstName> + <lastName>Chang</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>823</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>823</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Melvin Carreras</full_name> - <first_name>Melvin</first_name> - <last_name>Carreras</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Melvin Carreras</fullName> + <firstName>Melvin</firstName> + <lastName>Carreras</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>823</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>823</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Karlyn Burtis</full_name> - <first_name>Karlyn</first_name> - <last_name>Burtis</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Karlyn Burtis</fullName> + <firstName>Karlyn</firstName> + <lastName>Burtis</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>823</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>823</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Daniel Sanders</full_name> - <first_name>Daniel</first_name> - <last_name>Sanders</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Daniel Sanders</fullName> + <firstName>Daniel</firstName> + <lastName>Sanders</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>824</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>824</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Concetta Steinberg</full_name> - <first_name>Concetta</first_name> - <last_name>Steinberg</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Concetta Steinberg</fullName> + <firstName>Concetta</firstName> + <lastName>Steinberg</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>824</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>824</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>William Viellieux</full_name> - <first_name>William</first_name> - <last_name>Viellieux</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>William Viellieux</fullName> + <firstName>William</firstName> + <lastName>Viellieux</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>824</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>824</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ted Baugh</full_name> - <first_name>Ted</first_name> - <last_name>Baugh</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ted Baugh</fullName> + <firstName>Ted</firstName> + <lastName>Baugh</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>824</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>824</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Harold Bauer</full_name> - <first_name>Harold</first_name> - <last_name>Bauer</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Harold Bauer</fullName> + <firstName>Harold</firstName> + <lastName>Bauer</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6400</salary> - <supervisor_id>882</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>882</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lisa Gerber</full_name> - <first_name>Lisa</first_name> - <last_name>Gerber</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Lisa Gerber</fullName> + <firstName>Lisa</firstName> + <lastName>Gerber</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>886</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>886</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Deanne Vanderslice</full_name> - <first_name>Deanne</first_name> - <last_name>Vanderslice</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Deanne Vanderslice</fullName> + <firstName>Deanne</firstName> + <lastName>Vanderslice</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>886</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>886</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kathy Wood</full_name> - <first_name>Kathy</first_name> - <last_name>Wood</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Kathy Wood</fullName> + <firstName>Kathy</firstName> + <lastName>Wood</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>886</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>886</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Howard Bostwick</full_name> - <first_name>Howard</first_name> - <last_name>Bostwick</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Howard Bostwick</fullName> + <firstName>Howard</firstName> + <lastName>Bostwick</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>886</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>886</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lavona Corcoran</full_name> - <first_name>Lavona</first_name> - <last_name>Corcoran</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Lavona Corcoran</fullName> + <firstName>Lavona</firstName> + <lastName>Corcoran</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>887</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>887</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dixie Good</full_name> - <first_name>Dixie</first_name> - <last_name>Good</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Dixie Good</fullName> + <firstName>Dixie</firstName> + <lastName>Good</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>887</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>887</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Andrew Grosvenor</full_name> - <first_name>Andrew</first_name> - <last_name>Grosvenor</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Andrew Grosvenor</fullName> + <firstName>Andrew</firstName> + <lastName>Grosvenor</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>887</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>887</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Nancy Smrha</full_name> - <first_name>Nancy</first_name> - <last_name>Smrha</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Nancy Smrha</fullName> + <firstName>Nancy</firstName> + <lastName>Smrha</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>887</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>887</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Robert Wright</full_name> - <first_name>Robert</first_name> - <last_name>Wright</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Robert Wright</fullName> + <firstName>Robert</firstName> + <lastName>Wright</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>888</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>888</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kenneth Kalman</full_name> - <first_name>Kenneth</first_name> - <last_name>Kalman</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Kenneth Kalman</fullName> + <firstName>Kenneth</firstName> + <lastName>Kalman</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>888</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>888</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Greg Ponce</full_name> - <first_name>Greg</first_name> - <last_name>Ponce</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Greg Ponce</fullName> + <firstName>Greg</firstName> + <lastName>Ponce</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>888</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>888</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Chad Borrelli</full_name> - <first_name>Chad</first_name> - <last_name>Borrelli</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Chad Borrelli</fullName> + <firstName>Chad</firstName> + <lastName>Borrelli</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>888</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>888</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Smith</full_name> - <first_name>John</first_name> - <last_name>Smith</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>John Smith</fullName> + <firstName>John</firstName> + <lastName>Smith</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>947</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Christel Christensen</full_name> - <first_name>Christel</first_name> - <last_name>Christensen</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Christel Christensen</fullName> + <firstName>Christel</firstName> + <lastName>Christensen</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>947</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Valerie Pectol</full_name> - <first_name>Valerie</first_name> - <last_name>Pectol</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Valerie Pectol</fullName> + <firstName>Valerie</firstName> + <lastName>Pectol</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>947</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Cornelius Baker</full_name> - <first_name>Cornelius</first_name> - <last_name>Baker</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Cornelius Baker</fullName> + <firstName>Cornelius</firstName> + <lastName>Baker</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>947</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Fay Finke</full_name> - <first_name>Fay</first_name> - <last_name>Finke</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Fay Finke</fullName> + <firstName>Fay</firstName> + <lastName>Finke</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8000</salary> - <supervisor_id>947</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Allison Beutel</full_name> - <first_name>Allison</first_name> - <last_name>Beutel</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Allison Beutel</fullName> + <firstName>Allison</firstName> + <lastName>Beutel</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>948</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ann Duvalle</full_name> - <first_name>Ann</first_name> - <last_name>Duvalle</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ann Duvalle</fullName> + <firstName>Ann</firstName> + <lastName>Duvalle</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>948</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kari Sloper</full_name> - <first_name>Kari</first_name> - <last_name>Sloper</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Kari Sloper</fullName> + <firstName>Kari</firstName> + <lastName>Sloper</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>948</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Patricia Weinzimmer</full_name> - <first_name>Patricia</first_name> - <last_name>Weinzimmer</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Patricia Weinzimmer</fullName> + <firstName>Patricia</firstName> + <lastName>Weinzimmer</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>948</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Raven Moore</full_name> - <first_name>Raven</first_name> - <last_name>Moore</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Raven Moore</fullName> + <firstName>Raven</firstName> + <lastName>Moore</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7900</salary> - <supervisor_id>948</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Susan Chaw</full_name> - <first_name>Susan</first_name> - <last_name>Chaw</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Susan Chaw</fullName> + <firstName>Susan</firstName> + <lastName>Chaw</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>949</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Steve Reitzel</full_name> - <first_name>Steve</first_name> - <last_name>Reitzel</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Steve Reitzel</fullName> + <firstName>Steve</firstName> + <lastName>Reitzel</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>949</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Edie Horbach</full_name> - <first_name>Edie</first_name> - <last_name>Horbach</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Edie Horbach</fullName> + <firstName>Edie</firstName> + <lastName>Horbach</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>949</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lois Knobel</full_name> - <first_name>Lois</first_name> - <last_name>Knobel</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Lois Knobel</fullName> + <firstName>Lois</firstName> + <lastName>Knobel</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>949</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Rachel Hope</full_name> - <first_name>Rachel</first_name> - <last_name>Hope</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Rachel Hope</fullName> + <firstName>Rachel</firstName> + <lastName>Hope</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8100</salary> - <supervisor_id>949</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Joyce Heth</full_name> - <first_name>Joyce</first_name> - <last_name>Heth</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Joyce Heth</fullName> + <firstName>Joyce</firstName> + <lastName>Heth</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>1067</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Alice Salazar</full_name> - <first_name>Alice</first_name> - <last_name>Salazar</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Alice Salazar</fullName> + <firstName>Alice</firstName> + <lastName>Salazar</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>1067</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Marcus Reardon</full_name> - <first_name>Marcus</first_name> - <last_name>Reardon</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Marcus Reardon</fullName> + <firstName>Marcus</firstName> + <lastName>Reardon</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>1067</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Glenn Chenault</full_name> - <first_name>Glenn</first_name> - <last_name>Chenault</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Glenn Chenault</fullName> + <firstName>Glenn</firstName> + <lastName>Chenault</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>1067</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sandra Edwards</full_name> - <first_name>Sandra</first_name> - <last_name>Edwards</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Sandra Edwards</fullName> + <firstName>Sandra</firstName> + <lastName>Edwards</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8000</salary> - <supervisor_id>1067</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Beulah Sowards</full_name> - <first_name>Beulah</first_name> - <last_name>Sowards</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Beulah Sowards</fullName> + <firstName>Beulah</firstName> + <lastName>Sowards</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>1068</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Konie James</full_name> - <first_name>Konie</first_name> - <last_name>James</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Konie James</fullName> + <firstName>Konie</firstName> + <lastName>James</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>1068</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Hazel Coy</full_name> - <first_name>Hazel</first_name> - <last_name>Coy</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Hazel Coy</fullName> + <firstName>Hazel</firstName> + <lastName>Coy</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>1068</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Merced Putinas</full_name> - <first_name>Merced</first_name> - <last_name>Putinas</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Merced Putinas</fullName> + <firstName>Merced</firstName> + <lastName>Putinas</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>1068</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Marilyn Jasper</full_name> - <first_name>Marilyn</first_name> - <last_name>Jasper</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Marilyn Jasper</fullName> + <firstName>Marilyn</firstName> + <lastName>Jasper</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7900</salary> - <supervisor_id>1068</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Carl Morris</full_name> - <first_name>Carl</first_name> - <last_name>Morris</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Carl Morris</fullName> + <firstName>Carl</firstName> + <lastName>Morris</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>1069</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Merceades Laudenslager</full_name> - <first_name>Merceades</first_name> - <last_name>Laudenslager</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Merceades Laudenslager</fullName> + <firstName>Merceades</firstName> + <lastName>Laudenslager</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6800</salary> - <supervisor_id>1069</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Robin Dominica</full_name> - <first_name>Jose</first_name> - <last_name>Dominica</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Robin Dominica</fullName> + <firstName>Jose</firstName> + <lastName>Dominica</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6700</salary> - <supervisor_id>1069</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jade Brandberry</full_name> - <first_name>Jade</first_name> - <last_name>Brandberry</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jade Brandberry</fullName> + <firstName>Jade</firstName> + <lastName>Brandberry</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>1069</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kathleen Henderson</full_name> - <first_name>Kathleen</first_name> - <last_name>Henderson</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Kathleen Henderson</fullName> + <firstName>Kathleen</firstName> + <lastName>Henderson</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8100</salary> - <supervisor_id>1069</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>James Compagno</full_name> - <first_name>James</first_name> - <last_name>Compagno</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>James Compagno</fullName> + <firstName>James</firstName> + <lastName>Compagno</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6400</salary> - <supervisor_id>1139</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1139</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Hazel Souza</full_name> - <first_name>Hazel</first_name> - <last_name>Souza</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Hazel Souza</fullName> + <firstName>Hazel</firstName> + <lastName>Souza</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>5900</salary> - <supervisor_id>1139</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1139</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ana Quick</full_name> - <first_name>Ana</first_name> - <last_name>Quick</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ana Quick</fullName> + <firstName>Ana</firstName> + <lastName>Quick</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6200</salary> - <supervisor_id>1140</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>1140</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Shirley Curtsinger</full_name> - <first_name>Shirley</first_name> - <last_name>Curtsinger</last_name> - <position_title>Store Permanent Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Shirley Curtsinger</fullName> + <firstName>Shirley</firstName> + <lastName>Curtsinger</lastName> + <positionTitle>Store Permanent Checker</positionTitle><Department><departmentDescription>Store Permanent Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6100</salary> - <supervisor_id>1140</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1140</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> </Position> <Position> - <position_title>Store Temporary Checker</position_title> - <pay_type>Hourly</pay_type> - <min_scale>20</min_scale> - <max_scale>40</max_scale> - <management_role>Store Full Time Staff</management_role> + <positionTitle>Store Temporary Checker</positionTitle> + <payType>Hourly</payType> + <minScale>20</minScale> + <maxScale>40</maxScale> + <managementRole>Store Full Time Staff</managementRole> <Employee> - <full_name>Leopoldo Renfros</full_name> - <first_name>Leopoldo</first_name> - <last_name>Renfrosss</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Leopoldo Renfros</fullName> + <firstName>Leopoldo</firstName> + <lastName>Renfrosss</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>54</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>54</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Donna Brockett</full_name> - <first_name>Donna</first_name> - <last_name>Brockett</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Donna Brockett</fullName> + <firstName>Donna</firstName> + <lastName>Brockett</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>54</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>54</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Laurie Anderson</full_name> - <first_name>Laurie</first_name> - <last_name>Anderson</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Laurie Anderson</fullName> + <firstName>Laurie</firstName> + <lastName>Anderson</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>54</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>54</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Louis Gomez</full_name> - <first_name>Louis</first_name> - <last_name>Gomez</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Louis Gomez</fullName> + <firstName>Louis</firstName> + <lastName>Gomez</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>54</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>54</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Julie Walker</full_name> - <first_name>Julie</first_name> - <last_name>Walker</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Julie Walker</fullName> + <firstName>Julie</firstName> + <lastName>Walker</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>55</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>55</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jay Jones</full_name> - <first_name>Jayd</first_name> - <last_name>Jones</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jay Jones</fullName> + <firstName>Jayd</firstName> + <lastName>Jones</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>55</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>55</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gayle Winfrey</full_name> - <first_name>Gayle</first_name> - <last_name>Winfrey</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Gayle Winfrey</fullName> + <firstName>Gayle</firstName> + <lastName>Winfrey</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>55</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>55</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Yasmina Brown</full_name> - <first_name>Yasmina</first_name> - <last_name>Brown</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Yasmina Brown</fullName> + <firstName>Yasmina</firstName> + <lastName>Brown</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>56</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>56</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Joseph Touchstone</full_name> - <first_name>Joseph</first_name> - <last_name>Touchstone</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Joseph Touchstone</fullName> + <firstName>Joseph</firstName> + <lastName>Touchstone</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>56</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>56</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Bakhtyari</full_name> - <first_name>Mary</first_name> - <last_name>Bakhtyari</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mary Bakhtyari</fullName> + <firstName>Mary</firstName> + <lastName>Bakhtyari</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>56</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>56</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Wanda Hollar</full_name> - <first_name>Wanda</first_name> - <last_name>Hollar</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Wanda Hollar</fullName> + <firstName>Wanda</firstName> + <lastName>Hollar</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>222</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>222</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Max Lyons</full_name> - <first_name>Max</first_name> - <last_name>Lyons</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Max Lyons</fullName> + <firstName>Max</firstName> + <lastName>Lyons</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>226</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>226</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Christine Sandy Kurtz</full_name> - <first_name>Christine</first_name> - <last_name>Sandy Kurtz</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Christine Sandy Kurtz</fullName> + <firstName>Christine</firstName> + <lastName>Sandy Kurtz</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>226</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>226</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Rita Santry</full_name> - <first_name>Rita</first_name> - <last_name>Santry</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Rita Santry</fullName> + <firstName>Rita</firstName> + <lastName>Santry</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>226</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>226</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Catherine Quigle</full_name> - <first_name>Catherine</first_name> - <last_name>Quigle</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Catherine Quigle</fullName> + <firstName>Catherine</firstName> + <lastName>Quigle</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>226</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>226</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Patricia Christensen</full_name> - <first_name>Patricia</first_name> - <last_name>Christensen</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Patricia Christensen</fullName> + <firstName>Patricia</firstName> + <lastName>Christensen</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>226</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>226</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Anne Mercurio</full_name> - <first_name>Anne</first_name> - <last_name>Mercurio</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Anne Mercurio</fullName> + <firstName>Anne</firstName> + <lastName>Mercurio</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>227</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>227</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Louis McGrath</full_name> - <first_name>Louis</first_name> - <last_name>McGrath</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Louis McGrath</fullName> + <firstName>Louis</firstName> + <lastName>McGrath</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>227</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>227</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Rachael Wright</full_name> - <first_name>Rachael</first_name> - <last_name>Wright</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Rachael Wright</fullName> + <firstName>Rachael</firstName> + <lastName>Wright</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>227</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>227</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Richard Skuce</full_name> - <first_name>Richard</first_name> - <last_name>Skuce</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Richard Skuce</fullName> + <firstName>Richard</firstName> + <lastName>Skuce</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>227</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>227</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>George Coleman</full_name> - <first_name>George</first_name> - <last_name>Coleman</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>George Coleman</fullName> + <firstName>George</firstName> + <lastName>Coleman</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>227</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>227</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lois Barnes</full_name> - <first_name>Lois</first_name> - <last_name>Barnes</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Lois Barnes</fullName> + <firstName>Lois</firstName> + <lastName>Barnes</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>228</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>228</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jacky Camille</full_name> - <first_name>Jacky</first_name> - <last_name>Camille</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jacky Camille</fullName> + <firstName>Jacky</firstName> + <lastName>Camille</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>228</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>228</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Michelle Allenbach</full_name> - <first_name>Michelle</first_name> - <last_name>Allenbach</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Michelle Allenbach</fullName> + <firstName>Michelle</firstName> + <lastName>Allenbach</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>228</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>228</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Franklin Smith</full_name> - <first_name>Franklin</first_name> - <last_name>Smith</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Franklin Smith</fullName> + <firstName>Franklin</firstName> + <lastName>Smith</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>228</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>228</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Minker</full_name> - <first_name>John</first_name> - <last_name>Minker</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>John Minker</fullName> + <firstName>John</firstName> + <lastName>Minker</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>228</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>228</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Chris Barros</full_name> - <first_name>Chris</first_name> - <last_name>Barros</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Chris Barros</fullName> + <firstName>Chris</firstName> + <lastName>Barros</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>101</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>101</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Christopher Groome</full_name> - <first_name>Christopher</first_name> - <last_name>Groome</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Christopher Groome</fullName> + <firstName>Christopher</firstName> + <lastName>Groome</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>101</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>101</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Anna Hill</full_name> - <first_name>Anna</first_name> - <last_name>Hill</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Anna Hill</fullName> + <firstName>Anna</firstName> + <lastName>Hill</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>101</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>101</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ramon Williams</full_name> - <first_name>Ramon</first_name> - <last_name>Williams</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ramon Williams</fullName> + <firstName>Ramon</firstName> + <lastName>Williams</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>101</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>101</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Scott Masters</full_name> - <first_name>Scott</first_name> - <last_name>Masters</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Scott Masters</fullName> + <firstName>Scott</firstName> + <lastName>Masters</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>101</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>101</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Joseph Brady, Jr.</full_name> - <first_name>Joseph</first_name> - <last_name>Brady, Jr.</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Joseph Brady, Jr.</fullName> + <firstName>Joseph</firstName> + <lastName>Brady, Jr.</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>102</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>102</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ellen Gray</full_name> - <first_name>Ellen</first_name> - <last_name>Gray</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ellen Gray</fullName> + <firstName>Ellen</firstName> + <lastName>Gray</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>102</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>102</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Henry Fielder</full_name> - <first_name>Henry</first_name> - <last_name>Fielder</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Henry Fielder</fullName> + <firstName>Henry</firstName> + <lastName>Fielder</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>102</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>102</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jeanine Finnell</full_name> - <first_name>Jeanine</first_name> - <last_name>Finnell</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jeanine Finnell</fullName> + <firstName>Jeanine</firstName> + <lastName>Finnell</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>102</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>102</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ian Schuetz</full_name> - <first_name>Ian</first_name> - <last_name>Schuetz</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ian Schuetz</fullName> + <firstName>Ian</firstName> + <lastName>Schuetz</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>102</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>102</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Richard Runyon</full_name> - <first_name>Richard</first_name> - <last_name>Runyon</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Richard Runyon</fullName> + <firstName>Richard</firstName> + <lastName>Runyon</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>103</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>103</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Linda Potter</full_name> - <first_name>Linda</first_name> - <last_name>Potter</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Linda Potter</fullName> + <firstName>Linda</firstName> + <lastName>Potter</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>103</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>103</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Smith</full_name> - <first_name>Mary</first_name> - <last_name>Smith</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mary Smith</fullName> + <firstName>Mary</firstName> + <lastName>Smith</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>103</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>103</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Barbara Brumagen</full_name> - <first_name>Barbara</first_name> - <last_name>Brumagen</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Barbara Brumagen</fullName> + <firstName>Barbara</firstName> + <lastName>Brumagen</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>103</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>103</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Thelma Hamilton</full_name> - <first_name>Thelma</first_name> - <last_name>Hamilton</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Thelma Hamilton</fullName> + <firstName>Thelma</firstName> + <lastName>Hamilton</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>103</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>103</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Vicky Zingarelli</full_name> - <first_name>Vicky</first_name> - <last_name>Zingarelli</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Vicky Zingarelli</fullName> + <firstName>Vicky</firstName> + <lastName>Zingarelli</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>162</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>162</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Helen Valentine</full_name> - <first_name>Helen</first_name> - <last_name>Valentine</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Helen Valentine</fullName> + <firstName>Helen</firstName> + <lastName>Valentine</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>162</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>162</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Carol Scheulen</full_name> - <first_name>Carol</first_name> - <last_name>Scheulen</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Carol Scheulen</fullName> + <firstName>Carol</firstName> + <lastName>Scheulen</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>162</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>162</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Virgie Koon</full_name> - <first_name>Virgie</first_name> - <last_name>Koon</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Virgie Koon</fullName> + <firstName>Virgie</firstName> + <lastName>Koon</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>162</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>162</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sarah Amole</full_name> - <first_name>Sarah</first_name> - <last_name>Amole</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Sarah Amole</fullName> + <firstName>Sarah</firstName> + <lastName>Amole</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>162</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>162</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Cecil Hill</full_name> - <first_name>Cecil</first_name> - <last_name>Hill</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Cecil Hill</fullName> + <firstName>Cecil</firstName> + <lastName>Hill</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>163</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>163</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ruth Tate</full_name> - <first_name>Ruth</first_name> - <last_name>Tate</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ruth Tate</fullName> + <firstName>Ruth</firstName> + <lastName>Tate</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>163</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>163</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Larry Schnurr</full_name> - <first_name>Larry</first_name> - <last_name>Schnurr</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Larry Schnurr</fullName> + <firstName>Larry</firstName> + <lastName>Schnurr</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>163</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>163</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jerry Sutton</full_name> - <first_name>Jerry</first_name> - <last_name>Sutton</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jerry Sutton</fullName> + <firstName>Jerry</firstName> + <lastName>Sutton</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>163</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>163</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kevin Mlincek</full_name> - <first_name>Kevin</first_name> - <last_name>Mlincek</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Kevin Mlincek</fullName> + <firstName>Kevin</firstName> + <lastName>Mlincek</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>163</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>163</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Edward Tucker</full_name> - <first_name>Edward</first_name> - <last_name>Tucker</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Edward Tucker</fullName> + <firstName>Edward</firstName> + <lastName>Tucker</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>164</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>164</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kenton Forham</full_name> - <first_name>Kenton</first_name> - <last_name>Forham</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Kenton Forham</fullName> + <firstName>Kenton</firstName> + <lastName>Forham</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>164</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>164</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Brittany Malik</full_name> - <first_name>Brittany</first_name> - <last_name>Malik</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Brittany Malik</fullName> + <firstName>Brittany</firstName> + <lastName>Malik</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>164</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>164</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jeannette Eldridge</full_name> - <first_name>Jeannette</first_name> - <last_name>Eldridge</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jeannette Eldridge</fullName> + <firstName>Jeannette</firstName> + <lastName>Eldridge</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>164</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>164</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Terry Anderson</full_name> - <first_name>Terry</first_name> - <last_name>Anderson</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Terry Anderson</fullName> + <firstName>Terry</firstName> + <lastName>Anderson</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>164</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>164</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>David Byrnes</full_name> - <first_name>David</first_name> - <last_name>Byrnes</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>David Byrnes</fullName> + <firstName>David</firstName> + <lastName>Byrnes</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>424</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>424</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Justine Ryan</full_name> - <first_name>Justine</first_name> - <last_name>Ryan</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Justine Ryan</fullName> + <firstName>Justine</firstName> + <lastName>Ryan</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>424</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>424</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Forrest Chand</full_name> - <first_name>Forrest</first_name> - <last_name>Chand</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Forrest Chand</fullName> + <firstName>Forrest</firstName> + <lastName>Chand</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>424</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>424</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Margaret Vanderkamp</full_name> - <first_name>Margaret</first_name> - <last_name>Vanderkamp</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Margaret Vanderkamp</fullName> + <firstName>Margaret</firstName> + <lastName>Vanderkamp</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>424</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>424</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Rosmarie Carroll</full_name> - <first_name>Rosmarie</first_name> - <last_name>Carroll</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Rosmarie Carroll</fullName> + <firstName>Rosmarie</firstName> + <lastName>Carroll</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>424</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>424</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dorothy Contreras</full_name> - <first_name>Dorothy</first_name> - <last_name>Contreras</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Dorothy Contreras</fullName> + <firstName>Dorothy</firstName> + <lastName>Contreras</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>425</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>425</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Joseph Cantoni</full_name> - <first_name>Joseph</first_name> - <last_name>Cantoni</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Joseph Cantoni</fullName> + <firstName>Joseph</firstName> + <lastName>Cantoni</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>425</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>425</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Celine Reed</full_name> - <first_name>Celine</first_name> - <last_name>Reed</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Celine Reed</fullName> + <firstName>Celine</firstName> + <lastName>Reed</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>425</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>425</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Glin Peterson</full_name> - <first_name>Glin</first_name> - <last_name>Peterson</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Glin Peterson</fullName> + <firstName>Glin</firstName> + <lastName>Peterson</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>425</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>425</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Stephen Osborn</full_name> - <first_name>Stephen</first_name> - <last_name>Osborn</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Stephen Osborn</fullName> + <firstName>Stephen</firstName> + <lastName>Osborn</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>425</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>425</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lowell Graham.</full_name> - <first_name>Lowell</first_name> - <last_name>Graham.</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Lowell Graham.</fullName> + <firstName>Lowell</firstName> + <lastName>Graham.</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>426</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>426</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jamie Shaddy</full_name> - <first_name>Jamie</first_name> - <last_name>Shaddy</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jamie Shaddy</fullName> + <firstName>Jamie</firstName> + <lastName>Shaddy</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>426</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>426</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Hattie Haemon</full_name> - <first_name>Hattie</first_name> - <last_name>Haemon</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Hattie Haemon</fullName> + <firstName>Hattie</firstName> + <lastName>Haemon</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>426</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>426</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jame Krow</full_name> - <first_name>Jame</first_name> - <last_name>Krow</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jame Krow</fullName> + <firstName>Jame</firstName> + <lastName>Krow</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>426</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>426</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Shane Belli</full_name> - <first_name>Shane</first_name> - <last_name>Belli</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Shane Belli</fullName> + <firstName>Shane</firstName> + <lastName>Belli</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>426</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>426</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Bronson Jacobs</full_name> - <first_name>Bronson</first_name> - <last_name>Jacobs</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Bronson Jacobs</fullName> + <firstName>Bronson</firstName> + <lastName>Jacobs</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>640</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Rebecca Barley</full_name> - <first_name>Rebecca</first_name> - <last_name>Barley</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Rebecca Barley</fullName> + <firstName>Rebecca</firstName> + <lastName>Barley</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>640</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Emilio Alvaro</full_name> - <first_name>Emilio</first_name> - <last_name>Alvaro</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Emilio Alvaro</fullName> + <firstName>Emilio</firstName> + <lastName>Alvaro</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>640</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Becky Waters</full_name> - <first_name>Becky</first_name> - <last_name>Waters</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Becky Waters</fullName> + <firstName>Becky</firstName> + <lastName>Waters</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>640</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>A. Joyce Jarvis</full_name> - <first_name>A. Joyce</first_name> - <last_name>Jarvis</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>A. Joyce Jarvis</fullName> + <firstName>A. Joyce</firstName> + <lastName>Jarvis</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>640</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ruby Sue Styles</full_name> - <first_name>Ruby Sue</first_name> - <last_name>Styles</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ruby Sue Styles</fullName> + <firstName>Ruby Sue</firstName> + <lastName>Styles</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>640</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jeanie Glenn</full_name> - <first_name>Jeanie</first_name> - <last_name>Glenn</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jeanie Glenn</fullName> + <firstName>Jeanie</firstName> + <lastName>Glenn</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>641</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Peggy Smith</full_name> - <first_name>Peggy</first_name> - <last_name>Smith</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Peggy Smith</fullName> + <firstName>Peggy</firstName> + <lastName>Smith</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>641</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Tish Duff</full_name> - <first_name>Tish</first_name> - <last_name>Duff</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Tish Duff</fullName> + <firstName>Tish</firstName> + <lastName>Duff</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>641</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Anita Lucero</full_name> - <first_name>Anita</first_name> - <last_name>Lucero</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Anita Lucero</fullName> + <firstName>Anita</firstName> + <lastName>Lucero</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>641</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Stephen Burton</full_name> - <first_name>Stephen</first_name> - <last_name>Burton</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Stephen Burton</fullName> + <firstName>Stephen</firstName> + <lastName>Burton</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>641</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Amy Consentino</full_name> - <first_name>Amy</first_name> - <last_name>Consentino</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Amy Consentino</fullName> + <firstName>Amy</firstName> + <lastName>Consentino</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>641</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Helen Lutes</full_name> - <first_name>Helen</first_name> - <last_name>Lutes</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Helen Lutes</fullName> + <firstName>Helen</firstName> + <lastName>Lutes</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>642</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Linda Ecoffey</full_name> - <first_name>Linda</first_name> - <last_name>Ecoffey</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Linda Ecoffey</fullName> + <firstName>Linda</firstName> + <lastName>Ecoffey</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>642</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Katherine Swint</full_name> - <first_name>Katherine</first_name> - <last_name>Swint</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Katherine Swint</fullName> + <firstName>Katherine</firstName> + <lastName>Swint</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>642</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dianne Slattengren</full_name> - <first_name>Dianne</first_name> - <last_name>Slattengren</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Dianne Slattengren</fullName> + <firstName>Dianne</firstName> + <lastName>Slattengren</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>642</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ronald Heymsfield</full_name> - <first_name>Ronald</first_name> - <last_name>Heymsfield</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ronald Heymsfield</fullName> + <firstName>Ronald</firstName> + <lastName>Heymsfield</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>642</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Steven Whitehead</full_name> - <first_name>Steven</first_name> - <last_name>Whitehead</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Steven Whitehead</fullName> + <firstName>Steven</firstName> + <lastName>Whitehead</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>642</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Charlene Wojcik</full_name> - <first_name>Charlene</first_name> - <last_name>Wojcik</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Charlene Wojcik</fullName> + <firstName>Charlene</firstName> + <lastName>Wojcik</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>485</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>485</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Eunice Wolf</full_name> - <first_name>Eunice</first_name> - <last_name>Wolf</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Eunice Wolf</fullName> + <firstName>Eunice</firstName> + <lastName>Wolf</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>485</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>485</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kelly Whitworth</full_name> - <first_name>Kelly</first_name> - <last_name>Whitworth</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Kelly Whitworth</fullName> + <firstName>Kelly</firstName> + <lastName>Whitworth</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>485</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>485</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Judy Thames</full_name> - <first_name>Judy</first_name> - <last_name>Thames</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Judy Thames</fullName> + <firstName>Judy</firstName> + <lastName>Thames</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>485</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>485</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Pearlie Rusek</full_name> - <first_name>Pearlie</first_name> - <last_name>Rusek</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Pearlie Rusek</fullName> + <firstName>Pearlie</firstName> + <lastName>Rusek</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>485</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>485</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Peggy Justice</full_name> - <first_name>Peggy</first_name> - <last_name>Justice</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Peggy Justice</fullName> + <firstName>Peggy</firstName> + <lastName>Justice</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>486</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>486</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>William Conner</full_name> - <first_name>William</first_name> - <last_name>Conner</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>William Conner</fullName> + <firstName>William</firstName> + <lastName>Conner</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>486</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>486</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ciro Bauer</full_name> - <first_name>Ciro</first_name> - <last_name>Bauer</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ciro Bauer</fullName> + <firstName>Ciro</firstName> + <lastName>Bauer</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>486</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>486</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Takiko Collins</full_name> - <first_name>Takiko</first_name> - <last_name>Collins</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Takiko Collins</fullName> + <firstName>Takiko</firstName> + <lastName>Collins</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>486</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>486</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Leonard Smith</full_name> - <first_name>Leonard</first_name> - <last_name>Smith</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Leonard Smith</fullName> + <firstName>Leonard</firstName> + <lastName>Smith</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>486</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>486</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lenore Yasi</full_name> - <first_name>Lenore</first_name> - <last_name>Yasi</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Lenore Yasi</fullName> + <firstName>Lenore</firstName> + <lastName>Yasi</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>487</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>487</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lester Bowman</full_name> - <first_name>Lester</first_name> - <last_name>Bowman</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Lester Bowman</fullName> + <firstName>Lester</firstName> + <lastName>Bowman</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>487</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>487</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Barbara Germanson</full_name> - <first_name>Barbara</first_name> - <last_name>Germanson</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Barbara Germanson</fullName> + <firstName>Barbara</firstName> + <lastName>Germanson</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>487</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>487</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Smith</full_name> - <first_name>Mary</first_name> - <last_name>Smith</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mary Smith</fullName> + <firstName>Mary</firstName> + <lastName>Smith</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>487</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>487</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Alice Serventi</full_name> - <first_name>Alice</first_name> - <last_name>Serventi</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Alice Serventi</fullName> + <firstName>Alice</firstName> + <lastName>Serventi</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>487</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>487</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Charles Christensen</full_name> - <first_name>Charles</first_name> - <last_name>Christensen</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Charles Christensen</fullName> + <firstName>Charles</firstName> + <lastName>Christensen</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>546</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Darrell Banks</full_name> - <first_name>Darrell</first_name> - <last_name>Banks</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Darrell Banks</fullName> + <firstName>Darrell</firstName> + <lastName>Banks</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>546</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Carlton Carlisle</full_name> - <first_name>Carlton</first_name> - <last_name>Carlisle</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Carlton Carlisle</fullName> + <firstName>Carlton</firstName> + <lastName>Carlisle</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>546</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Abe Tramel</full_name> - <first_name>Abe</first_name> - <last_name>Tramel</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Abe Tramel</fullName> + <firstName>Abe</firstName> + <lastName>Tramel</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>546</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jose Curry</full_name> - <first_name>Jose</first_name> - <last_name>Curry</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jose Curry</fullName> + <firstName>Jose</firstName> + <lastName>Curry</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>546</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Betty Haines</full_name> - <first_name>Betty</first_name> - <last_name>Haines</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Betty Haines</fullName> + <firstName>Betty</firstName> + <lastName>Haines</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>546</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Deborah Campbell</full_name> - <first_name>Deborah</first_name> - <last_name>Campbell</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Deborah Campbell</fullName> + <firstName>Deborah</firstName> + <lastName>Campbell</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>547</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Catherine Whitney</full_name> - <first_name>Catherine</first_name> - <last_name>Whitney</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Catherine Whitney</fullName> + <firstName>Catherine</firstName> + <lastName>Whitney</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>547</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Neva Mitchell</full_name> - <first_name>Neva</first_name> - <last_name>Mitchell</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Neva Mitchell</fullName> + <firstName>Neva</firstName> + <lastName>Mitchell</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>547</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Cindy Dodd</full_name> - <first_name>Cindy</first_name> - <last_name>Dodd</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Cindy Dodd</fullName> + <firstName>Cindy</firstName> + <lastName>Dodd</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>547</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Stacey Cereghino</full_name> - <first_name>Stacey</first_name> - <last_name>Cereghino</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Stacey Cereghino</fullName> + <firstName>Stacey</firstName> + <lastName>Cereghino</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>547</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Helen Meyer</full_name> - <first_name>Helen</first_name> - <last_name>Meyer</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Helen Meyer</fullName> + <firstName>Helen</firstName> + <lastName>Meyer</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>547</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Olga Stevens</full_name> - <first_name>Olga</first_name> - <last_name>Stevens</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Olga Stevens</fullName> + <firstName>Olga</firstName> + <lastName>Stevens</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>548</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Joan Campbell</full_name> - <first_name>Joan</first_name> - <last_name>Campbell</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Joan Campbell</fullName> + <firstName>Joan</firstName> + <lastName>Campbell</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>548</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Silvia Walker</full_name> - <first_name>Silvia</first_name> - <last_name>Walker</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Silvia Walker</fullName> + <firstName>Silvia</firstName> + <lastName>Walker</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>548</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mosha Pasumansky</full_name> - <first_name>Mosha</first_name> - <last_name>Pasumansky</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mosha Pasumansky</fullName> + <firstName>Mosha</firstName> + <lastName>Pasumansky</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>548</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Shawn Whitney</full_name> - <first_name>Shawn</first_name> - <last_name>Whitney</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Shawn Whitney</fullName> + <firstName>Shawn</firstName> + <lastName>Whitney</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>548</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lloyd Saunders</full_name> - <first_name>Lloyd</first_name> - <last_name>Saunders</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Lloyd Saunders</fullName> + <firstName>Lloyd</firstName> + <lastName>Saunders</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>548</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kristin Spivey</full_name> - <first_name>Kristin</first_name> - <last_name>Spivey</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Kristin Spivey</fullName> + <firstName>Kristin</firstName> + <lastName>Spivey</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>618</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>618</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kathy Marcovecchio</full_name> - <first_name>Kathy</first_name> - <last_name>Marcovecchio</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Kathy Marcovecchio</fullName> + <firstName>Kathy</firstName> + <lastName>Marcovecchio</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>621</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>621</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Twanna Evans</full_name> - <first_name>Twanna</first_name> - <last_name>Evans</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Twanna Evans</fullName> + <firstName>Twanna</firstName> + <lastName>Evans</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>621</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>621</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Judy Storjohann</full_name> - <first_name>Judy</first_name> - <last_name>Storjohann</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Judy Storjohann</fullName> + <firstName>Judy</firstName> + <lastName>Storjohann</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>622</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>622</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Denise Maccietto</full_name> - <first_name>Denise</first_name> - <last_name>Maccietto</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Denise Maccietto</fullName> + <firstName>Denise</firstName> + <lastName>Maccietto</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>622</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>622</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Pat Chambers</full_name> - <first_name>Pat</first_name> - <last_name>Chambers</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Pat Chambers</fullName> + <firstName>Pat</firstName> + <lastName>Chambers</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>287</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Stanley Bellifa</full_name> - <first_name>Stanley</first_name> - <last_name>Bellifa</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Stanley Bellifa</fullName> + <firstName>Stanley</firstName> + <lastName>Bellifa</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>287</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Samuel Johnson</full_name> - <first_name>Samuel</first_name> - <last_name>Johnson</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Samuel Johnson</fullName> + <firstName>Samuel</firstName> + <lastName>Johnson</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>287</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Janice Vrins</full_name> - <first_name>Janice</first_name> - <last_name>Vrins</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Janice Vrins</fullName> + <firstName>Janice</firstName> + <lastName>Vrins</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>287</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Christinia Mcdonald</full_name> - <first_name>Christinia</first_name> - <last_name>Mcdonald</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Christinia Mcdonald</fullName> + <firstName>Christinia</firstName> + <lastName>Mcdonald</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>287</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ole Weldon</full_name> - <first_name>Ole</first_name> - <last_name>Weldon</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ole Weldon</fullName> + <firstName>Ole</firstName> + <lastName>Weldon</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>287</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ruth Choin</full_name> - <first_name>Ruth</first_name> - <last_name>Choin</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ruth Choin</fullName> + <firstName>Ruth</firstName> + <lastName>Choin</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>288</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sharon Crow</full_name> - <first_name>Sharon</first_name> - <last_name>Crow</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Sharon Crow</fullName> + <firstName>Sharon</firstName> + <lastName>Crow</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>288</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Robert Avalos</full_name> - <first_name>Robert</first_name> - <last_name>Avalos</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Robert Avalos</fullName> + <firstName>Robert</firstName> + <lastName>Avalos</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>288</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Eric Jacobsen</full_name> - <first_name>Eric</first_name> - <last_name>Jacobsen</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Eric Jacobsen</fullName> + <firstName>Eric</firstName> + <lastName>Jacobsen</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>288</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Pamela Castro</full_name> - <first_name>Pamela</first_name> - <last_name>Castro</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Pamela Castro</fullName> + <firstName>Pamela</firstName> + <lastName>Castro</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>288</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sylvia Caldwell</full_name> - <first_name>Sylvia</first_name> - <last_name>Caldwell</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Sylvia Caldwell</fullName> + <firstName>Sylvia</firstName> + <lastName>Caldwell</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>288</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Russell Reed</full_name> - <first_name>Russell</first_name> - <last_name>Reed</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Russell Reed</fullName> + <firstName>Russell</firstName> + <lastName>Reed</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>289</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Victor Kelley</full_name> - <first_name>Victor</first_name> - <last_name>Kelley</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Victor Kelley</fullName> + <firstName>Victor</firstName> + <lastName>Kelley</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>289</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Damon Taylor</full_name> - <first_name>Damon</first_name> - <last_name>Taylor</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Damon Taylor</fullName> + <firstName>Damon</firstName> + <lastName>Taylor</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>289</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Rebecca Robinson</full_name> - <first_name>Rebecca</first_name> - <last_name>Robinson</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Rebecca Robinson</fullName> + <firstName>Rebecca</firstName> + <lastName>Robinson</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>289</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Andrea Thomsen</full_name> - <first_name>Andrea</first_name> - <last_name>Thomsen</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Andrea Thomsen</fullName> + <firstName>Andrea</firstName> + <lastName>Thomsen</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>289</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Douglas Baldwin</full_name> - <first_name>Douglas</first_name> - <last_name>Baldwin</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Douglas Baldwin</fullName> + <firstName>Douglas</firstName> + <lastName>Baldwin</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>289</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Carol Elliott</full_name> - <first_name>Carol</first_name> - <last_name>Elliott</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Carol Elliott</fullName> + <firstName>Carol</firstName> + <lastName>Elliott</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>359</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>359</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Alice Kesterson</full_name> - <first_name>Alice</first_name> - <last_name>Kesterson</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Alice Kesterson</fullName> + <firstName>Alice</firstName> + <lastName>Kesterson</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>363</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>363</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>J. Phillip Alexander</full_name> - <first_name>J. Phillip</first_name> - <last_name>Alexander</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>J. Phillip Alexander</fullName> + <firstName>J. Phillip</firstName> + <lastName>Alexander</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>363</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>363</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>R. Morgan Mendoza</full_name> - <first_name>R. Morgan</first_name> - <last_name>Mendoza</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>R. Morgan Mendoza</fullName> + <firstName>R. Morgan</firstName> + <lastName>Mendoza</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>363</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>363</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Pam Herrick</full_name> - <first_name>Pam</first_name> - <last_name>Herrick</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Pam Herrick</fullName> + <firstName>Pam</firstName> + <lastName>Herrick</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>363</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>363</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>James McCoy</full_name> - <first_name>James</first_name> - <last_name>McCoy</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>James McCoy</fullName> + <firstName>James</firstName> + <lastName>McCoy</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>363</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>363</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Rossane Thoreson</full_name> - <first_name>Rossane</first_name> - <last_name>Thoreson</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Rossane Thoreson</fullName> + <firstName>Rossane</firstName> + <lastName>Thoreson</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>364</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>364</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Victoria Snowden</full_name> - <first_name>Victoria</first_name> - <last_name>Snowden</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Victoria Snowden</fullName> + <firstName>Victoria</firstName> + <lastName>Snowden</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>364</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>364</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Donald Blanton</full_name> - <first_name>Donald</first_name> - <last_name>Blanton</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Donald Blanton</fullName> + <firstName>Donald</firstName> + <lastName>Blanton</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>364</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>364</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Cornett Gibbens</full_name> - <first_name>Cornett</first_name> - <last_name>Gibbens</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Cornett Gibbens</fullName> + <firstName>Cornett</firstName> + <lastName>Gibbens</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>364</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>364</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Paul Alcorn</full_name> - <first_name>Paul</first_name> - <last_name>Alcorn</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Paul Alcorn</fullName> + <firstName>Paul</firstName> + <lastName>Alcorn</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>364</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>364</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Virginia Miller</full_name> - <first_name>Virginia</first_name> - <last_name>Miller</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Virginia Miller</fullName> + <firstName>Virginia</firstName> + <lastName>Miller</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>365</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>365</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Henry Campen</full_name> - <first_name>Henry</first_name> - <last_name>Campen</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Henry Campen</fullName> + <firstName>Henry</firstName> + <lastName>Campen</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>365</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>365</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Connie Coffman</full_name> - <first_name>Connie</first_name> - <last_name>Coffman</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Connie Coffman</fullName> + <firstName>Connie</firstName> + <lastName>Coffman</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>365</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>365</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jared Bustamante</full_name> - <first_name>Jared</first_name> - <last_name>Bustamante</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jared Bustamante</fullName> + <firstName>Jared</firstName> + <lastName>Bustamante</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>365</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>365</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Carla Eldridge</full_name> - <first_name>Carla</first_name> - <last_name>Eldridge</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Carla Eldridge</fullName> + <firstName>Carla</firstName> + <lastName>Eldridge</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>365</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>365</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Clara Morris</full_name> - <first_name>Clara</first_name> - <last_name>Morris</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Clara Morris</fullName> + <firstName>Clara</firstName> + <lastName>Morris</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1020</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>1020</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kerry Price</full_name> - <first_name>Kerry</first_name> - <last_name>Price</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Kerry Price</fullName> + <firstName>Kerry</firstName> + <lastName>Price</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1020</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1020</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Joyce Marez</full_name> - <first_name>Joyce</first_name> - <last_name>Marez</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Joyce Marez</fullName> + <firstName>Joyce</firstName> + <lastName>Marez</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1020</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1020</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Eleanor Wachterman</full_name> - <first_name>Eleanor</first_name> - <last_name>Wachterman</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Eleanor Wachterman</fullName> + <firstName>Eleanor</firstName> + <lastName>Wachterman</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1020</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1020</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jason Usnick</full_name> - <first_name>Jason</first_name> - <last_name>Usnick</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jason Usnick</fullName> + <firstName>Jason</firstName> + <lastName>Usnick</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1021</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>1021</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mike Brown</full_name> - <first_name>Mike</first_name> - <last_name>Brown</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Mike Brown</fullName> + <firstName>Mike</firstName> + <lastName>Brown</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1021</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1021</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ronald Galich</full_name> - <first_name>Ronald</first_name> - <last_name>Galich</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ronald Galich</fullName> + <firstName>Ronald</firstName> + <lastName>Galich</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1021</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1021</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gayle Watson</full_name> - <first_name>Gayle</first_name> - <last_name>Watson</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Gayle Watson</fullName> + <firstName>Gayle</firstName> + <lastName>Watson</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1022</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>1022</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Phyllis Ardell</full_name> - <first_name>Phyllis</first_name> - <last_name>Ardell</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Phyllis Ardell</fullName> + <firstName>Phyllis</firstName> + <lastName>Ardell</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1022</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>1022</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Brian Nakauchi</full_name> - <first_name>Brian</first_name> - <last_name>Nakauchi</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Brian Nakauchi</fullName> + <firstName>Brian</firstName> + <lastName>Nakauchi</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1022</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1022</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Marie Moya</full_name> - <first_name>Marie</first_name> - <last_name>Moya</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Marie Moya</fullName> + <firstName>Marie</firstName> + <lastName>Moya</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>712</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>712</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Nicky Chesnut</full_name> - <first_name>Nicky</first_name> - <last_name>Chesnut</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Nicky Chesnut</fullName> + <firstName>Nicky</firstName> + <lastName>Chesnut</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>712</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>712</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Ortiz</full_name> - <first_name>John</first_name> - <last_name>Ortiz</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>John Ortiz</fullName> + <firstName>John</firstName> + <lastName>Ortiz</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>713</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>713</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Stacey Tearpak</full_name> - <first_name>Stacey</first_name> - <last_name>Tearpak</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Stacey Tearpak</fullName> + <firstName>Stacey</firstName> + <lastName>Tearpak</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>713</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>713</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Alberto Baltazar</full_name> - <first_name>Alberto</first_name> - <last_name>Baltazar</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Alberto Baltazar</fullName> + <firstName>Alberto</firstName> + <lastName>Baltazar</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>730</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>730</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Onetha Higgs</full_name> - <first_name>Onetha</first_name> - <last_name>Higgs</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Onetha Higgs</fullName> + <firstName>Onetha</firstName> + <lastName>Higgs</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>730</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>730</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Della Demott Jr</full_name> - <first_name>Della</first_name> - <last_name>Demott Jr</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Della Demott Jr</fullName> + <firstName>Della</firstName> + <lastName>Demott Jr</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>731</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>731</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jane Carmichael</full_name> - <first_name>Jane</first_name> - <last_name>Carmichael</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jane Carmichael</fullName> + <firstName>Jane</firstName> + <lastName>Carmichael</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>731</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>731</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Curtis Howard</full_name> - <first_name>Curtis</first_name> - <last_name>Howard</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Curtis Howard</fullName> + <firstName>Curtis</firstName> + <lastName>Howard</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>749</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Shannon Elliott</full_name> - <first_name>Shannon</first_name> - <last_name>Elliott</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Shannon Elliott</fullName> + <firstName>Shannon</firstName> + <lastName>Elliott</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>749</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Andrew Kobylinski</full_name> - <first_name>Andrew</first_name> - <last_name>Kobylinski</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Andrew Kobylinski</fullName> + <firstName>Andrew</firstName> + <lastName>Kobylinski</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>749</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dora Verdad</full_name> - <first_name>Dora</first_name> - <last_name>Verdad</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Dora Verdad</fullName> + <firstName>Dora</firstName> + <lastName>Verdad</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>749</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dave Browning</full_name> - <first_name>Dave</first_name> - <last_name>Browning</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Dave Browning</fullName> + <firstName>Dave</firstName> + <lastName>Browning</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>749</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Robert Lyeba</full_name> - <first_name>Robert</first_name> - <last_name>Lyeba</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Robert Lyeba</fullName> + <firstName>Robert</firstName> + <lastName>Lyeba</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>749</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jean Handley</full_name> - <first_name>Jean</first_name> - <last_name>Handley</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jean Handley</fullName> + <firstName>Jean</firstName> + <lastName>Handley</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>750</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gary Meyerhoff</full_name> - <first_name>Gary</first_name> - <last_name>Meyerhoff</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Gary Meyerhoff</fullName> + <firstName>Gary</firstName> + <lastName>Meyerhoff</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>750</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Shane Vigil</full_name> - <first_name>Shane</first_name> - <last_name>Vigil</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Shane Vigil</fullName> + <firstName>Shane</firstName> + <lastName>Vigil</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>750</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dominic Gash</full_name> - <first_name>Dominic</first_name> - <last_name>Gash</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Dominic Gash</fullName> + <firstName>Dominic</firstName> + <lastName>Gash</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>750</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jane Greer</full_name> - <first_name>Jane</first_name> - <last_name>Greer</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jane Greer</fullName> + <firstName>Jane</firstName> + <lastName>Greer</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>750</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Payton Benson</full_name> - <first_name>Payton</first_name> - <last_name>Benson</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Payton Benson</fullName> + <firstName>Payton</firstName> + <lastName>Benson</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>750</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Joseph Mitzner</full_name> - <first_name>Joseph</first_name> - <last_name>Mitzner</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Joseph Mitzner</fullName> + <firstName>Joseph</firstName> + <lastName>Mitzner</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>751</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Willie Brooks</full_name> - <first_name>Willie</first_name> - <last_name>Brooks</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Willie Brooks</fullName> + <firstName>Willie</firstName> + <lastName>Brooks</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>751</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ann Hass</full_name> - <first_name>Ann</first_name> - <last_name>Hass</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ann Hass</fullName> + <firstName>Ann</firstName> + <lastName>Hass</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>751</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Amir Netz</full_name> - <first_name>Amir</first_name> - <last_name>Netz</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Amir Netz</fullName> + <firstName>Amir</firstName> + <lastName>Netz</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>751</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Geneva Hill</full_name> - <first_name>Geneva</first_name> - <last_name>Hill</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Geneva Hill</fullName> + <firstName>Geneva</firstName> + <lastName>Hill</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>751</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gary Drury</full_name> - <first_name>Gary</first_name> - <last_name>Drury</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Gary Drury</fullName> + <firstName>Gary</firstName> + <lastName>Drury</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>751</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Josh Mullins</full_name> - <first_name>Josh</first_name> - <last_name>Mullins</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Josh Mullins</fullName> + <firstName>Josh</firstName> + <lastName>Mullins</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>822</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>822</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Catherine Maes</full_name> - <first_name>Catherine</first_name> - <last_name>Maes</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Catherine Maes</fullName> + <firstName>Catherine</firstName> + <lastName>Maes</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>822</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>822</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Renee Trujillo</full_name> - <first_name>Renee</first_name> - <last_name>Trujillo</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Renee Trujillo</fullName> + <firstName>Renee</firstName> + <lastName>Trujillo</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>822</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>822</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Isabel Barrington</full_name> - <first_name>Isabel</first_name> - <last_name>Barrington</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Isabel Barrington</fullName> + <firstName>Isabel</firstName> + <lastName>Barrington</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>822</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>822</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Donna Zuluaga</full_name> - <first_name>Donna</first_name> - <last_name>Zuluaga</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Donna Zuluaga</fullName> + <firstName>Donna</firstName> + <lastName>Zuluaga</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>822</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>822</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Parker Abo</full_name> - <first_name>Parker</first_name> - <last_name>Abo</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Parker Abo</fullName> + <firstName>Parker</firstName> + <lastName>Abo</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>823</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>823</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jacob Azzolino</full_name> - <first_name>Jacob</first_name> - <last_name>Azzolino</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jacob Azzolino</fullName> + <firstName>Jacob</firstName> + <lastName>Azzolino</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>823</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>823</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Grant Archuleta</full_name> - <first_name>Grant</first_name> - <last_name>Archuleta</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Grant Archuleta</fullName> + <firstName>Grant</firstName> + <lastName>Archuleta</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>823</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>823</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Melvin Campos</full_name> - <first_name>Melvin</first_name> - <last_name>Campos</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Melvin Campos</fullName> + <firstName>Melvin</firstName> + <lastName>Campos</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>823</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>823</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gary Unfried</full_name> - <first_name>Gary</first_name> - <last_name>Unfried</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Gary Unfried</fullName> + <firstName>Gary</firstName> + <lastName>Unfried</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>823</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>823</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Roberta Bozeman</full_name> - <first_name>Roberta</first_name> - <last_name>Bozeman</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Roberta Bozeman</fullName> + <firstName>Roberta</firstName> + <lastName>Bozeman</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>824</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>824</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jeremy Kassab</full_name> - <first_name>Jeremy</first_name> - <last_name>Kassab</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jeremy Kassab</fullName> + <firstName>Jeremy</firstName> + <lastName>Kassab</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>824</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>824</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Phyllis Enlow</full_name> - <first_name>Phyllis</first_name> - <last_name>Enlow</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Phyllis Enlow</fullName> + <firstName>Phyllis</firstName> + <lastName>Enlow</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>824</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>824</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gene Lee</full_name> - <first_name>Gene</first_name> - <last_name>Lee</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Gene Lee</fullName> + <firstName>Gene</firstName> + <lastName>Lee</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>824</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>824</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Linda Skapinok</full_name> - <first_name>Linda</first_name> - <last_name>Skapinok</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Linda Skapinok</fullName> + <firstName>Linda</firstName> + <lastName>Skapinok</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>824</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>824</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Joseph Thompson</full_name> - <first_name>Joseph</first_name> - <last_name>Thompson</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Joseph Thompson</fullName> + <firstName>Joseph</firstName> + <lastName>Thompson</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>882</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>882</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Eddie Gillmore</full_name> - <first_name>Eddie</first_name> - <last_name>Gillmore</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Eddie Gillmore</fullName> + <firstName>Eddie</firstName> + <lastName>Gillmore</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>886</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>886</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Hazel Mixon</full_name> - <first_name>Hazel</first_name> - <last_name>Mixon</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Hazel Mixon</fullName> + <firstName>Hazel</firstName> + <lastName>Mixon</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>886</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>886</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Tommerup</full_name> - <first_name>John</first_name> - <last_name>Tommerup</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>John Tommerup</fullName> + <firstName>John</firstName> + <lastName>Tommerup</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>886</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>886</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Emilio Martinez</full_name> - <first_name>Emilio</first_name> - <last_name>Martinez</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Emilio Martinez</fullName> + <firstName>Emilio</firstName> + <lastName>Martinez</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>886</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>886</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Michael Glancy</full_name> - <first_name>Michael</first_name> - <last_name>Glancy</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Michael Glancy</fullName> + <firstName>Michael</firstName> + <lastName>Glancy</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>886</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>886</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>M. Cappa</full_name> - <first_name>M.</first_name> - <last_name>Cappa</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>M. Cappa</fullName> + <firstName>M.</firstName> + <lastName>Cappa</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>887</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>887</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jonathan Netz</full_name> - <first_name>Jonathan</first_name> - <last_name>Netz</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jonathan Netz</fullName> + <firstName>Jonathan</firstName> + <lastName>Netz</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>887</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>887</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Teresa Blanc</full_name> - <first_name>Teresa</first_name> - <last_name>Blanc</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Teresa Blanc</fullName> + <firstName>Teresa</firstName> + <lastName>Blanc</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>887</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>887</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>William Collins</full_name> - <first_name>William</first_name> - <last_name>Collins</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>William Collins</fullName> + <firstName>William</firstName> + <lastName>Collins</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>887</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>887</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lou Scroggins</full_name> - <first_name>Lou</first_name> - <last_name>Scroggins</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Lou Scroggins</fullName> + <firstName>Lou</firstName> + <lastName>Scroggins</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>887</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>887</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Hazel Marsh</full_name> - <first_name>Hazel</first_name> - <last_name>Marsh</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Hazel Marsh</fullName> + <firstName>Hazel</firstName> + <lastName>Marsh</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>888</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>888</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mildred Robinson</full_name> - <first_name>Mildred</first_name> - <last_name>Robinson</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Mildred Robinson</fullName> + <firstName>Mildred</firstName> + <lastName>Robinson</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>888</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>888</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Susan Cox</full_name> - <first_name>Susan</first_name> - <last_name>Cox</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Susan Cox</fullName> + <firstName>Susan</firstName> + <lastName>Cox</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>888</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>888</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Janine Clare</full_name> - <first_name>Janine</first_name> - <last_name>Clare</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Janine Clare</fullName> + <firstName>Janine</firstName> + <lastName>Clare</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>888</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>888</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>James Barnurn</full_name> - <first_name>James</first_name> - <last_name>Barnurn</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>James Barnurn</fullName> + <firstName>James</firstName> + <lastName>Barnurn</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>888</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>888</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Pete Fisher</full_name> - <first_name>Pete</first_name> - <last_name>Fisher</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Pete Fisher</fullName> + <firstName>Pete</firstName> + <lastName>Fisher</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>947</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ida Dabit</full_name> - <first_name>Ida</first_name> - <last_name>Dabit</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ida Dabit</fullName> + <firstName>Ida</firstName> + <lastName>Dabit</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>947</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Shawn Turner</full_name> - <first_name>Shawn</first_name> - <last_name>Turner</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Shawn Turner</fullName> + <firstName>Shawn</firstName> + <lastName>Turner</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>947</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mike Clark</full_name> - <first_name>Mike</first_name> - <last_name>Clark</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Mike Clark</fullName> + <firstName>Mike</firstName> + <lastName>Clark</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>947</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Arlene Schimanski</full_name> - <first_name>Arlene</first_name> - <last_name>Schimanski</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Arlene Schimanski</fullName> + <firstName>Arlene</firstName> + <lastName>Schimanski</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>947</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Carolyn Alumbaugh</full_name> - <first_name>Carolyn</first_name> - <last_name>Alumbaugh</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Carolyn Alumbaugh</fullName> + <firstName>Carolyn</firstName> + <lastName>Alumbaugh</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>947</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Michael Benson</full_name> - <first_name>Michael</first_name> - <last_name>Benson</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Michael Benson</fullName> + <firstName>Michael</firstName> + <lastName>Benson</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>948</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ted Rusch</full_name> - <first_name>Ted</first_name> - <last_name>Rusch</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ted Rusch</fullName> + <firstName>Ted</firstName> + <lastName>Rusch</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>948</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>David Cocadiz</full_name> - <first_name>David</first_name> - <last_name>Cocadiz</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>David Cocadiz</fullName> + <firstName>David</firstName> + <lastName>Cocadiz</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>948</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lorraine Mcgough</full_name> - <first_name>Lorraine</first_name> - <last_name>Mcgough</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Lorraine Mcgough</fullName> + <firstName>Lorraine</firstName> + <lastName>Mcgough</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>948</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Bennie King</full_name> - <first_name>Bennie</first_name> - <last_name>King</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Bennie King</fullName> + <firstName>Bennie</firstName> + <lastName>King</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>948</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Melissa Smith</full_name> - <first_name>Melissa</first_name> - <last_name>Smith</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Melissa Smith</fullName> + <firstName>Melissa</firstName> + <lastName>Smith</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>948</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>M. Patricia Campbell</full_name> - <first_name>M. Patricia</first_name> - <last_name>Campbell</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>M. Patricia Campbell</fullName> + <firstName>M. Patricia</firstName> + <lastName>Campbell</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>949</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Selene Watson</full_name> - <first_name>Selene</first_name> - <last_name>Watson</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Selene Watson</fullName> + <firstName>Selene</firstName> + <lastName>Watson</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>949</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Linda Anderson</full_name> - <first_name>Linda</first_name> - <last_name>Anderson</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Linda Anderson</fullName> + <firstName>Linda</firstName> + <lastName>Anderson</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>949</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Elisabeth Duncan</full_name> - <first_name>Elisabeth</first_name> - <last_name>Duncan</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Elisabeth Duncan</fullName> + <firstName>Elisabeth</firstName> + <lastName>Duncan</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>949</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>French Wilson</full_name> - <first_name>French</first_name> - <last_name>Wilson</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>French Wilson</fullName> + <firstName>French</firstName> + <lastName>Wilson</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>949</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mildred Morrow</full_name> - <first_name>Mildred</first_name> - <last_name>Morrow</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Mildred Morrow</fullName> + <firstName>Mildred</firstName> + <lastName>Morrow</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>949</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Williamson</full_name> - <first_name>John</first_name> - <last_name>Williamson</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>John Williamson</fullName> + <firstName>John</firstName> + <lastName>Williamson</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1067</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Eugene Goodwater</full_name> - <first_name>Eugene</first_name> - <last_name>Goodwater</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Eugene Goodwater</fullName> + <firstName>Eugene</firstName> + <lastName>Goodwater</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1067</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Paula Tomlinson</full_name> - <first_name>Paula</first_name> - <last_name>Tomlinson</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Paula Tomlinson</fullName> + <firstName>Paula</firstName> + <lastName>Tomlinson</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1067</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Shauneen Springate</full_name> - <first_name>Shauneen</first_name> - <last_name>Springate</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Shauneen Springate</fullName> + <firstName>Shauneen</firstName> + <lastName>Springate</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1067</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>James Delhay</full_name> - <first_name>James</first_name> - <last_name>Delhay</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>James Delhay</fullName> + <firstName>James</firstName> + <lastName>Delhay</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1067</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Linda Petrick</full_name> - <first_name>Linda</first_name> - <last_name>Petrick</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Linda Petrick</fullName> + <firstName>Linda</firstName> + <lastName>Petrick</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1067</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Bernard Maestas</full_name> - <first_name>Bernard</first_name> - <last_name>Maestas</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Bernard Maestas</fullName> + <firstName>Bernard</firstName> + <lastName>Maestas</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1068</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Thomas Balchuck</full_name> - <first_name>Thomas</first_name> - <last_name>Balchuck</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Thomas Balchuck</fullName> + <firstName>Thomas</firstName> + <lastName>Balchuck</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1068</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Valerie Waller</full_name> - <first_name>Valerie</first_name> - <last_name>Waller</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Valerie Waller</fullName> + <firstName>Valerie</firstName> + <lastName>Waller</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1068</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Beatrice Barney</full_name> - <first_name>Beatrice</first_name> - <last_name>Barney</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Beatrice Barney</fullName> + <firstName>Beatrice</firstName> + <lastName>Barney</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1068</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Emily Gerber</full_name> - <first_name>Emily</first_name> - <last_name>Gerber</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Emily Gerber</fullName> + <firstName>Emily</firstName> + <lastName>Gerber</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1068</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Darlyn Grayson</full_name> - <first_name>Darlyn</first_name> - <last_name>Grayson</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Darlyn Grayson</fullName> + <firstName>Darlyn</firstName> + <lastName>Grayson</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1068</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Rachel Purcell</full_name> - <first_name>Rachel</first_name> - <last_name>Purcell</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Rachel Purcell</fullName> + <firstName>Rachel</firstName> + <lastName>Purcell</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1069</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Steve Eurich</full_name> - <first_name>Steve</first_name> - <last_name>Eurich</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Steve Eurich</fullName> + <firstName>Steve</firstName> + <lastName>Eurich</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1069</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Pierson</full_name> - <first_name>Mary</first_name> - <last_name>Pierson</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Mary Pierson</fullName> + <firstName>Mary</firstName> + <lastName>Pierson</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1069</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Leo Jones</full_name> - <first_name>Leo</first_name> - <last_name>Jones</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Leo Jones</fullName> + <firstName>Leo</firstName> + <lastName>Jones</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1069</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Nancy Beatty</full_name> - <first_name>Nancy</first_name> - <last_name>Beatty</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Nancy Beatty</fullName> + <firstName>Nancy</firstName> + <lastName>Beatty</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1069</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Clara McNight</full_name> - <first_name>Clara</first_name> - <last_name>McNight</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Clara McNight</fullName> + <firstName>Clara</firstName> + <lastName>McNight</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1069</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Michael Swartwood</full_name> - <first_name>Michael</first_name> - <last_name>Swartwood</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Michael Swartwood</fullName> + <firstName>Michael</firstName> + <lastName>Swartwood</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1139</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>1139</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Elizabeth Anderson</full_name> - <first_name>Elizabeth</first_name> - <last_name>Anderson</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Elizabeth Anderson</fullName> + <firstName>Elizabeth</firstName> + <lastName>Anderson</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1139</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1139</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jacqueline Cutwright</full_name> - <first_name>Jacqueline</first_name> - <last_name>Cutwright</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jacqueline Cutwright</fullName> + <firstName>Jacqueline</firstName> + <lastName>Cutwright</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1140</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>1140</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sharon Bishop</full_name> - <first_name>Sharon</first_name> - <last_name>Bishop</last_name> - <position_title>Store Temporary Checker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Sharon Bishop</fullName> + <firstName>Sharon</firstName> + <lastName>Bishop</lastName> + <positionTitle>Store Temporary Checker</positionTitle><Department><departmentDescription>Store Temporary Checker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1140</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1140</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> </Position> <Position> - <position_title>Store Permanent Stocker</position_title> - <pay_type>Monthly</pay_type> - <min_scale>3400</min_scale> - <max_scale>6700</max_scale> - <management_role>Store Full Time Staff</management_role> + <positionTitle>Store Permanent Stocker</positionTitle> + <payType>Monthly</payType> + <minScale>3400</minScale> + <maxScale>6700</maxScale> + <managementRole>Store Full Time Staff</managementRole> <Employee> - <full_name>Melvin Glass</full_name> - <first_name>Melvin</first_name> - <last_name>Glass</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>18.04.1946</birth_date> - <hire_date>25.01.1995</hire_date> - <end_date></end_date> + <fullName>Melvin Glass</fullName> + <firstName>Melvin</firstName> + <lastName>Glass</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>18.04.1946</birthDate> + <hireDate>25.01.1995</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>54</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>54</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kristin Cohen</full_name> - <first_name>Kristin</first_name> - <last_name>Cohen</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>18.04.1946</birth_date> - <hire_date>25.01.1995</hire_date> - <end_date></end_date> + <fullName>Kristin Cohen</fullName> + <firstName>Kristin</firstName> + <lastName>Cohen</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>18.04.1946</birthDate> + <hireDate>25.01.1995</hireDate> + <endDate></endDate> <salary>4800</salary> - <supervisor_id>54</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>54</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Susan Kharman</full_name> - <first_name>Susan</first_name> - <last_name>Kharman</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>18.04.1946</birth_date> - <hire_date>25.01.1995</hire_date> - <end_date></end_date> + <fullName>Susan Kharman</fullName> + <firstName>Susan</firstName> + <lastName>Kharman</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>18.04.1946</birthDate> + <hireDate>25.01.1995</hireDate> + <endDate></endDate> <salary>3700</salary> - <supervisor_id>54</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>54</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gordon Kirschner</full_name> - <first_name>Gordon</first_name> - <last_name>Kirschner</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>18.04.1946</birth_date> - <hire_date>25.01.1995</hire_date> - <end_date></end_date> + <fullName>Gordon Kirschner</fullName> + <firstName>Gordon</firstName> + <lastName>Kirschner</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>18.04.1946</birthDate> + <hireDate>25.01.1995</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>54</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>54</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>William Burger</full_name> - <first_name>William</first_name> - <last_name>Burger</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>18.04.1946</birth_date> - <hire_date>25.01.1995</hire_date> - <end_date></end_date> + <fullName>William Burger</fullName> + <firstName>William</firstName> + <lastName>Burger</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>18.04.1946</birthDate> + <hireDate>25.01.1995</hireDate> + <endDate></endDate> <salary>5200</salary> - <supervisor_id>55</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>55</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lana Blau</full_name> - <first_name>Lana</first_name> - <last_name>Blau</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>18.04.1946</birth_date> - <hire_date>25.01.1995</hire_date> - <end_date></end_date> + <fullName>Lana Blau</fullName> + <firstName>Lana</firstName> + <lastName>Blau</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>18.04.1946</birthDate> + <hireDate>25.01.1995</hireDate> + <endDate></endDate> <salary>4650</salary> - <supervisor_id>55</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>55</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Donna Derby</full_name> - <first_name>Donna</first_name> - <last_name>Derby</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>18.04.1946</birth_date> - <hire_date>25.01.1995</hire_date> - <end_date></end_date> + <fullName>Donna Derby</fullName> + <firstName>Donna</firstName> + <lastName>Derby</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>18.04.1946</birthDate> + <hireDate>25.01.1995</hireDate> + <endDate></endDate> <salary>4550</salary> - <supervisor_id>55</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>55</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kathleen Thomson</full_name> - <first_name>Kathleen</first_name> - <last_name>Thomson</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>18.04.1946</birth_date> - <hire_date>25.01.1995</hire_date> - <end_date></end_date> + <fullName>Kathleen Thomson</fullName> + <firstName>Kathleen</firstName> + <lastName>Thomson</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>18.04.1946</birthDate> + <hireDate>25.01.1995</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>56</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>56</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gabriel Walton</full_name> - <first_name>Gabriel</first_name> - <last_name>Walton</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>18.04.1946</birth_date> - <hire_date>25.01.1995</hire_date> - <end_date></end_date> + <fullName>Gabriel Walton</fullName> + <firstName>Gabriel</firstName> + <lastName>Walton</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>18.04.1946</birthDate> + <hireDate>25.01.1995</hireDate> + <endDate></endDate> <salary>4700</salary> - <supervisor_id>56</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>56</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Bishop Meastas</full_name> - <first_name>Bishop</first_name> - <last_name>Meastas</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>18.04.1946</birth_date> - <hire_date>25.01.1995</hire_date> - <end_date></end_date> + <fullName>Bishop Meastas</fullName> + <firstName>Bishop</firstName> + <lastName>Meastas</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>18.04.1946</birthDate> + <hireDate>25.01.1995</hireDate> + <endDate></endDate> <salary>4500</salary> - <supervisor_id>56</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>56</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sarah Jimenez</full_name> - <first_name>Sarah</first_name> - <last_name>Jimenez</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Sarah Jimenez</fullName> + <firstName>Sarah</firstName> + <lastName>Jimenez</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>226</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>226</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Darwin Malaby</full_name> - <first_name>Darwin</first_name> - <last_name>Malaby</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Darwin Malaby</fullName> + <firstName>Darwin</firstName> + <lastName>Malaby</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4800</salary> - <supervisor_id>226</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>226</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Pamela Caldwell</full_name> - <first_name>Pamela</first_name> - <last_name>Caldwell</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Pamela Caldwell</fullName> + <firstName>Pamela</firstName> + <lastName>Caldwell</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>3700</salary> - <supervisor_id>226</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>226</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Roger Tinder</full_name> - <first_name>Roger</first_name> - <last_name>Tinder</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Roger Tinder</fullName> + <firstName>Roger</firstName> + <lastName>Tinder</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>226</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>226</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Joseph Kropff</full_name> - <first_name>Joseph</first_name> - <last_name>Kropff</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Joseph Kropff</fullName> + <firstName>Joseph</firstName> + <lastName>Kropff</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>5200</salary> - <supervisor_id>227</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>227</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mimi Worsham</full_name> - <first_name>Mimi</first_name> - <last_name>Worsham</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mimi Worsham</fullName> + <firstName>Mimi</firstName> + <lastName>Worsham</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4650</salary> - <supervisor_id>227</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>227</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ruth Bernal</full_name> - <first_name>Ruth</first_name> - <last_name>Bernal</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ruth Bernal</fullName> + <firstName>Ruth</firstName> + <lastName>Bernal</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4550</salary> - <supervisor_id>227</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>227</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Yolanda Zimmerman</full_name> - <first_name>Yolanda</first_name> - <last_name>Zimmerman</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Yolanda Zimmerman</fullName> + <firstName>Yolanda</firstName> + <lastName>Zimmerman</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>227</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>227</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sandra Evans</full_name> - <first_name>Sandra</first_name> - <last_name>Evans</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Sandra Evans</fullName> + <firstName>Sandra</firstName> + <lastName>Evans</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4700</salary> - <supervisor_id>228</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>228</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Virginia Bowman</full_name> - <first_name>Virginia</first_name> - <last_name>Bowman</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Virginia Bowman</fullName> + <firstName>Virginia</firstName> + <lastName>Bowman</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4500</salary> - <supervisor_id>228</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>228</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Coleman</full_name> - <first_name>Mary</first_name> - <last_name>Coleman</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mary Coleman</fullName> + <firstName>Mary</firstName> + <lastName>Coleman</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>228</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>228</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Shirley Wilbert</full_name> - <first_name>Shirley</first_name> - <last_name>Wilbert</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Shirley Wilbert</fullName> + <firstName>Shirley</firstName> + <lastName>Wilbert</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>101</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>101</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jeremy Ingram</full_name> - <first_name>Jeremy</first_name> - <last_name>Ingram</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jeremy Ingram</fullName> + <firstName>Jeremy</firstName> + <lastName>Ingram</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4800</salary> - <supervisor_id>101</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>101</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sharon Haddix</full_name> - <first_name>Sharon</first_name> - <last_name>Haddix</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Sharon Haddix</fullName> + <firstName>Sharon</firstName> + <lastName>Haddix</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>3700</salary> - <supervisor_id>101</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>101</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Leland Thomas</full_name> - <first_name>Leland</first_name> - <last_name>Thomas</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Leland Thomas</fullName> + <firstName>Leland</firstName> + <lastName>Thomas</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>101</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>101</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Don Wilson</full_name> - <first_name>Don</first_name> - <last_name>Wilson</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Don Wilson</fullName> + <firstName>Don</firstName> + <lastName>Wilson</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>5200</salary> - <supervisor_id>102</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>102</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Wayne Stovall</full_name> - <first_name>Wayne</first_name> - <last_name>Stovall</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Wayne Stovall</fullName> + <firstName>Wayne</firstName> + <lastName>Stovall</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4650</salary> - <supervisor_id>102</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>102</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Douglas Russell</full_name> - <first_name>Douglas</first_name> - <last_name>Russell</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Douglas Russell</fullName> + <firstName>Douglas</firstName> + <lastName>Russell</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4550</salary> - <supervisor_id>102</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>102</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Maureen Doose</full_name> - <first_name>Maureen</first_name> - <last_name>Doose</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Maureen Doose</fullName> + <firstName>Maureen</firstName> + <lastName>Doose</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>102</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>102</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ann Morreale</full_name> - <first_name>Ann</first_name> - <last_name>Morreale</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ann Morreale</fullName> + <firstName>Ann</firstName> + <lastName>Morreale</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4700</salary> - <supervisor_id>103</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>103</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sheila Rupert</full_name> - <first_name>Sheila</first_name> - <last_name>Rupert</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Sheila Rupert</fullName> + <firstName>Sheila</firstName> + <lastName>Rupert</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4500</salary> - <supervisor_id>103</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>103</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ashley Pierson</full_name> - <first_name>Ashley</first_name> - <last_name>Pierson</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ashley Pierson</fullName> + <firstName>Ashley</firstName> + <lastName>Pierson</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>103</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>103</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ivan Nickels</full_name> - <first_name>Ivan</first_name> - <last_name>Nickels</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ivan Nickels</fullName> + <firstName>Ivan</firstName> + <lastName>Nickels</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4600</salary> - <supervisor_id>103</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>103</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Loni Sosa</full_name> - <first_name>Loni</first_name> - <last_name>Sosa</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Loni Sosa</fullName> + <firstName>Loni</firstName> + <lastName>Sosa</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>162</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>162</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Marie Mann</full_name> - <first_name>Marie</first_name> - <last_name>Mann</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Marie Mann</fullName> + <firstName>Marie</firstName> + <lastName>Mann</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4800</salary> - <supervisor_id>162</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>162</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Michael Prater</full_name> - <first_name>Michael</first_name> - <last_name>Prater</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Michael Prater</fullName> + <firstName>Michael</firstName> + <lastName>Prater</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>3700</salary> - <supervisor_id>162</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>162</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Karen Ansaldo</full_name> - <first_name>Karen</first_name> - <last_name>Ansaldo</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Karen Ansaldo</fullName> + <firstName>Karen</firstName> + <lastName>Ansaldo</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>162</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>162</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lance Caijem</full_name> - <first_name>Lance</first_name> - <last_name>Caijem</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Lance Caijem</fullName> + <firstName>Lance</firstName> + <lastName>Caijem</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>5200</salary> - <supervisor_id>163</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>163</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Pamela Yates</full_name> - <first_name>Pamela</first_name> - <last_name>Yates</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Pamela Yates</fullName> + <firstName>Pamela</firstName> + <lastName>Yates</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4650</salary> - <supervisor_id>163</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>163</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Iwona Turner</full_name> - <first_name>Iwona</first_name> - <last_name>Turner</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Iwona Turner</fullName> + <firstName>Iwona</firstName> + <lastName>Turner</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4550</salary> - <supervisor_id>163</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>163</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Fulcher</full_name> - <first_name>Mary</first_name> - <last_name>Fulcher</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mary Fulcher</fullName> + <firstName>Mary</firstName> + <lastName>Fulcher</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>163</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>163</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Raymond Berg</full_name> - <first_name>Raymond</first_name> - <last_name>Berg</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Raymond Berg</fullName> + <firstName>Raymond</firstName> + <lastName>Berg</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4700</salary> - <supervisor_id>164</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>164</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ramona Lopez</full_name> - <first_name>Ramona</first_name> - <last_name>Lopez</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ramona Lopez</fullName> + <firstName>Ramona</firstName> + <lastName>Lopez</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4500</salary> - <supervisor_id>164</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>164</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Helen Valdivia</full_name> - <first_name>Helen</first_name> - <last_name>Valdivia</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Helen Valdivia</fullName> + <firstName>Helen</firstName> + <lastName>Valdivia</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>164</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>164</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Beverly Cardoza</full_name> - <first_name>Beverly</first_name> - <last_name>Cardoza</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Beverly Cardoza</fullName> + <firstName>Beverly</firstName> + <lastName>Cardoza</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4600</salary> - <supervisor_id>164</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>164</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ethel Porter</full_name> - <first_name>Ethel</first_name> - <last_name>Porter</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ethel Porter</fullName> + <firstName>Ethel</firstName> + <lastName>Porter</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>424</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>424</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gloria Lesko</full_name> - <first_name>Gloria</first_name> - <last_name>Lesko</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Gloria Lesko</fullName> + <firstName>Gloria</firstName> + <lastName>Lesko</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4800</salary> - <supervisor_id>424</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>424</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Michael Worland</full_name> - <first_name>Michael</first_name> - <last_name>Worland</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Michael Worland</fullName> + <firstName>Michael</firstName> + <lastName>Worland</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>3700</salary> - <supervisor_id>424</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>424</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Alvin Torre</full_name> - <first_name>Alvin</first_name> - <last_name>Torre</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Alvin Torre</fullName> + <firstName>Alvin</firstName> + <lastName>Torre</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>424</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>424</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Susan Ramos</full_name> - <first_name>Susan</first_name> - <last_name>Ramos</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Susan Ramos</fullName> + <firstName>Susan</firstName> + <lastName>Ramos</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>5200</salary> - <supervisor_id>425</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>425</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jill Christie</full_name> - <first_name>Jill</first_name> - <last_name>Christie</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jill Christie</fullName> + <firstName>Jill</firstName> + <lastName>Christie</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4650</salary> - <supervisor_id>425</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>425</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Juanita Zocchi</full_name> - <first_name>Juanita</first_name> - <last_name>Zocchi</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Juanita Zocchi</fullName> + <firstName>Juanita</firstName> + <lastName>Zocchi</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4550</salary> - <supervisor_id>425</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>425</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sandra Altamirano</full_name> - <first_name>Sandra</first_name> - <last_name>Altamirano</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Sandra Altamirano</fullName> + <firstName>Sandra</firstName> + <lastName>Altamirano</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>425</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>425</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Edna Benson</full_name> - <first_name>Edna</first_name> - <last_name>Benson</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Edna Benson</fullName> + <firstName>Edna</firstName> + <lastName>Benson</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4700</salary> - <supervisor_id>426</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>426</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Alexander Deborde</full_name> - <first_name>Alexander</first_name> - <last_name>Deborde</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Alexander Deborde</fullName> + <firstName>Alexander</firstName> + <lastName>Deborde</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4500</salary> - <supervisor_id>426</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>426</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Barbara Calone</full_name> - <first_name>Barbara</first_name> - <last_name>Calone</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Barbara Calone</fullName> + <firstName>Barbara</firstName> + <lastName>Calone</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>426</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>426</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Cheryl Pompa</full_name> - <first_name>Cheryl</first_name> - <last_name>Pompa</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Cheryl Pompa</fullName> + <firstName>Cheryl</firstName> + <lastName>Pompa</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4600</salary> - <supervisor_id>426</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>426</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lisa Roy</full_name> - <first_name>Lisa</first_name> - <last_name>Roy</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Lisa Roy</fullName> + <firstName>Lisa</firstName> + <lastName>Roy</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>640</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ingrid Burkhardt</full_name> - <first_name>Ingrid</first_name> - <last_name>Burkhardt</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ingrid Burkhardt</fullName> + <firstName>Ingrid</firstName> + <lastName>Burkhardt</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4800</salary> - <supervisor_id>640</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Todd Whitney</full_name> - <first_name>Todd</first_name> - <last_name>Whitney</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Todd Whitney</fullName> + <firstName>Todd</firstName> + <lastName>Whitney</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>3700</salary> - <supervisor_id>640</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Barbara Wisnewski</full_name> - <first_name>Barbara</first_name> - <last_name>Wisnewski</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Barbara Wisnewski</fullName> + <firstName>Barbara</firstName> + <lastName>Wisnewski</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>640</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Karren Burkhardt</full_name> - <first_name>Karren</first_name> - <last_name>Burkhardt</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Karren Burkhardt</fullName> + <firstName>Karren</firstName> + <lastName>Burkhardt</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4300</salary> - <supervisor_id>640</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Stacie Mcanich</full_name> - <first_name>Stacie</first_name> - <last_name>Mcanich</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Stacie Mcanich</fullName> + <firstName>Stacie</firstName> + <lastName>Mcanich</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>5200</salary> - <supervisor_id>641</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Browning</full_name> - <first_name>Mary</first_name> - <last_name>Browning</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Mary Browning</fullName> + <firstName>Mary</firstName> + <lastName>Browning</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4650</salary> - <supervisor_id>641</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Alexandra Wellington</full_name> - <first_name>Alexandra</first_name> - <last_name>Wellington</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Alexandra Wellington</fullName> + <firstName>Alexandra</firstName> + <lastName>Wellington</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4550</salary> - <supervisor_id>641</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Cory Bacugalupi</full_name> - <first_name>Cory</first_name> - <last_name>Bacugalupi</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Cory Bacugalupi</fullName> + <firstName>Cory</firstName> + <lastName>Bacugalupi</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>641</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Stacy Rizzi</full_name> - <first_name>Stacy</first_name> - <last_name>Rizzi</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Stacy Rizzi</fullName> + <firstName>Stacy</firstName> + <lastName>Rizzi</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4200</salary> - <supervisor_id>641</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>William Sotelo</full_name> - <first_name>William</first_name> - <last_name>Sotelo</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>William Sotelo</fullName> + <firstName>William</firstName> + <lastName>Sotelo</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4700</salary> - <supervisor_id>642</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Beth Stanley</full_name> - <first_name>Beth</first_name> - <last_name>Stanley</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Beth Stanley</fullName> + <firstName>Beth</firstName> + <lastName>Stanley</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4500</salary> - <supervisor_id>642</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jill Markwood</full_name> - <first_name>Jill</first_name> - <last_name>Markwood</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jill Markwood</fullName> + <firstName>Jill</firstName> + <lastName>Markwood</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>642</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lee Chapla</full_name> - <first_name>Lee</first_name> - <last_name>Chapla</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Lee Chapla</fullName> + <firstName>Lee</firstName> + <lastName>Chapla</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>485</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>485</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>DeeDee Cameron</full_name> - <first_name>DeeDee</first_name> - <last_name>Cameron</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>DeeDee Cameron</fullName> + <firstName>DeeDee</firstName> + <lastName>Cameron</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4800</salary> - <supervisor_id>485</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>485</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jo Zgeirmann</full_name> - <first_name>Jo</first_name> - <last_name>Zgeirmann</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jo Zgeirmann</fullName> + <firstName>Jo</firstName> + <lastName>Zgeirmann</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>3700</salary> - <supervisor_id>485</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>485</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>William Mondragon</full_name> - <first_name>William</first_name> - <last_name>Mondragon</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>William Mondragon</fullName> + <firstName>William</firstName> + <lastName>Mondragon</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>485</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>485</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Cecil Allison</full_name> - <first_name>Cecil</first_name> - <last_name>Allison</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Cecil Allison</fullName> + <firstName>Cecil</firstName> + <lastName>Allison</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>5200</salary> - <supervisor_id>486</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>486</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Nieves Vargas</full_name> - <first_name>Nieves</first_name> - <last_name>Vargas</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Nieves Vargas</fullName> + <firstName>Nieves</firstName> + <lastName>Vargas</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4650</salary> - <supervisor_id>486</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>486</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Helen Vlass</full_name> - <first_name>Helen</first_name> - <last_name>Vlass</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Helen Vlass</fullName> + <firstName>Helen</firstName> + <lastName>Vlass</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4550</salary> - <supervisor_id>486</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>486</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Abigail Gonzalez</full_name> - <first_name>Abigail</first_name> - <last_name>Gonzalez</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Abigail Gonzalez</fullName> + <firstName>Abigail</firstName> + <lastName>Gonzalez</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>486</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>486</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Denean Ison</full_name> - <first_name>Denean</first_name> - <last_name>Ison</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Denean Ison</fullName> + <firstName>Denean</firstName> + <lastName>Ison</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4700</salary> - <supervisor_id>487</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>487</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Billy Trent</full_name> - <first_name>Billy</first_name> - <last_name>Trent</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Billy Trent</fullName> + <firstName>Billy</firstName> + <lastName>Trent</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4500</salary> - <supervisor_id>487</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>487</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Vaca</full_name> - <first_name>Mary</first_name> - <last_name>Vaca</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mary Vaca</fullName> + <firstName>Mary</firstName> + <lastName>Vaca</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>487</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>487</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kyley Arbelaez</full_name> - <first_name>Kyley</first_name> - <last_name>Arbelaez</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Kyley Arbelaez</fullName> + <firstName>Kyley</firstName> + <lastName>Arbelaez</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4600</salary> - <supervisor_id>487</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>487</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Rose Vandenouer</full_name> - <first_name>Rose</first_name> - <last_name>Vandenouer</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Rose Vandenouer</fullName> + <firstName>Rose</firstName> + <lastName>Vandenouer</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>546</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Eric Vincenzi</full_name> - <first_name>Eric</first_name> - <last_name>Vincenzi</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Eric Vincenzi</fullName> + <firstName>Eric</firstName> + <lastName>Vincenzi</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4800</salary> - <supervisor_id>546</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Cheryl Herring</full_name> - <first_name>Cheryl</first_name> - <last_name>Herring</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Cheryl Herring</fullName> + <firstName>Cheryl</firstName> + <lastName>Herring</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>3700</salary> - <supervisor_id>546</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kathleen Garza</full_name> - <first_name>Kathleen</first_name> - <last_name>Garza</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Kathleen Garza</fullName> + <firstName>Kathleen</firstName> + <lastName>Garza</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>546</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gail Westover</full_name> - <first_name>Gail</first_name> - <last_name>Westover</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Gail Westover</fullName> + <firstName>Gail</firstName> + <lastName>Westover</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4300</salary> - <supervisor_id>546</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Matthew Hagemann</full_name> - <first_name>Matthew</first_name> - <last_name>Hagemann</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Matthew Hagemann</fullName> + <firstName>Matthew</firstName> + <lastName>Hagemann</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>5200</salary> - <supervisor_id>547</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Patricia Vasquez</full_name> - <first_name>Patricia</first_name> - <last_name>Vasquez</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Patricia Vasquez</fullName> + <firstName>Patricia</firstName> + <lastName>Vasquez</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4650</salary> - <supervisor_id>547</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lola McCarthy</full_name> - <first_name>Lola</first_name> - <last_name>McCarthy</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Lola McCarthy</fullName> + <firstName>Lola</firstName> + <lastName>McCarthy</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4550</salary> - <supervisor_id>547</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Phillip Bacalzo</full_name> - <first_name>Phillip</first_name> - <last_name>Bacalzo</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Phillip Bacalzo</fullName> + <firstName>Phillip</firstName> + <lastName>Bacalzo</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>547</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Marian Berch</full_name> - <first_name>Marian</first_name> - <last_name>Berch</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Marian Berch</fullName> + <firstName>Marian</firstName> + <lastName>Berch</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4200</salary> - <supervisor_id>547</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mike Taylor</full_name> - <first_name>Mike</first_name> - <last_name>Taylor</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mike Taylor</fullName> + <firstName>Mike</firstName> + <lastName>Taylor</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4700</salary> - <supervisor_id>548</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Vivian Whipple</full_name> - <first_name>Vivian</first_name> - <last_name>Whipple</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Vivian Whipple</fullName> + <firstName>Vivian</firstName> + <lastName>Whipple</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4500</salary> - <supervisor_id>548</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Cecilia Laursen</full_name> - <first_name>Cecilia</first_name> - <last_name>Laursen</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Cecilia Laursen</fullName> + <firstName>Cecilia</firstName> + <lastName>Laursen</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>548</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lee Olguin</full_name> - <first_name>Lee</first_name> - <last_name>Olguin</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Lee Olguin</fullName> + <firstName>Lee</firstName> + <lastName>Olguin</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4600</salary> - <supervisor_id>548</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Stephen Ayers</full_name> - <first_name>Stephen</first_name> - <last_name>Ayers</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Stephen Ayers</fullName> + <firstName>Stephen</firstName> + <lastName>Ayers</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>548</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Deanna Buskirk</full_name> - <first_name>Deanna</first_name> - <last_name>Buskirk</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Deanna Buskirk</fullName> + <firstName>Deanna</firstName> + <lastName>Buskirk</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>621</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>621</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Kesslep</full_name> - <first_name>Mary</first_name> - <last_name>Kesslep</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mary Kesslep</fullName> + <firstName>Mary</firstName> + <lastName>Kesslep</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4800</salary> - <supervisor_id>621</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>621</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Barbara Schultz</full_name> - <first_name>Barbara</first_name> - <last_name>Schultz</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Barbara Schultz</fullName> + <firstName>Barbara</firstName> + <lastName>Schultz</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>3700</salary> - <supervisor_id>622</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>622</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kris Bergin</full_name> - <first_name>Kris</first_name> - <last_name>Bergin</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Kris Bergin</fullName> + <firstName>Kris</firstName> + <lastName>Bergin</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>622</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>622</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kevin Chrisulis</full_name> - <first_name>Kevin</first_name> - <last_name>Chrisulis</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Kevin Chrisulis</fullName> + <firstName>Kevin</firstName> + <lastName>Chrisulis</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4600</salary> - <supervisor_id>228</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>228</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ian Yuhasz</full_name> - <first_name>Ian</first_name> - <last_name>Yuhasz</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ian Yuhasz</fullName> + <firstName>Ian</firstName> + <lastName>Yuhasz</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>287</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jovita Carmody</full_name> - <first_name>Jovita</first_name> - <last_name>Carmody</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jovita Carmody</fullName> + <firstName>Jovita</firstName> + <lastName>Carmody</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4800</salary> - <supervisor_id>287</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lynn Gonzales</full_name> - <first_name>Lynn</first_name> - <last_name>Gonzales</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Lynn Gonzales</fullName> + <firstName>Lynn</firstName> + <lastName>Gonzales</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>3700</salary> - <supervisor_id>287</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Phyllis Allen</full_name> - <first_name>Phyllis</first_name> - <last_name>Allen</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Phyllis Allen</fullName> + <firstName>Phyllis</firstName> + <lastName>Allen</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>287</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Johnny Caprio</full_name> - <first_name>Johnny</first_name> - <last_name>Caprio</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Johnny Caprio</fullName> + <firstName>Johnny</firstName> + <lastName>Caprio</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4300</salary> - <supervisor_id>287</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lanna Slaven</full_name> - <first_name>Lanna</first_name> - <last_name>Slaven</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Lanna Slaven</fullName> + <firstName>Lanna</firstName> + <lastName>Slaven</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>5200</salary> - <supervisor_id>288</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Fred Ortiz</full_name> - <first_name>Fred</first_name> - <last_name>Ortiz</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Fred Ortiz</fullName> + <firstName>Fred</firstName> + <lastName>Ortiz</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4650</salary> - <supervisor_id>288</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Beaver</full_name> - <first_name>John</first_name> - <last_name>Beaver</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>John Beaver</fullName> + <firstName>John</firstName> + <lastName>Beaver</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4550</salary> - <supervisor_id>288</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Albert Rhodes</full_name> - <first_name>Albert</first_name> - <last_name>Rhodes</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Albert Rhodes</fullName> + <firstName>Albert</firstName> + <lastName>Rhodes</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>288</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Scott Kaffer</full_name> - <first_name>Scott</first_name> - <last_name>Kaffer</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Scott Kaffer</fullName> + <firstName>Scott</firstName> + <lastName>Kaffer</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4200</salary> - <supervisor_id>288</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jennifer Bales</full_name> - <first_name>Jennifer</first_name> - <last_name>Bales</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jennifer Bales</fullName> + <firstName>Jennifer</firstName> + <lastName>Bales</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4700</salary> - <supervisor_id>289</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Louis Stotka</full_name> - <first_name>Louis</first_name> - <last_name>Stotka</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Louis Stotka</fullName> + <firstName>Louis</firstName> + <lastName>Stotka</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4500</salary> - <supervisor_id>289</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sandra Maynard</full_name> - <first_name>Sandra</first_name> - <last_name>Maynard</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Sandra Maynard</fullName> + <firstName>Sandra</firstName> + <lastName>Maynard</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>289</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gracia Tuell</full_name> - <first_name>Gracia</first_name> - <last_name>Tuell</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Gracia Tuell</fullName> + <firstName>Gracia</firstName> + <lastName>Tuell</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4600</salary> - <supervisor_id>289</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Timothy Burnett</full_name> - <first_name>Timothy</first_name> - <last_name>Burnett</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Timothy Burnett</fullName> + <firstName>Timothy</firstName> + <lastName>Burnett</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>289</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Barbara Sipsy</full_name> - <first_name>Barbara</first_name> - <last_name>Sipsy</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Barbara Sipsy</fullName> + <firstName>Barbara</firstName> + <lastName>Sipsy</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>363</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>363</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dorothy Weimer</full_name> - <first_name>Dorothy</first_name> - <last_name>Weimer</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Dorothy Weimer</fullName> + <firstName>Dorothy</firstName> + <lastName>Weimer</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4800</salary> - <supervisor_id>363</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>363</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Richard Irwin</full_name> - <first_name>Richard</first_name> - <last_name>Irwin</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Richard Irwin</fullName> + <firstName>Richard</firstName> + <lastName>Irwin</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>3700</salary> - <supervisor_id>363</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>363</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Alma Son</full_name> - <first_name>Alma</first_name> - <last_name>Son</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Alma Son</fullName> + <firstName>Alma</firstName> + <lastName>Son</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>363</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>363</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Cornelius Brandon</full_name> - <first_name>Cornelius</first_name> - <last_name>Brandon</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Cornelius Brandon</fullName> + <firstName>Cornelius</firstName> + <lastName>Brandon</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>5200</salary> - <supervisor_id>364</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>364</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Monica Quintana</full_name> - <first_name>Monica</first_name> - <last_name>Quintana</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Monica Quintana</fullName> + <firstName>Monica</firstName> + <lastName>Quintana</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4650</salary> - <supervisor_id>364</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>364</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Colon</full_name> - <first_name>John</first_name> - <last_name>Colon</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>John Colon</fullName> + <firstName>John</firstName> + <lastName>Colon</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4550</salary> - <supervisor_id>364</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>364</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Brenda Barlow</full_name> - <first_name>Brenda</first_name> - <last_name>Barlow</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Brenda Barlow</fullName> + <firstName>Brenda</firstName> + <lastName>Barlow</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>364</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>364</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ronald Adina</full_name> - <first_name>Ronald</first_name> - <last_name>Adina</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ronald Adina</fullName> + <firstName>Ronald</firstName> + <lastName>Adina</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4700</salary> - <supervisor_id>365</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>365</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Michael Bohling</full_name> - <first_name>Michael</first_name> - <last_name>Bohling</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Michael Bohling</fullName> + <firstName>Michael</firstName> + <lastName>Bohling</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4500</salary> - <supervisor_id>365</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>365</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sam Wheeler</full_name> - <first_name>Sam</first_name> - <last_name>Wheeler</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Sam Wheeler</fullName> + <firstName>Sam</firstName> + <lastName>Wheeler</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>365</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>365</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Abraham Swearengin</full_name> - <first_name>Abraham</first_name> - <last_name>Swearengin</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Abraham Swearengin</fullName> + <firstName>Abraham</firstName> + <lastName>Swearengin</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>4600</salary> - <supervisor_id>365</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>365</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mabel Powers</full_name> - <first_name>Mabel</first_name> - <last_name>Powers</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>18.04.1946</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Mabel Powers</fullName> + <firstName>Mabel</firstName> + <lastName>Powers</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>18.04.1946</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>1020</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1020</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gregory Amburgey</full_name> - <first_name>Gregory</first_name> - <last_name>Amburgey</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>18.04.1946</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Gregory Amburgey</fullName> + <firstName>Gregory</firstName> + <lastName>Amburgey</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>18.04.1946</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4800</salary> - <supervisor_id>1020</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1020</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Brian Johnston</full_name> - <first_name>Brian</first_name> - <last_name>Johnston</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>18.04.1946</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Brian Johnston</fullName> + <firstName>Brian</firstName> + <lastName>Johnston</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>18.04.1946</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>3700</salary> - <supervisor_id>1020</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1020</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Rama Hager</full_name> - <first_name>Rama</first_name> - <last_name>Hager</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>18.04.1946</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Rama Hager</fullName> + <firstName>Rama</firstName> + <lastName>Hager</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>18.04.1946</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>1020</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>1020</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Daniel Posey</full_name> - <first_name>Daniel</first_name> - <last_name>Posey</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>18.04.1946</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Daniel Posey</fullName> + <firstName>Daniel</firstName> + <lastName>Posey</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>18.04.1946</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>5200</salary> - <supervisor_id>1021</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1021</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ruth Dimon</full_name> - <first_name>Ruth</first_name> - <last_name>Dimon</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>18.04.1946</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ruth Dimon</fullName> + <firstName>Ruth</firstName> + <lastName>Dimon</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>18.04.1946</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4650</salary> - <supervisor_id>1021</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1021</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ryan Williams</full_name> - <first_name>Ryan</first_name> - <last_name>Williams</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>18.04.1946</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ryan Williams</fullName> + <firstName>Ryan</firstName> + <lastName>Williams</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>18.04.1946</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4550</salary> - <supervisor_id>1021</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>1021</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kiyo Fien</full_name> - <first_name>Kiyo</first_name> - <last_name>Fien</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>18.04.1946</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Kiyo Fien</fullName> + <firstName>Kiyo</firstName> + <lastName>Fien</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>18.04.1946</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>1022</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1022</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Brenda Stalker</full_name> - <first_name>Brenda</first_name> - <last_name>Stalker</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>18.04.1946</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Brenda Stalker</fullName> + <firstName>Brenda</firstName> + <lastName>Stalker</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>18.04.1946</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4700</salary> - <supervisor_id>1022</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>1022</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Wei Fan</full_name> - <first_name>Wei</first_name> - <last_name>Fan</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>18.04.1946</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Wei Fan</fullName> + <firstName>Wei</firstName> + <lastName>Fan</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>18.04.1946</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4500</salary> - <supervisor_id>1022</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1022</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mildred Valentine</full_name> - <first_name>Mildred</first_name> - <last_name>Valentine</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Mildred Valentine</fullName> + <firstName>Mildred</firstName> + <lastName>Valentine</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4600</salary> - <supervisor_id>642</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Suzann Reams</full_name> - <first_name>Suzann</first_name> - <last_name>Reams</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Suzann Reams</fullName> + <firstName>Suzann</firstName> + <lastName>Reams</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>642</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Karen Hall</full_name> - <first_name>Karen</first_name> - <last_name>Hall</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Karen Hall</fullName> + <firstName>Karen</firstName> + <lastName>Hall</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>712</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>712</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Greg Narberes</full_name> - <first_name>Greg</first_name> - <last_name>Narberes</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Greg Narberes</fullName> + <firstName>Greg</firstName> + <lastName>Narberes</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4800</salary> - <supervisor_id>712</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>712</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Fannye Weber</full_name> - <first_name>Fannye</first_name> - <last_name>Weber</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Fannye Weber</fullName> + <firstName>Fannye</firstName> + <lastName>Weber</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>3700</salary> - <supervisor_id>713</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>713</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Diane Kabbes</full_name> - <first_name>Diane</first_name> - <last_name>Kabbes</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Diane Kabbes</fullName> + <firstName>Diane</firstName> + <lastName>Kabbes</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>713</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>713</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Hillaine Montera</full_name> - <first_name>Hillaine</first_name> - <last_name>Montera</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Hillaine Montera</fullName> + <firstName>Hillaine</firstName> + <lastName>Montera</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>730</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>730</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gina Ciochon</full_name> - <first_name>Gina</first_name> - <last_name>Ciochon</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Gina Ciochon</fullName> + <firstName>Gina</firstName> + <lastName>Ciochon</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4800</salary> - <supervisor_id>730</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>730</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mae Anderson</full_name> - <first_name>Mae</first_name> - <last_name>Anderson</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Mae Anderson</fullName> + <firstName>Mae</firstName> + <lastName>Anderson</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>3700</salary> - <supervisor_id>731</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>731</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Marvin Allen</full_name> - <first_name>Marvin</first_name> - <last_name>Allen</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Marvin Allen</fullName> + <firstName>Marvin</firstName> + <lastName>Allen</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>731</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>731</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Vincent White</full_name> - <first_name>Vincent</first_name> - <last_name>White</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Vincent White</fullName> + <firstName>Vincent</firstName> + <lastName>White</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>749</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sandra Kahl</full_name> - <first_name>Sandra</first_name> - <last_name>Kahl</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Sandra Kahl</fullName> + <firstName>Sandra</firstName> + <lastName>Kahl</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4800</salary> - <supervisor_id>749</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>James Aguilar</full_name> - <first_name>James</first_name> - <last_name>Aguilar</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>James Aguilar</fullName> + <firstName>James</firstName> + <lastName>Aguilar</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>3700</salary> - <supervisor_id>749</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gregory Vanderbout</full_name> - <first_name>Gregory</first_name> - <last_name>Vanderbout</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Gregory Vanderbout</fullName> + <firstName>Gregory</firstName> + <lastName>Vanderbout</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>749</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Filomena Visser</full_name> - <first_name>Filomena</first_name> - <last_name>Visser</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Filomena Visser</fullName> + <firstName>Filomena</firstName> + <lastName>Visser</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4300</salary> - <supervisor_id>749</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Thomas Sanchez</full_name> - <first_name>Thomas</first_name> - <last_name>Sanchez</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Thomas Sanchez</fullName> + <firstName>Thomas</firstName> + <lastName>Sanchez</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>5200</salary> - <supervisor_id>750</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Geraldine Spicer</full_name> - <first_name>Geraldine</first_name> - <last_name>Spicer</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Geraldine Spicer</fullName> + <firstName>Geraldine</firstName> + <lastName>Spicer</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4650</salary> - <supervisor_id>750</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Nellie Medina</full_name> - <first_name>Nellie</first_name> - <last_name>Medina</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Nellie Medina</fullName> + <firstName>Nellie</firstName> + <lastName>Medina</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4550</salary> - <supervisor_id>750</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Richard Young</full_name> - <first_name>Richard</first_name> - <last_name>Young</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Richard Young</fullName> + <firstName>Richard</firstName> + <lastName>Young</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>750</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Margaret Krupka</full_name> - <first_name>Margaret</first_name> - <last_name>Krupka</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Margaret Krupka</fullName> + <firstName>Margaret</firstName> + <lastName>Krupka</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4200</salary> - <supervisor_id>750</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Edward Buensalido</full_name> - <first_name>Edward</first_name> - <last_name>Buensalido</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Edward Buensalido</fullName> + <firstName>Edward</firstName> + <lastName>Buensalido</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4700</salary> - <supervisor_id>751</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Donovan</full_name> - <first_name>John</first_name> - <last_name>Donovan</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>John Donovan</fullName> + <firstName>John</firstName> + <lastName>Donovan</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4500</salary> - <supervisor_id>751</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Roberto Smith</full_name> - <first_name>Roberto</first_name> - <last_name>Smith</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Roberto Smith</fullName> + <firstName>Roberto</firstName> + <lastName>Smith</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>751</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Josef Gentile</full_name> - <first_name>Josef</first_name> - <last_name>Gentile</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Josef Gentile</fullName> + <firstName>Josef</firstName> + <lastName>Gentile</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4600</salary> - <supervisor_id>751</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sarah Tancredy</full_name> - <first_name>Sarah</first_name> - <last_name>Tancredy</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Sarah Tancredy</fullName> + <firstName>Sarah</firstName> + <lastName>Tancredy</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>751</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Maria Marsden</full_name> - <first_name>Maria</first_name> - <last_name>Marsden</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Maria Marsden</fullName> + <firstName>Maria</firstName> + <lastName>Marsden</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>822</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>822</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jeffrey Campbell</full_name> - <first_name>Jeffrey</first_name> - <last_name>Campbell</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jeffrey Campbell</fullName> + <firstName>Jeffrey</firstName> + <lastName>Campbell</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4800</salary> - <supervisor_id>822</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>822</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Leonardo Roberts</full_name> - <first_name>Leonardo</first_name> - <last_name>Roberts</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Leonardo Roberts</fullName> + <firstName>Leonardo</firstName> + <lastName>Roberts</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>3700</salary> - <supervisor_id>822</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>822</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kathy Larkin</full_name> - <first_name>Kathy</first_name> - <last_name>Larkin</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Kathy Larkin</fullName> + <firstName>Kathy</firstName> + <lastName>Larkin</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>822</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>822</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Joan Bitler</full_name> - <first_name>Joan</first_name> - <last_name>Bitler</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Joan Bitler</fullName> + <firstName>Joan</firstName> + <lastName>Bitler</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>5200</salary> - <supervisor_id>823</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>823</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jim Allen</full_name> - <first_name>Jim</first_name> - <last_name>Allen</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jim Allen</fullName> + <firstName>Jim</firstName> + <lastName>Allen</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4650</salary> - <supervisor_id>823</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>823</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ella Worth</full_name> - <first_name>Ella</first_name> - <last_name>Worth</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ella Worth</fullName> + <firstName>Ella</firstName> + <lastName>Worth</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4550</salary> - <supervisor_id>823</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>823</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ivan Mauro</full_name> - <first_name>Ivan</first_name> - <last_name>Mauro</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ivan Mauro</fullName> + <firstName>Ivan</firstName> + <lastName>Mauro</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>823</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>823</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sharon Stroh</full_name> - <first_name>Sharon</first_name> - <last_name>Stroh</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Sharon Stroh</fullName> + <firstName>Sharon</firstName> + <lastName>Stroh</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4700</salary> - <supervisor_id>824</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>824</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Karen Theriault</full_name> - <first_name>Karen</first_name> - <last_name>Theriault</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Karen Theriault</fullName> + <firstName>Karen</firstName> + <lastName>Theriault</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4500</salary> - <supervisor_id>824</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>824</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Julia Ketterman</full_name> - <first_name>Julia</first_name> - <last_name>Ketterman</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Julia Ketterman</fullName> + <firstName>Julia</firstName> + <lastName>Ketterman</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>824</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>824</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Rose Beavers</full_name> - <first_name>Rose</first_name> - <last_name>Beavers</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Rose Beavers</fullName> + <firstName>Rose</firstName> + <lastName>Beavers</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4600</salary> - <supervisor_id>824</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>824</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dorothy Chrisman</full_name> - <first_name>Dorothy</first_name> - <last_name>Chrisman</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Dorothy Chrisman</fullName> + <firstName>Dorothy</firstName> + <lastName>Chrisman</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>886</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>886</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Walter Taryle</full_name> - <first_name>Walter</first_name> - <last_name>Taryle</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Walter Taryle</fullName> + <firstName>Walter</firstName> + <lastName>Taryle</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4800</salary> - <supervisor_id>886</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>886</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Herve Spencer</full_name> - <first_name>Herve</first_name> - <last_name>Spencer</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Herve Spencer</fullName> + <firstName>Herve</firstName> + <lastName>Spencer</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>3700</salary> - <supervisor_id>886</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>886</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Christopher Tribble</full_name> - <first_name>Christopher</first_name> - <last_name>Tribble</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Christopher Tribble</fullName> + <firstName>Christopher</firstName> + <lastName>Tribble</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>886</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>886</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Nick Skapinok</full_name> - <first_name>Nick</first_name> - <last_name>Skapinok</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Nick Skapinok</fullName> + <firstName>Nick</firstName> + <lastName>Skapinok</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>5200</salary> - <supervisor_id>887</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>887</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Janice Belleci</full_name> - <first_name>Janice</first_name> - <last_name>Belleci</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Janice Belleci</fullName> + <firstName>Janice</firstName> + <lastName>Belleci</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4650</salary> - <supervisor_id>887</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>887</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ila Armstrong</full_name> - <first_name>Ila</first_name> - <last_name>Armstrong</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ila Armstrong</fullName> + <firstName>Ila</firstName> + <lastName>Armstrong</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4550</salary> - <supervisor_id>887</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>887</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Millard Koeber</full_name> - <first_name>Millard</first_name> - <last_name>Koeber</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Millard Koeber</fullName> + <firstName>Millard</firstName> + <lastName>Koeber</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>887</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>887</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jacquelyn Wagner</full_name> - <first_name>Jacquelyn</first_name> - <last_name>Wagner</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jacquelyn Wagner</fullName> + <firstName>Jacquelyn</firstName> + <lastName>Wagner</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4700</salary> - <supervisor_id>888</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>888</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Rosalina Noice</full_name> - <first_name>Rosalina</first_name> - <last_name>Noice</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Rosalina Noice</fullName> + <firstName>Rosalina</firstName> + <lastName>Noice</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4500</salary> - <supervisor_id>888</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>888</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sharon Lindall</full_name> - <first_name>Sharon</first_name> - <last_name>Lindall</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Sharon Lindall</fullName> + <firstName>Sharon</firstName> + <lastName>Lindall</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>888</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>888</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Charles Noakes</full_name> - <first_name>Charles</first_name> - <last_name>Noakes</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Charles Noakes</fullName> + <firstName>Charles</firstName> + <lastName>Noakes</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4600</salary> - <supervisor_id>888</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>888</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Maeve Wall</full_name> - <first_name>Maeve</first_name> - <last_name>Wall</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Maeve Wall</fullName> + <firstName>Maeve</firstName> + <lastName>Wall</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>947</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Margaret Clendenen</full_name> - <first_name>Margaret</first_name> - <last_name>Clendenen</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Margaret Clendenen</fullName> + <firstName>Margaret</firstName> + <lastName>Clendenen</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4800</salary> - <supervisor_id>947</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Brian Willeford</full_name> - <first_name>Brian</first_name> - <last_name>Willeford</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Brian Willeford</fullName> + <firstName>Brian</firstName> + <lastName>Willeford</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>3700</salary> - <supervisor_id>947</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dominick Nutter</full_name> - <first_name>Dominick</first_name> - <last_name>Nutter</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Dominick Nutter</fullName> + <firstName>Dominick</firstName> + <lastName>Nutter</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>947</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Stacey Case</full_name> - <first_name>Stacey</first_name> - <last_name>Case</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Stacey Case</fullName> + <firstName>Stacey</firstName> + <lastName>Case</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4300</salary> - <supervisor_id>947</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Maria Terry</full_name> - <first_name>Maria</first_name> - <last_name>Terry</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Maria Terry</fullName> + <firstName>Maria</firstName> + <lastName>Terry</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>5200</salary> - <supervisor_id>948</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Claudette Cabrera</full_name> - <first_name>Claudette</first_name> - <last_name>Cabrera</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Claudette Cabrera</fullName> + <firstName>Claudette</firstName> + <lastName>Cabrera</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4650</salary> - <supervisor_id>948</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ethan Bunosky</full_name> - <first_name>Ethan</first_name> - <last_name>Bunosky</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ethan Bunosky</fullName> + <firstName>Ethan</firstName> + <lastName>Bunosky</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4550</salary> - <supervisor_id>948</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Richard Burke</full_name> - <first_name>Richard</first_name> - <last_name>Burke</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Richard Burke</fullName> + <firstName>Richard</firstName> + <lastName>Burke</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>948</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Carol Lindsay</full_name> - <first_name>Carol</first_name> - <last_name>Lindsay</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Carol Lindsay</fullName> + <firstName>Carol</firstName> + <lastName>Lindsay</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4200</salary> - <supervisor_id>948</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>William Murphy</full_name> - <first_name>William</first_name> - <last_name>Murphy</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>William Murphy</fullName> + <firstName>William</firstName> + <lastName>Murphy</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4700</salary> - <supervisor_id>949</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Sweet</full_name> - <first_name>John</first_name> - <last_name>Sweet</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>John Sweet</fullName> + <firstName>John</firstName> + <lastName>Sweet</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4500</salary> - <supervisor_id>949</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Elizabeth Jantzer</full_name> - <first_name>Elizabeth</first_name> - <last_name>Jantzer</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Elizabeth Jantzer</fullName> + <firstName>Elizabeth</firstName> + <lastName>Jantzer</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>949</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Beverly Dittmar</full_name> - <first_name>Beverly</first_name> - <last_name>Dittmar</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Beverly Dittmar</fullName> + <firstName>Beverly</firstName> + <lastName>Dittmar</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4600</salary> - <supervisor_id>949</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Miggs Gutirrez</full_name> - <first_name>Miggs</first_name> - <last_name>Gutirrez</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Miggs Gutirrez</fullName> + <firstName>Miggs</firstName> + <lastName>Gutirrez</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>949</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Marcella Isaacs</full_name> - <first_name>Marcella</first_name> - <last_name>Isaacs</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Marcella Isaacs</fullName> + <firstName>Marcella</firstName> + <lastName>Isaacs</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>1067</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Charlotte Yonce</full_name> - <first_name>Charlotte</first_name> - <last_name>Yonce</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Charlotte Yonce</fullName> + <firstName>Charlotte</firstName> + <lastName>Yonce</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4800</salary> - <supervisor_id>1067</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Benjamin Foster</full_name> - <first_name>Benjamin</first_name> - <last_name>Foster</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Benjamin Foster</fullName> + <firstName>Benjamin</firstName> + <lastName>Foster</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>3700</salary> - <supervisor_id>1067</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Reed</full_name> - <first_name>John</first_name> - <last_name>Reed</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>John Reed</fullName> + <firstName>John</firstName> + <lastName>Reed</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>1067</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lynn Kwiatkowski</full_name> - <first_name>Lynn</first_name> - <last_name>Kwiatkowski</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Lynn Kwiatkowski</fullName> + <firstName>Lynn</firstName> + <lastName>Kwiatkowski</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4300</salary> - <supervisor_id>1067</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Donald Vann</full_name> - <first_name>Donald</first_name> - <last_name>Vann</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Donald Vann</fullName> + <firstName>Donald</firstName> + <lastName>Vann</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>5200</salary> - <supervisor_id>1068</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>William Smith</full_name> - <first_name>William</first_name> - <last_name>Smith</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>William Smith</fullName> + <firstName>William</firstName> + <lastName>Smith</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4650</salary> - <supervisor_id>1068</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Amy Hensley</full_name> - <first_name>Amy</first_name> - <last_name>Hensley</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Amy Hensley</fullName> + <firstName>Amy</firstName> + <lastName>Hensley</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4550</salary> - <supervisor_id>1068</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Judy Owens</full_name> - <first_name>Judy</first_name> - <last_name>Owens</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Judy Owens</fullName> + <firstName>Judy</firstName> + <lastName>Owens</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>1068</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Frederick Castillo</full_name> - <first_name>Frederick</first_name> - <last_name>Castillo</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Frederick Castillo</fullName> + <firstName>Frederick</firstName> + <lastName>Castillo</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4200</salary> - <supervisor_id>1068</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Phil Munoz</full_name> - <first_name>Phil</first_name> - <last_name>Munoz</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Phil Munoz</fullName> + <firstName>Phil</firstName> + <lastName>Munoz</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4700</salary> - <supervisor_id>1069</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lori Lightfoot</full_name> - <first_name>Lori</first_name> - <last_name>Lightfoot</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Lori Lightfoot</fullName> + <firstName>Lori</firstName> + <lastName>Lightfoot</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4500</salary> - <supervisor_id>1069</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Joyce Simmons</full_name> - <first_name>Joyce</first_name> - <last_name>Simmons</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Joyce Simmons</fullName> + <firstName>Joyce</firstName> + <lastName>Simmons</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>1069</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>James Hays</full_name> - <first_name>James</first_name> - <last_name>Hays</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>James Hays</fullName> + <firstName>James</firstName> + <lastName>Hays</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4600</salary> - <supervisor_id>1069</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Elizabeth Auintana</full_name> - <first_name>Elizabeth</first_name> - <last_name>Auintana</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Elizabeth Auintana</fullName> + <firstName>Elizabeth</firstName> + <lastName>Auintana</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>1069</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Bertha Ciruli</full_name> - <first_name>Bertha</first_name> - <last_name>Ciruli</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Bertha Ciruli</fullName> + <firstName>Bertha</firstName> + <lastName>Ciruli</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4400</salary> - <supervisor_id>1139</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1139</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Foster Detwiler</full_name> - <first_name>Foster</first_name> - <last_name>Detwiler</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Foster Detwiler</fullName> + <firstName>Foster</firstName> + <lastName>Detwiler</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>4800</salary> - <supervisor_id>1139</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>1139</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Burnis Biltoft</full_name> - <first_name>Burnis</first_name> - <last_name>Biltoft</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Burnis Biltoft</fullName> + <firstName>Burnis</firstName> + <lastName>Biltoft</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>3700</salary> - <supervisor_id>1140</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1140</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Barbara Younce</full_name> - <first_name>Barbara</first_name> - <last_name>Younce</last_name> - <position_title>Store Permanent Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Barbara Younce</fullName> + <firstName>Barbara</firstName> + <lastName>Younce</lastName> + <positionTitle>Store Permanent Stocker</positionTitle><Department><departmentDescription>Store Permanent Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>6500</salary> - <supervisor_id>1140</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1140</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> </Position> <Position> - <position_title>Store Temporary Stocker</position_title> - <pay_type>Hourly</pay_type> - <min_scale>20</min_scale> - <max_scale>40</max_scale> - <management_role>Store Temp Staff</management_role> + <positionTitle>Store Temporary Stocker</positionTitle> + <payType>Hourly</payType> + <minScale>20</minScale> + <maxScale>40</maxScale> + <managementRole>Store Temp Staff</managementRole> <Employee> - <full_name>Geneva Kouba</full_name> - <first_name>Geneva</first_name> - <last_name>Kouba</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>05.10.1976</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Geneva Kouba</fullName> + <firstName>Geneva</firstName> + <lastName>Kouba</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>05.10.1976</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>54</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>54</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Tricia Clark</full_name> - <first_name>Tricia</first_name> - <last_name>Clark</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>05.10.1976</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Tricia Clark</fullName> + <firstName>Tricia</firstName> + <lastName>Clark</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>05.10.1976</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>54</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>54</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Debi Munn</full_name> - <first_name>Debi</first_name> - <last_name>Munn</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>05.10.1976</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Debi Munn</fullName> + <firstName>Debi</firstName> + <lastName>Munn</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>05.10.1976</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>54</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>54</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Patricia Goldberg</full_name> - <first_name>Patricia</first_name> - <last_name>Goldberg</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>05.10.1976</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Patricia Goldberg</fullName> + <firstName>Patricia</firstName> + <lastName>Goldberg</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>05.10.1976</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>54</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>54</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Susan Magenheim</full_name> - <first_name>Susan</first_name> - <last_name>Magenheim</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>05.10.1976</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Susan Magenheim</fullName> + <firstName>Susan</firstName> + <lastName>Magenheim</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>05.10.1976</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>55</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>55</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Nancy Hance</full_name> - <first_name>Nancy</first_name> - <last_name>Hance</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>05.10.1976</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Nancy Hance</fullName> + <firstName>Nancy</firstName> + <lastName>Hance</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>05.10.1976</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>55</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>55</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Rhonda Mehlert</full_name> - <first_name>Rhonda</first_name> - <last_name>Mehlert</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>05.10.1976</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Rhonda Mehlert</fullName> + <firstName>Rhonda</firstName> + <lastName>Mehlert</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>05.10.1976</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>55</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>55</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Paula Duran</full_name> - <first_name>Paula</first_name> - <last_name>Duran</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>05.10.1976</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Paula Duran</fullName> + <firstName>Paula</firstName> + <lastName>Duran</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>05.10.1976</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>56</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>56</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Margaret Earley</full_name> - <first_name>Margaret</first_name> - <last_name>Earley</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>05.10.1976</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Margaret Earley</fullName> + <firstName>Margaret</firstName> + <lastName>Earley</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>05.10.1976</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>56</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>56</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Elizabeth Horne</full_name> - <first_name>Elizabeth</first_name> - <last_name>Horne</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>05.10.1976</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Elizabeth Horne</fullName> + <firstName>Elizabeth</firstName> + <lastName>Horne</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>05.10.1976</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>56</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>56</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sam Zeller</full_name> - <first_name>Sam</first_name> - <last_name>Zeller</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Sam Zeller</fullName> + <firstName>Sam</firstName> + <lastName>Zeller</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>164</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>164</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dorothy Ace</full_name> - <first_name>Dorothy</first_name> - <last_name>Ace</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Dorothy Ace</fullName> + <firstName>Dorothy</firstName> + <lastName>Ace</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>164</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>164</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Adria Trujillo</full_name> - <first_name>Adria</first_name> - <last_name>Trujillo</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Adria Trujillo</fullName> + <firstName>Adria</firstName> + <lastName>Trujillo</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>164</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>164</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Chad Neuhauser</full_name> - <first_name>Chad</first_name> - <last_name>Neuhauser</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Chad Neuhauser</fullName> + <firstName>Chad</firstName> + <lastName>Neuhauser</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>101</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>101</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ann Coke</full_name> - <first_name>Ann</first_name> - <last_name>Coke</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ann Coke</fullName> + <firstName>Ann</firstName> + <lastName>Coke</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>101</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>101</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jon Scarbrough</full_name> - <first_name>Jon</first_name> - <last_name>Scarbrough</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jon Scarbrough</fullName> + <firstName>Jon</firstName> + <lastName>Scarbrough</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>101</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>101</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lillian Martensen</full_name> - <first_name>Lillian</first_name> - <last_name>Martensen</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Lillian Martensen</fullName> + <firstName>Lillian</firstName> + <lastName>Martensen</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>101</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>101</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary McCormick</full_name> - <first_name>Mary</first_name> - <last_name>McCormick</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mary McCormick</fullName> + <firstName>Mary</firstName> + <lastName>McCormick</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>101</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>101</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>James Sparacino</full_name> - <first_name>James</first_name> - <last_name>Sparacino</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>James Sparacino</fullName> + <firstName>James</firstName> + <lastName>Sparacino</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>102</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>102</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Racette</full_name> - <first_name>John</first_name> - <last_name>Racette</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>John Racette</fullName> + <firstName>John</firstName> + <lastName>Racette</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>102</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>102</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Edwardo Thompson</full_name> - <first_name>Edwardo</first_name> - <last_name>Thompson</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Edwardo Thompson</fullName> + <firstName>Edwardo</firstName> + <lastName>Thompson</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>102</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>102</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sam Warren</full_name> - <first_name>Sam</first_name> - <last_name>Warren</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Sam Warren</fullName> + <firstName>Sam</firstName> + <lastName>Warren</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>102</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>102</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Shelby Chow-Wang</full_name> - <first_name>Shelby</first_name> - <last_name>Chow-Wang</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Shelby Chow-Wang</fullName> + <firstName>Shelby</firstName> + <lastName>Chow-Wang</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>102</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>102</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Nelly Wood</full_name> - <first_name>Nelly</first_name> - <last_name>Wood</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Nelly Wood</fullName> + <firstName>Nelly</firstName> + <lastName>Wood</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>103</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>103</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jackie Morgan</full_name> - <first_name>Jackie</first_name> - <last_name>Morgan</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jackie Morgan</fullName> + <firstName>Jackie</firstName> + <lastName>Morgan</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>103</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>103</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gavin Boje</full_name> - <first_name>Gavin</first_name> - <last_name>Boje</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Gavin Boje</fullName> + <firstName>Gavin</firstName> + <lastName>Boje</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>103</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>103</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Marlene Tsujimoto</full_name> - <first_name>Marlene</first_name> - <last_name>Tsujimoto</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Marlene Tsujimoto</fullName> + <firstName>Marlene</firstName> + <lastName>Tsujimoto</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>103</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>103</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>RitaIva Bouton</full_name> - <first_name>RitaIva</first_name> - <last_name>Bouton</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>RitaIva Bouton</fullName> + <firstName>RitaIva</firstName> + <lastName>Bouton</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>103</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>103</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Hall</full_name> - <first_name>Mary</first_name> - <last_name>Hall</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mary Hall</fullName> + <firstName>Mary</firstName> + <lastName>Hall</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>162</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>162</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Rachel Minarick</full_name> - <first_name>Rachel</first_name> - <last_name>Minarick</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Rachel Minarick</fullName> + <firstName>Rachel</firstName> + <lastName>Minarick</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>162</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>162</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dorine Los Olmos</full_name> - <first_name>Dorine</first_name> - <last_name>Los Olmos</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Dorine Los Olmos</fullName> + <firstName>Dorine</firstName> + <lastName>Los Olmos</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>162</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>162</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dave Garner</full_name> - <first_name>Dave</first_name> - <last_name>Garner</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Dave Garner</fullName> + <firstName>Dave</firstName> + <lastName>Garner</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>162</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>162</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lois Leong</full_name> - <first_name>Lois</first_name> - <last_name>Leong</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Lois Leong</fullName> + <firstName>Lois</firstName> + <lastName>Leong</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>162</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>162</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Larasa Tate</full_name> - <first_name>Larasa</first_name> - <last_name>Tate</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Larasa Tate</fullName> + <firstName>Larasa</firstName> + <lastName>Tate</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>163</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>163</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>David Watson</full_name> - <first_name>David</first_name> - <last_name>Watson</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>David Watson</fullName> + <firstName>David</firstName> + <lastName>Watson</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>163</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>163</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>James Frank</full_name> - <first_name>James</first_name> - <last_name>Frank</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>James Frank</fullName> + <firstName>James</firstName> + <lastName>Frank</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>163</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>163</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Alfredo Wood</full_name> - <first_name>Alfredo</first_name> - <last_name>Wood</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Alfredo Wood</fullName> + <firstName>Alfredo</firstName> + <lastName>Wood</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>163</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>163</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dorothy Baird</full_name> - <first_name>Dorothy</first_name> - <last_name>Baird</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Dorothy Baird</fullName> + <firstName>Dorothy</firstName> + <lastName>Baird</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>163</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>163</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>George Jans</full_name> - <first_name>George</first_name> - <last_name>Jans</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>George Jans</fullName> + <firstName>George</firstName> + <lastName>Jans</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>164</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>164</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Bernadine Garrison</full_name> - <first_name>Bernadine</first_name> - <last_name>Garrison</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Bernadine Garrison</fullName> + <firstName>Bernadine</firstName> + <lastName>Garrison</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>164</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>164</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Doris Traube</full_name> - <first_name>Doris</first_name> - <last_name>Traube</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Doris Traube</fullName> + <firstName>Doris</firstName> + <lastName>Traube</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>424</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>424</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Cathy Sloan</full_name> - <first_name>Cathy</first_name> - <last_name>Sloan</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Cathy Sloan</fullName> + <firstName>Cathy</firstName> + <lastName>Sloan</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>424</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>424</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Homer Villa</full_name> - <first_name>Homer</first_name> - <last_name>Villa</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Homer Villa</fullName> + <firstName>Homer</firstName> + <lastName>Villa</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>424</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>424</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Deena Herman</full_name> - <first_name>Deena</first_name> - <last_name>Herman</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Deena Herman</fullName> + <firstName>Deena</firstName> + <lastName>Herman</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>424</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>424</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Leota Roberts</full_name> - <first_name>Leota</first_name> - <last_name>Roberts</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Leota Roberts</fullName> + <firstName>Leota</firstName> + <lastName>Roberts</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>424</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>424</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Mc Clane</full_name> - <first_name>John</first_name> - <last_name>Mc Clane</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>John Mc Clane</fullName> + <firstName>John</firstName> + <lastName>Mc Clane</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>425</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>425</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jennifer Maxham</full_name> - <first_name>Jennifer</first_name> - <last_name>Maxham</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jennifer Maxham</fullName> + <firstName>Jennifer</firstName> + <lastName>Maxham</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>425</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>425</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Elizabeth Sullivan</full_name> - <first_name>Elizabeth</first_name> - <last_name>Sullivan</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Elizabeth Sullivan</fullName> + <firstName>Elizabeth</firstName> + <lastName>Sullivan</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>425</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>425</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Irene Watada</full_name> - <first_name>Irene</first_name> - <last_name>Watada</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Irene Watada</fullName> + <firstName>Irene</firstName> + <lastName>Watada</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>425</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>425</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Constance Rhiger</full_name> - <first_name>Constance</first_name> - <last_name>Rhiger</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Constance Rhiger</fullName> + <firstName>Constance</firstName> + <lastName>Rhiger</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>425</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>425</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Rhoda Finley</full_name> - <first_name>Rhoda</first_name> - <last_name>Finley</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Rhoda Finley</fullName> + <firstName>Rhoda</firstName> + <lastName>Finley</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>426</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>426</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kathleen Winter</full_name> - <first_name>Kathleen</first_name> - <last_name>Winter</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Kathleen Winter</fullName> + <firstName>Kathleen</firstName> + <lastName>Winter</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>426</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>426</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Carla Adams</full_name> - <first_name>Carla</first_name> - <last_name>Adams</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Carla Adams</fullName> + <firstName>Carla</firstName> + <lastName>Adams</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>426</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>426</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Vanessa Tench</full_name> - <first_name>Vanessa</first_name> - <last_name>Tench</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Vanessa Tench</fullName> + <firstName>Vanessa</firstName> + <lastName>Tench</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>426</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>426</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Carol Brink</full_name> - <first_name>Carol</first_name> - <last_name>Brink</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Carol Brink</fullName> + <firstName>Carol</firstName> + <lastName>Brink</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>426</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>426</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Michael Lee</full_name> - <first_name>Michael</first_name> - <last_name>Lee</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Michael Lee</fullName> + <firstName>Michael</firstName> + <lastName>Lee</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>485</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>485</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Walter Maes</full_name> - <first_name>Walter</first_name> - <last_name>Maes</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Walter Maes</fullName> + <firstName>Walter</firstName> + <lastName>Maes</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>485</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>485</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ramona Antrim</full_name> - <first_name>Ramona</first_name> - <last_name>Antrim</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ramona Antrim</fullName> + <firstName>Ramona</firstName> + <lastName>Antrim</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>485</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>485</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Liam Friedland</full_name> - <first_name>Liam</first_name> - <last_name>Friedland</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Liam Friedland</fullName> + <firstName>Liam</firstName> + <lastName>Friedland</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>485</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>485</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Charles Strange</full_name> - <first_name>Charles</first_name> - <last_name>Strange</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Charles Strange</fullName> + <firstName>Charles</firstName> + <lastName>Strange</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>485</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>485</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>William Richter</full_name> - <first_name>William</first_name> - <last_name>Richter</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>William Richter</fullName> + <firstName>William</firstName> + <lastName>Richter</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>486</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>486</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Maxwell Amland</full_name> - <first_name>Maxwell</first_name> - <last_name>Amland</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Maxwell Amland</fullName> + <firstName>Maxwell</firstName> + <lastName>Amland</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>486</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>486</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Z . T. Milton Albury</full_name> - <first_name>Z . T. Milton</first_name> - <last_name>Albury</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Z . T. Milton Albury</fullName> + <firstName>Z . T. Milton</firstName> + <lastName>Albury</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>486</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>486</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Marie Richmeier</full_name> - <first_name>Marie</first_name> - <last_name>Richmeier</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Marie Richmeier</fullName> + <firstName>Marie</firstName> + <lastName>Richmeier</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>486</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>486</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jodan Jacobson</full_name> - <first_name>Jodan</first_name> - <last_name>Jacobson</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jodan Jacobson</fullName> + <firstName>Jodan</firstName> + <lastName>Jacobson</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>486</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>486</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>David Bartness</full_name> - <first_name>David</first_name> - <last_name>Bartness</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>David Bartness</fullName> + <firstName>David</firstName> + <lastName>Bartness</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>487</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>487</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Teanna Cobb</full_name> - <first_name>Teanna</first_name> - <last_name>Cobb</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Teanna Cobb</fullName> + <firstName>Teanna</firstName> + <lastName>Cobb</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>487</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>487</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>M. E. Joseph Lique</full_name> - <first_name>M. E. Joseph</first_name> - <last_name>Lique</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>M. E. Joseph Lique</fullName> + <firstName>M. E. Joseph</firstName> + <lastName>Lique</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>487</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>487</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Robert Bernacchi</full_name> - <first_name>Robert</first_name> - <last_name>Bernacchi</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Robert Bernacchi</fullName> + <firstName>Robert</firstName> + <lastName>Bernacchi</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>487</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>487</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Patricia Zubaty</full_name> - <first_name>Patricia</first_name> - <last_name>Zubaty</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Patricia Zubaty</fullName> + <firstName>Patricia</firstName> + <lastName>Zubaty</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>487</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>487</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Pamala Kotc</full_name> - <first_name>Pamala</first_name> - <last_name>Kotc</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Pamala Kotc</fullName> + <firstName>Pamala</firstName> + <lastName>Kotc</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>546</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Marlin Coriell</full_name> - <first_name>Marlin</first_name> - <last_name>Coriell</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Marlin Coriell</fullName> + <firstName>Marlin</firstName> + <lastName>Coriell</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>546</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Clay Warthen</full_name> - <first_name>Clay</first_name> - <last_name>Warthen</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Clay Warthen</fullName> + <firstName>Clay</firstName> + <lastName>Warthen</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>546</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Greg Johnson</full_name> - <first_name>Greg</first_name> - <last_name>Johnson</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Greg Johnson</fullName> + <firstName>Greg</firstName> + <lastName>Johnson</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>546</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>George Huckaby</full_name> - <first_name>George</first_name> - <last_name>Huckaby</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>George Huckaby</fullName> + <firstName>George</firstName> + <lastName>Huckaby</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>546</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Faith Gustafson</full_name> - <first_name>Faith</first_name> - <last_name>Gustafson</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Faith Gustafson</fullName> + <firstName>Faith</firstName> + <lastName>Gustafson</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>546</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>546</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Donald Thompson</full_name> - <first_name>Donald</first_name> - <last_name>Thompson</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Donald Thompson</fullName> + <firstName>Donald</firstName> + <lastName>Thompson</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>547</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Valentina Hendricks</full_name> - <first_name>Valentina</first_name> - <last_name>Hendricks</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Valentina Hendricks</fullName> + <firstName>Valentina</firstName> + <lastName>Hendricks</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>547</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mae Black</full_name> - <first_name>Mae</first_name> - <last_name>Black</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mae Black</fullName> + <firstName>Mae</firstName> + <lastName>Black</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>547</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Carlos Vansant</full_name> - <first_name>Carlos</first_name> - <last_name>Vansant</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Carlos Vansant</fullName> + <firstName>Carlos</firstName> + <lastName>Vansant</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>547</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Richard Bentley</full_name> - <first_name>Richard</first_name> - <last_name>Bentley</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Richard Bentley</fullName> + <firstName>Richard</firstName> + <lastName>Bentley</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>547</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Thomas Ritacco</full_name> - <first_name>Thomas</first_name> - <last_name>Ritacco</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Thomas Ritacco</fullName> + <firstName>Thomas</firstName> + <lastName>Ritacco</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>547</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>547</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Karen Theisen</full_name> - <first_name>Karen</first_name> - <last_name>Theisen</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Karen Theisen</fullName> + <firstName>Karen</firstName> + <lastName>Theisen</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>548</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Berger</full_name> - <first_name>John</first_name> - <last_name>Berger</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>John Berger</fullName> + <firstName>John</firstName> + <lastName>Berger</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>548</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Joy Koski</full_name> - <first_name>Joy</first_name> - <last_name>Koski</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Joy Koski</fullName> + <firstName>Joy</firstName> + <lastName>Koski</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>548</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Duane Fitzgerald</full_name> - <first_name>Duane</first_name> - <last_name>Fitzgerald</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Duane Fitzgerald</fullName> + <firstName>Duane</firstName> + <lastName>Fitzgerald</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>548</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lindsey Camacho</full_name> - <first_name>Lindsey</first_name> - <last_name>Camacho</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Lindsey Camacho</fullName> + <firstName>Lindsey</firstName> + <lastName>Camacho</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>548</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Selena Alvarado</full_name> - <first_name>Selena</first_name> - <last_name>Alvarado</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Selena Alvarado</fullName> + <firstName>Selena</firstName> + <lastName>Alvarado</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>548</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>548</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Merrill Steel</full_name> - <first_name>Merrill</first_name> - <last_name>Steel</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Merrill Steel</fullName> + <firstName>Merrill</firstName> + <lastName>Steel</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>621</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>621</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Melissa Marple</full_name> - <first_name>Melissa</first_name> - <last_name>Marple</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Melissa Marple</fullName> + <firstName>Melissa</firstName> + <lastName>Marple</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>621</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>621</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ann Evans</full_name> - <first_name>Ann</first_name> - <last_name>Evans</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ann Evans</fullName> + <firstName>Ann</firstName> + <lastName>Evans</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>622</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>622</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Shirley Bruner</full_name> - <first_name>Shirley</first_name> - <last_name>Bruner</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Shirley Bruner</fullName> + <firstName>Shirley</firstName> + <lastName>Bruner</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>622</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>622</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lee Whitcomb</full_name> - <first_name>Lee</first_name> - <last_name>Whitcomb</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Lee Whitcomb</fullName> + <firstName>Lee</firstName> + <lastName>Whitcomb</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>226</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>226</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Brian Turcios</full_name> - <first_name>Brian</first_name> - <last_name>Turcios</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Brian Turcios</fullName> + <firstName>Brian</firstName> + <lastName>Turcios</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>226</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>226</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jennifer Confetti</full_name> - <first_name>Jennifer</first_name> - <last_name>Confetti</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jennifer Confetti</fullName> + <firstName>Jennifer</firstName> + <lastName>Confetti</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>226</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>226</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Geneva Takemura</full_name> - <first_name>Geneva</first_name> - <last_name>Takemura</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Geneva Takemura</fullName> + <firstName>Geneva</firstName> + <lastName>Takemura</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>226</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>226</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lynn Campbell</full_name> - <first_name>Lynn</first_name> - <last_name>Campbell</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Lynn Campbell</fullName> + <firstName>Lynn</firstName> + <lastName>Campbell</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>226</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>226</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Nina Smith</full_name> - <first_name>Nina</first_name> - <last_name>Smith</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Nina Smith</fullName> + <firstName>Nina</firstName> + <lastName>Smith</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>227</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>227</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Darrell Vuong</full_name> - <first_name>Darrell</first_name> - <last_name>Vuong</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Darrell Vuong</fullName> + <firstName>Darrell</firstName> + <lastName>Vuong</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>227</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>227</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Eric Abbott</full_name> - <first_name>Eric</first_name> - <last_name>Abbott</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Eric Abbott</fullName> + <firstName>Eric</firstName> + <lastName>Abbott</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>227</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>227</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Doris Liff</full_name> - <first_name>Doris</first_name> - <last_name>Liff</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Doris Liff</fullName> + <firstName>Doris</firstName> + <lastName>Liff</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>227</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>227</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Steinberg</full_name> - <first_name>John</first_name> - <last_name>Steinberg</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>John Steinberg</fullName> + <firstName>John</firstName> + <lastName>Steinberg</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>227</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>227</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jerry Megel</full_name> - <first_name>Jerry</first_name> - <last_name>Megel</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jerry Megel</fullName> + <firstName>Jerry</firstName> + <lastName>Megel</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>228</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>228</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Styles</full_name> - <first_name>John</first_name> - <last_name>Styles</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>John Styles</fullName> + <firstName>John</firstName> + <lastName>Styles</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>228</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>228</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Shirley Head</full_name> - <first_name>Shirley</first_name> - <last_name>Head</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Shirley Head</fullName> + <firstName>Shirley</firstName> + <lastName>Head</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>228</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>228</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>James Story</full_name> - <first_name>James</first_name> - <last_name>Story</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>James Story</fullName> + <firstName>James</firstName> + <lastName>Story</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>228</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>228</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jean Boone</full_name> - <first_name>Jean</first_name> - <last_name>Boone</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jean Boone</fullName> + <firstName>Jean</firstName> + <lastName>Boone</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>228</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>228</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>James Haugh</full_name> - <first_name>James</first_name> - <last_name>Haugh</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>James Haugh</fullName> + <firstName>James</firstName> + <lastName>Haugh</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>287</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Paula Moberly</full_name> - <first_name>Paula</first_name> - <last_name>Moberly</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Paula Moberly</fullName> + <firstName>Paula</firstName> + <lastName>Moberly</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>287</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Eric Meyer</full_name> - <first_name>Eric</first_name> - <last_name>Meyer</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Eric Meyer</fullName> + <firstName>Eric</firstName> + <lastName>Meyer</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>287</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gloria Orona</full_name> - <first_name>Gloria</first_name> - <last_name>Orona</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Gloria Orona</fullName> + <firstName>Gloria</firstName> + <lastName>Orona</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>287</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ruth Warmack</full_name> - <first_name>Ruth</first_name> - <last_name>Warmack</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ruth Warmack</fullName> + <firstName>Ruth</firstName> + <lastName>Warmack</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>287</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Joanna Wall</full_name> - <first_name>Joanna</first_name> - <last_name>Wall</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Joanna Wall</fullName> + <firstName>Joanna</firstName> + <lastName>Wall</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>287</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>287</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sabria Appelbaum</full_name> - <first_name>Sabria</first_name> - <last_name>Appelbaum</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Sabria Appelbaum</fullName> + <firstName>Sabria</firstName> + <lastName>Appelbaum</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>288</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jeffrey Kung</full_name> - <first_name>Jeffrey</first_name> - <last_name>Kung</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jeffrey Kung</fullName> + <firstName>Jeffrey</firstName> + <lastName>Kung</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>288</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gloria Wilson</full_name> - <first_name>Gloria</first_name> - <last_name>Wilson</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Gloria Wilson</fullName> + <firstName>Gloria</firstName> + <lastName>Wilson</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>288</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Phyllis Tuffield</full_name> - <first_name>Phyllis</first_name> - <last_name>Tuffield</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Phyllis Tuffield</fullName> + <firstName>Phyllis</firstName> + <lastName>Tuffield</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>288</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Patricia Ping</full_name> - <first_name>Patricia</first_name> - <last_name>Ping</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Patricia Ping</fullName> + <firstName>Patricia</firstName> + <lastName>Ping</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>288</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>David Shepard</full_name> - <first_name>David</first_name> - <last_name>Shepard</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>David Shepard</fullName> + <firstName>David</firstName> + <lastName>Shepard</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>288</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>288</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>James Bailey</full_name> - <first_name>James</first_name> - <last_name>Bailey</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>James Bailey</fullName> + <firstName>James</firstName> + <lastName>Bailey</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>289</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Susan Chestnut</full_name> - <first_name>Susan</first_name> - <last_name>Chestnut</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Susan Chestnut</fullName> + <firstName>Susan</firstName> + <lastName>Chestnut</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>289</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Delia Toone</full_name> - <first_name>Delia</first_name> - <last_name>Toone</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Delia Toone</fullName> + <firstName>Delia</firstName> + <lastName>Toone</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>289</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Thomas Armstrong</full_name> - <first_name>Thomas</first_name> - <last_name>Armstrong</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Thomas Armstrong</fullName> + <firstName>Thomas</firstName> + <lastName>Armstrong</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>289</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Billstrom</full_name> - <first_name>Mary</first_name> - <last_name>Billstrom</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mary Billstrom</fullName> + <firstName>Mary</firstName> + <lastName>Billstrom</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>289</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Robert Stotka</full_name> - <first_name>Robert</first_name> - <last_name>Stotka</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Robert Stotka</fullName> + <firstName>Robert</firstName> + <lastName>Stotka</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>289</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>289</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>David Givens</full_name> - <first_name>David</first_name> - <last_name>Givens</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>David Givens</fullName> + <firstName>David</firstName> + <lastName>Givens</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>363</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>363</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Glenna Beanston</full_name> - <first_name>Glenna</first_name> - <last_name>Beanston</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Glenna Beanston</fullName> + <firstName>Glenna</firstName> + <lastName>Beanston</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>363</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>363</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dirk Bruno</full_name> - <first_name>Dirk</first_name> - <last_name>Bruno</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Dirk Bruno</fullName> + <firstName>Dirk</firstName> + <lastName>Bruno</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>363</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>363</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Alexander Berger</full_name> - <first_name>Alexander</first_name> - <last_name>Berger</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Alexander Berger</fullName> + <firstName>Alexander</firstName> + <lastName>Berger</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>363</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>363</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Marcia Sultan</full_name> - <first_name>Marcia</first_name> - <last_name>Sultan</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Marcia Sultan</fullName> + <firstName>Marcia</firstName> + <lastName>Sultan</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>363</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>363</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Martin Svoboda</full_name> - <first_name>Martin</first_name> - <last_name>Svoboda</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Martin Svoboda</fullName> + <firstName>Martin</firstName> + <lastName>Svoboda</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>364</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>364</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Tullao</full_name> - <first_name>Mary</first_name> - <last_name>Tullao</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Mary Tullao</fullName> + <firstName>Mary</firstName> + <lastName>Tullao</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>364</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>364</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Irene Hernandez</full_name> - <first_name>Irene</first_name> - <last_name>Hernandez</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Irene Hernandez</fullName> + <firstName>Irene</firstName> + <lastName>Hernandez</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>364</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>364</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jay Saxema Wilkie</full_name> - <first_name>Jay Saxema</first_name> - <last_name>Wilkie</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Jay Saxema Wilkie</fullName> + <firstName>Jay Saxema</firstName> + <lastName>Wilkie</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>364</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>364</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sean Lunt</full_name> - <first_name>Sean</first_name> - <last_name>Lunt</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Sean Lunt</fullName> + <firstName>Sean</firstName> + <lastName>Lunt</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>364</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>364</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Paul Fulton</full_name> - <first_name>Paul</first_name> - <last_name>Fulton</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Paul Fulton</fullName> + <firstName>Paul</firstName> + <lastName>Fulton</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>365</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>365</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Rudolph Dillon</full_name> - <first_name>Rudolph</first_name> - <last_name>Dillon</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Rudolph Dillon</fullName> + <firstName>Rudolph</firstName> + <lastName>Dillon</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>365</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>365</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Matthew Miller</full_name> - <first_name>Matthew</first_name> - <last_name>Miller</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Matthew Miller</fullName> + <firstName>Matthew</firstName> + <lastName>Miller</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>365</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>365</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Vassar Stern</full_name> - <first_name>Vassar</first_name> - <last_name>Stern</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Vassar Stern</fullName> + <firstName>Vassar</firstName> + <lastName>Stern</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>365</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>365</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ruth Suffin</full_name> - <first_name>Ruth</first_name> - <last_name>Suffin</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1996</hire_date> - <end_date></end_date> + <fullName>Ruth Suffin</fullName> + <firstName>Ruth</firstName> + <lastName>Suffin</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1996</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>365</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>365</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Judy Caravello</full_name> - <first_name>Judy</first_name> - <last_name>Caravello</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Judy Caravello</fullName> + <firstName>Judy</firstName> + <lastName>Caravello</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>948</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Marilyn Paulson</full_name> - <first_name>Marilyn</first_name> - <last_name>Paulson</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Marilyn Paulson</fullName> + <firstName>Marilyn</firstName> + <lastName>Paulson</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>948</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>James Trujillo</full_name> - <first_name>James</first_name> - <last_name>Trujillo</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>James Trujillo</fullName> + <firstName>James</firstName> + <lastName>Trujillo</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>948</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>M. Barajas</full_name> - <first_name>M.</first_name> - <last_name>Barajas</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>M. Barajas</fullName> + <firstName>M.</firstName> + <lastName>Barajas</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>948</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kara Ealey</full_name> - <first_name>Kara</first_name> - <last_name>Ealey</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Kara Ealey</fullName> + <firstName>Kara</firstName> + <lastName>Ealey</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>948</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Frederick Pigman</full_name> - <first_name>Frederick</first_name> - <last_name>Pigman</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Frederick Pigman</fullName> + <firstName>Frederick</firstName> + <lastName>Pigman</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>949</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ruth Minniear</full_name> - <first_name>Ruth</first_name> - <last_name>Minniear</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ruth Minniear</fullName> + <firstName>Ruth</firstName> + <lastName>Minniear</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>949</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Macario Robinson</full_name> - <first_name>Macario</first_name> - <last_name>Robinson</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Macario Robinson</fullName> + <firstName>Macario</firstName> + <lastName>Robinson</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>949</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Corrie Steger</full_name> - <first_name>Corrie</first_name> - <last_name>Steger</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Corrie Steger</fullName> + <firstName>Corrie</firstName> + <lastName>Steger</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>949</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Rebecca Lindsey</full_name> - <first_name>Rebecca</first_name> - <last_name>Lindsey</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Rebecca Lindsey</fullName> + <firstName>Rebecca</firstName> + <lastName>Lindsey</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>949</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dennis Larson</full_name> - <first_name>Dennis</first_name> - <last_name>Larson</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Dennis Larson</fullName> + <firstName>Dennis</firstName> + <lastName>Larson</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>949</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>949</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Thomas Kamas</full_name> - <first_name>Thomas</first_name> - <last_name>Kamas</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>05.10.1976</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Thomas Kamas</fullName> + <firstName>Thomas</firstName> + <lastName>Kamas</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>05.10.1976</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1020</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1020</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Anthony Barr</full_name> - <first_name>Anthony</first_name> - <last_name>Barr</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>05.10.1976</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Anthony Barr</fullName> + <firstName>Anthony</firstName> + <lastName>Barr</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>05.10.1976</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1020</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1020</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Amy Petranoff</full_name> - <first_name>Amy</first_name> - <last_name>Petranoff</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>05.10.1976</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Amy Petranoff</fullName> + <firstName>Amy</firstName> + <lastName>Petranoff</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>05.10.1976</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1020</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1020</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Marcia ONeill</full_name> - <first_name>Marcia</first_name> - <last_name>ONeill</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>05.10.1976</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Marcia ONeill</fullName> + <firstName>Marcia</firstName> + <lastName>ONeill</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>05.10.1976</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1020</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1020</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Marilyn McDonald</full_name> - <first_name>Marilyn</first_name> - <last_name>McDonald</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>05.10.1976</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Marilyn McDonald</fullName> + <firstName>Marilyn</firstName> + <lastName>McDonald</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>05.10.1976</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1021</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1021</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Long</full_name> - <first_name>John</first_name> - <last_name>Long</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>John Long</fullName> + <firstName>John</firstName> + <lastName>Long</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>640</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Edwin Olenzek</full_name> - <first_name>Edwin</first_name> - <last_name>Olenzek</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Edwin Olenzek</fullName> + <firstName>Edwin</firstName> + <lastName>Olenzek</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>640</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jessie Valerio</full_name> - <first_name>Jessie</first_name> - <last_name>Valerio</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jessie Valerio</fullName> + <firstName>Jessie</firstName> + <lastName>Valerio</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>640</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Robert Ahlering</full_name> - <first_name>Robert</first_name> - <last_name>Ahlering</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Robert Ahlering</fullName> + <firstName>Robert</firstName> + <lastName>Ahlering</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>640</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Megan Burke</full_name> - <first_name>Megan</first_name> - <last_name>Burke</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Megan Burke</fullName> + <firstName>Megan</firstName> + <lastName>Burke</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>640</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Karel Bates</full_name> - <first_name>Karel</first_name> - <last_name>Bates</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Karel Bates</fullName> + <firstName>Karel</firstName> + <lastName>Bates</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>640</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>640</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mike White</full_name> - <first_name>Mike</first_name> - <last_name>White</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Mike White</fullName> + <firstName>Mike</firstName> + <lastName>White</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>641</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Marty Simpson</full_name> - <first_name>Marty</first_name> - <last_name>Simpson</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Marty Simpson</fullName> + <firstName>Marty</firstName> + <lastName>Simpson</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>641</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Robert Jones</full_name> - <first_name>Robert</first_name> - <last_name>Jones</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Robert Jones</fullName> + <firstName>Robert</firstName> + <lastName>Jones</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>641</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Raul Casts</full_name> - <first_name>Raul</first_name> - <last_name>Casts</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Raul Casts</fullName> + <firstName>Raul</firstName> + <lastName>Casts</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>641</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Bridget Browqett</full_name> - <first_name>Bridget</first_name> - <last_name>Browqett</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Bridget Browqett</fullName> + <firstName>Bridget</firstName> + <lastName>Browqett</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>641</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kay Kartz</full_name> - <first_name>Kay</first_name> - <last_name>Kartz</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Kay Kartz</fullName> + <firstName>Kay</firstName> + <lastName>Kartz</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>641</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>641</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Audrey Wold</full_name> - <first_name>Audrey</first_name> - <last_name>Wold</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Audrey Wold</fullName> + <firstName>Audrey</firstName> + <lastName>Wold</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>642</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Susan French</full_name> - <first_name>Susan</first_name> - <last_name>French</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Susan French</fullName> + <firstName>Susan</firstName> + <lastName>French</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>642</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Trish Pederson</full_name> - <first_name>Trish</first_name> - <last_name>Pederson</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Trish Pederson</fullName> + <firstName>Trish</firstName> + <lastName>Pederson</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>642</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Eric Renn</full_name> - <first_name>Eric</first_name> - <last_name>Renn</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Eric Renn</fullName> + <firstName>Eric</firstName> + <lastName>Renn</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>642</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Elizabeth Catalano</full_name> - <first_name>Elizabeth</first_name> - <last_name>Catalano</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Elizabeth Catalano</fullName> + <firstName>Elizabeth</firstName> + <lastName>Catalano</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>642</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Eric Coleman</full_name> - <first_name>Eric</first_name> - <last_name>Coleman</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Eric Coleman</fullName> + <firstName>Eric</firstName> + <lastName>Coleman</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>642</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>642</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Anna Townsend</full_name> - <first_name>Anna</first_name> - <last_name>Townsend</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Anna Townsend</fullName> + <firstName>Anna</firstName> + <lastName>Townsend</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>712</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>712</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Carol Ann Rockne</full_name> - <first_name>Carol Ann</first_name> - <last_name>Rockne</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Carol Ann Rockne</fullName> + <firstName>Carol Ann</firstName> + <lastName>Rockne</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>712</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>712</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Brenda Heaney</full_name> - <first_name>Brenda</first_name> - <last_name>Heaney</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Brenda Heaney</fullName> + <firstName>Brenda</firstName> + <lastName>Heaney</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>713</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>713</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Judith Karavites</full_name> - <first_name>Judith</first_name> - <last_name>Karavites</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Judith Karavites</fullName> + <firstName>Judith</firstName> + <lastName>Karavites</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>713</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>713</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Chris Bidelman</full_name> - <first_name>Chris</first_name> - <last_name>Bidelman</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Chris Bidelman</fullName> + <firstName>Chris</firstName> + <lastName>Bidelman</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>730</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>730</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Orlando Gee</full_name> - <first_name>Orlando</first_name> - <last_name>Gee</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Orlando Gee</fullName> + <firstName>Orlando</firstName> + <lastName>Gee</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>730</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>730</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sara Breer</full_name> - <first_name>Sara</first_name> - <last_name>Breer</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Sara Breer</fullName> + <firstName>Sara</firstName> + <lastName>Breer</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>731</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>731</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Norma Barrera</full_name> - <first_name>Norma</first_name> - <last_name>Barrera</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Norma Barrera</fullName> + <firstName>Norma</firstName> + <lastName>Barrera</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>731</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>731</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Shelly Wilson</full_name> - <first_name>Shelly</first_name> - <last_name>Wilson</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Shelly Wilson</fullName> + <firstName>Shelly</firstName> + <lastName>Wilson</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>749</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sean Leri</full_name> - <first_name>Sean</first_name> - <last_name>Leri</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Sean Leri</fullName> + <firstName>Sean</firstName> + <lastName>Leri</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>749</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mike Carr</full_name> - <first_name>Mike</first_name> - <last_name>Carr</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Mike Carr</fullName> + <firstName>Mike</firstName> + <lastName>Carr</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>749</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Steven Zobairi</full_name> - <first_name>Steven</first_name> - <last_name>Zobairi</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Steven Zobairi</fullName> + <firstName>Steven</firstName> + <lastName>Zobairi</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>749</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Aaron Zimmerman</full_name> - <first_name>Aaron</first_name> - <last_name>Zimmerman</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Aaron Zimmerman</fullName> + <firstName>Aaron</firstName> + <lastName>Zimmerman</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>749</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Sherfy</full_name> - <first_name>John</first_name> - <last_name>Sherfy</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>John Sherfy</fullName> + <firstName>John</firstName> + <lastName>Sherfy</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>749</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>749</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Albert Behnke</full_name> - <first_name>Albert</first_name> - <last_name>Behnke</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Albert Behnke</fullName> + <firstName>Albert</firstName> + <lastName>Behnke</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>750</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Taylor Tu</full_name> - <first_name>Taylor</first_name> - <last_name>Tu</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Taylor Tu</fullName> + <firstName>Taylor</firstName> + <lastName>Tu</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>750</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>W. Harris</full_name> - <first_name>W.</first_name> - <last_name>Harris</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>W. Harris</fullName> + <firstName>W.</firstName> + <lastName>Harris</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>750</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Cheryl Faubert</full_name> - <first_name>Cheryl</first_name> - <last_name>Faubert</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Cheryl Faubert</fullName> + <firstName>Cheryl</firstName> + <lastName>Faubert</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>750</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Margurite Bonilla</full_name> - <first_name>Margurite</first_name> - <last_name>Bonilla</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Margurite Bonilla</fullName> + <firstName>Margurite</firstName> + <lastName>Bonilla</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>750</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Hirschboeck</full_name> - <first_name>Mary</first_name> - <last_name>Hirschboeck</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Mary Hirschboeck</fullName> + <firstName>Mary</firstName> + <lastName>Hirschboeck</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>750</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>750</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jason VanHarn</full_name> - <first_name>Jason</first_name> - <last_name>VanHarn</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jason VanHarn</fullName> + <firstName>Jason</firstName> + <lastName>VanHarn</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>751</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Joyce Steffen</full_name> - <first_name>Joyce</first_name> - <last_name>Steffen</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Joyce Steffen</fullName> + <firstName>Joyce</firstName> + <lastName>Steffen</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>751</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Carol Flynn</full_name> - <first_name>Carol</first_name> - <last_name>Flynn</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Carol Flynn</fullName> + <firstName>Carol</firstName> + <lastName>Flynn</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>751</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ellis Richardson</full_name> - <first_name>Ellis</first_name> - <last_name>Richardson</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ellis Richardson</fullName> + <firstName>Ellis</firstName> + <lastName>Richardson</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>751</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>James Brew</full_name> - <first_name>James</first_name> - <last_name>Brew</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>James Brew</fullName> + <firstName>James</firstName> + <lastName>Brew</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>751</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Nadine Cook</full_name> - <first_name>Nadine</first_name> - <last_name>Cook</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Nadine Cook</fullName> + <firstName>Nadine</firstName> + <lastName>Cook</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>751</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>751</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Dephillipo</full_name> - <first_name>John</first_name> - <last_name>Dephillipo</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>John Dephillipo</fullName> + <firstName>John</firstName> + <lastName>Dephillipo</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>822</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>822</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Nellie Orando</full_name> - <first_name>Nellie</first_name> - <last_name>Orando</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Nellie Orando</fullName> + <firstName>Nellie</firstName> + <lastName>Orando</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>822</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>822</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Norman Troxell</full_name> - <first_name>Norman</first_name> - <last_name>Troxell</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Norman Troxell</fullName> + <firstName>Norman</firstName> + <lastName>Troxell</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>822</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>822</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Patrick Gabbard</full_name> - <first_name>Patrick</first_name> - <last_name>Gabbard</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Patrick Gabbard</fullName> + <firstName>Patrick</firstName> + <lastName>Gabbard</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>822</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>822</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ted Lebaron</full_name> - <first_name>Ted</first_name> - <last_name>Lebaron</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ted Lebaron</fullName> + <firstName>Ted</firstName> + <lastName>Lebaron</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>822</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>822</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Medra Hill</full_name> - <first_name>Medra</first_name> - <last_name>Hill</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Medra Hill</fullName> + <firstName>Medra</firstName> + <lastName>Hill</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>823</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>823</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Michael Butcher</full_name> - <first_name>Michael</first_name> - <last_name>Butcher</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Michael Butcher</fullName> + <firstName>Michael</firstName> + <lastName>Butcher</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>823</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>823</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Amy Taurman</full_name> - <first_name>Amy</first_name> - <last_name>Taurman</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Amy Taurman</fullName> + <firstName>Amy</firstName> + <lastName>Taurman</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>823</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>823</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lillie Rachak</full_name> - <first_name>Lillie</first_name> - <last_name>Rachak</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Lillie Rachak</fullName> + <firstName>Lillie</firstName> + <lastName>Rachak</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>823</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>823</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Loy Caro</full_name> - <first_name>Loy</first_name> - <last_name>Caro</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Loy Caro</fullName> + <firstName>Loy</firstName> + <lastName>Caro</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>823</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>823</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Beverly Robertson</full_name> - <first_name>Beverly</first_name> - <last_name>Robertson</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Beverly Robertson</fullName> + <firstName>Beverly</firstName> + <lastName>Robertson</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>824</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>824</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Margaret Potter</full_name> - <first_name>Margaret</first_name> - <last_name>Potter</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Margaret Potter</fullName> + <firstName>Margaret</firstName> + <lastName>Potter</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>824</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>824</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Maya Holmes</full_name> - <first_name>Maya</first_name> - <last_name>Holmes</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Maya Holmes</fullName> + <firstName>Maya</firstName> + <lastName>Holmes</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>824</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>824</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ryan Crouch</full_name> - <first_name>Ryan</first_name> - <last_name>Crouch</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ryan Crouch</fullName> + <firstName>Ryan</firstName> + <lastName>Crouch</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>824</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>824</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jason Henderson</full_name> - <first_name>Jason</first_name> - <last_name>Henderson</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jason Henderson</fullName> + <firstName>Jason</firstName> + <lastName>Henderson</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>824</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>824</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Susan Mc Nair</full_name> - <first_name>Susan</first_name> - <last_name>Mc Nair</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Susan Mc Nair</fullName> + <firstName>Susan</firstName> + <lastName>Mc Nair</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>886</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>886</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Wilfred Ceballos</full_name> - <first_name>Wilfred</first_name> - <last_name>Ceballos</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Wilfred Ceballos</fullName> + <firstName>Wilfred</firstName> + <lastName>Ceballos</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>886</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>886</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Georgia Landrum</full_name> - <first_name>Georgia</first_name> - <last_name>Landrum</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Georgia Landrum</fullName> + <firstName>Georgia</firstName> + <lastName>Landrum</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>886</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>886</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Niki Netz</full_name> - <first_name>Niki</first_name> - <last_name>Netz</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Niki Netz</fullName> + <firstName>Niki</firstName> + <lastName>Netz</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>886</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>886</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Carol Amyotte</full_name> - <first_name>Carol</first_name> - <last_name>Amyotte</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Carol Amyotte</fullName> + <firstName>Carol</firstName> + <lastName>Amyotte</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>886</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>886</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Brian Watson</full_name> - <first_name>Brian</first_name> - <last_name>Watson</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Brian Watson</fullName> + <firstName>Brian</firstName> + <lastName>Watson</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>887</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>887</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Waddle</full_name> - <first_name>Mary</first_name> - <last_name>Waddle</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Mary Waddle</fullName> + <firstName>Mary</firstName> + <lastName>Waddle</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>887</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>887</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Alice Shintani</full_name> - <first_name>Alice</first_name> - <last_name>Shintani</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Alice Shintani</fullName> + <firstName>Alice</firstName> + <lastName>Shintani</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>887</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>887</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Prudence Chavez</full_name> - <first_name>Prudence</first_name> - <last_name>Chavez</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Prudence Chavez</fullName> + <firstName>Prudence</firstName> + <lastName>Chavez</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>887</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>887</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>John Wilson</full_name> - <first_name>John</first_name> - <last_name>Wilson</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>31.01.1998</hire_date> - <end_date></end_date> + <fullName>John Wilson</fullName> + <firstName>John</firstName> + <lastName>Wilson</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>31.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>887</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>887</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>William Gill</full_name> - <first_name>William</first_name> - <last_name>Gill</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>William Gill</fullName> + <firstName>William</firstName> + <lastName>Gill</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>888</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>888</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Beverly Smallwood</full_name> - <first_name>Beverly</first_name> - <last_name>Smallwood</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Beverly Smallwood</fullName> + <firstName>Beverly</firstName> + <lastName>Smallwood</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>888</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>888</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>David Chavez</full_name> - <first_name>David</first_name> - <last_name>Chavez</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>David Chavez</fullName> + <firstName>David</firstName> + <lastName>Chavez</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>888</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>888</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Deborah Blackburn</full_name> - <first_name>Deborah</first_name> - <last_name>Blackburn</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Deborah Blackburn</fullName> + <firstName>Deborah</firstName> + <lastName>Blackburn</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>888</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>888</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Donald Abston</full_name> - <first_name>Donald</first_name> - <last_name>Abston</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Donald Abston</fullName> + <firstName>Donald</firstName> + <lastName>Abston</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>888</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>888</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Joan Carol</full_name> - <first_name>Joan</first_name> - <last_name>Carol</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Joan Carol</fullName> + <firstName>Joan</firstName> + <lastName>Carol</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>947</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ida Holmes</full_name> - <first_name>Ida</first_name> - <last_name>Holmes</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ida Holmes</fullName> + <firstName>Ida</firstName> + <lastName>Holmes</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>947</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lillian Chandler</full_name> - <first_name>Lillian</first_name> - <last_name>Chandler</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Lillian Chandler</fullName> + <firstName>Lillian</firstName> + <lastName>Chandler</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>947</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Marylou Burkett</full_name> - <first_name>Marylou</first_name> - <last_name>Burkett</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Marylou Burkett</fullName> + <firstName>Marylou</firstName> + <lastName>Burkett</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>947</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Melvin Drake</full_name> - <first_name>Melvin</first_name> - <last_name>Drake</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Melvin Drake</fullName> + <firstName>Melvin</firstName> + <lastName>Drake</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>947</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Natalie Barber</full_name> - <first_name>Natalie</first_name> - <last_name>Barber</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Natalie Barber</fullName> + <firstName>Natalie</firstName> + <lastName>Barber</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>947</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>947</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Eunice Richendollar</full_name> - <first_name>Eunice</first_name> - <last_name>Richendollar</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Eunice Richendollar</fullName> + <firstName>Eunice</firstName> + <lastName>Richendollar</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>948</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>948</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Verla Walter</full_name> - <first_name>Verla</first_name> - <last_name>Walter</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>05.10.1976</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Verla Walter</fullName> + <firstName>Verla</firstName> + <lastName>Walter</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>05.10.1976</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1021</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1021</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jean McGuin</full_name> - <first_name>Jean</first_name> - <last_name>McGuin</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>05.10.1976</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jean McGuin</fullName> + <firstName>Jean</firstName> + <lastName>McGuin</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>05.10.1976</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1021</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1021</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gilbert Amper</full_name> - <first_name>Gilbert</first_name> - <last_name>Amper</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>05.10.1976</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Gilbert Amper</fullName> + <firstName>Gilbert</firstName> + <lastName>Amper</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>05.10.1976</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1022</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1022</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Frances Hansen</full_name> - <first_name>Frances</first_name> - <last_name>Hansen</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>05.10.1976</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Frances Hansen</fullName> + <firstName>Frances</firstName> + <lastName>Hansen</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>05.10.1976</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1022</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>1022</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Virginia Craycraft</full_name> - <first_name>Virginia</first_name> - <last_name>Craycraft</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>05.10.1976</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Virginia Craycraft</fullName> + <firstName>Virginia</firstName> + <lastName>Craycraft</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>05.10.1976</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1022</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>1022</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Luther Flanigan</full_name> - <first_name>Luther</first_name> - <last_name>Flanigan</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Luther Flanigan</fullName> + <firstName>Luther</firstName> + <lastName>Flanigan</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1067</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Oleta Shanklin</full_name> - <first_name>Oleta</first_name> - <last_name>Shanklin</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Oleta Shanklin</fullName> + <firstName>Oleta</firstName> + <lastName>Shanklin</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1067</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Margaret Lewis</full_name> - <first_name>Margaret</first_name> - <last_name>Lewis</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Margaret Lewis</fullName> + <firstName>Margaret</firstName> + <lastName>Lewis</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1067</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Chris King</full_name> - <first_name>Chris</first_name> - <last_name>King</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Chris King</fullName> + <firstName>Chris</firstName> + <lastName>King</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1067</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Anna Frongillo</full_name> - <first_name>Anna</first_name> - <last_name>Frongillo</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Anna Frongillo</fullName> + <firstName>Anna</firstName> + <lastName>Frongillo</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1067</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sheila Stallings</full_name> - <first_name>Sheila</first_name> - <last_name>Stallings</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Sheila Stallings</fullName> + <firstName>Sheila</firstName> + <lastName>Stallings</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1067</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>1067</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Richard Yoshimura</full_name> - <first_name>Richard</first_name> - <last_name>Yoshimura</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Richard Yoshimura</fullName> + <firstName>Richard</firstName> + <lastName>Yoshimura</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1068</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Stacey Rowland</full_name> - <first_name>Stacey</first_name> - <last_name>Rowland</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Stacey Rowland</fullName> + <firstName>Stacey</firstName> + <lastName>Rowland</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1068</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Daniel Balleo</full_name> - <first_name>Daniel</first_name> - <last_name>Balleo</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Daniel Balleo</fullName> + <firstName>Daniel</firstName> + <lastName>Balleo</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1068</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Myrtle Maggard</full_name> - <first_name>Myrtle</first_name> - <last_name>Maggard</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Myrtle Maggard</fullName> + <firstName>Myrtle</firstName> + <lastName>Maggard</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1068</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Marin Bezic</full_name> - <first_name>Marin</first_name> - <last_name>Bezic</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Marin Bezic</fullName> + <firstName>Marin</firstName> + <lastName>Bezic</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1068</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Joan Staley</full_name> - <first_name>Joan</first_name> - <last_name>Staley</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Joan Staley</fullName> + <firstName>Joan</firstName> + <lastName>Staley</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1068</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1068</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Troy Lipford</full_name> - <first_name>Troy</first_name> - <last_name>Lipford</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Troy Lipford</fullName> + <firstName>Troy</firstName> + <lastName>Lipford</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1069</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Johann Winternitz</full_name> - <first_name>Johann</first_name> - <last_name>Winternitz</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Johann Winternitz</fullName> + <firstName>Johann</firstName> + <lastName>Winternitz</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1069</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ruben Burns</full_name> - <first_name>Ruben</first_name> - <last_name>Burns</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Ruben Burns</fullName> + <firstName>Ruben</firstName> + <lastName>Burns</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1069</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sepideh Cruz</full_name> - <first_name>Sepideh</first_name> - <last_name>Cruz</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Sepideh Cruz</fullName> + <firstName>Sepideh</firstName> + <lastName>Cruz</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1069</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Heather Geiermann</full_name> - <first_name>Heather</first_name> - <last_name>Geiermann</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Heather Geiermann</fullName> + <firstName>Heather</firstName> + <lastName>Geiermann</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1069</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>James Eichorn</full_name> - <first_name>James</first_name> - <last_name>Eichorn</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>James Eichorn</fullName> + <firstName>James</firstName> + <lastName>Eichorn</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1069</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>1069</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gail Pirnie</full_name> - <first_name>Gail</first_name> - <last_name>Pirnie</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Gail Pirnie</fullName> + <firstName>Gail</firstName> + <lastName>Pirnie</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1139</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1139</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Judy Doolittle</full_name> - <first_name>Judy</first_name> - <last_name>Doolittle</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Judy Doolittle</fullName> + <firstName>Judy</firstName> + <lastName>Doolittle</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1139</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1139</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Vivian Burnham</full_name> - <first_name>Vivian</first_name> - <last_name>Burnham</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Vivian Burnham</fullName> + <firstName>Vivian</firstName> + <lastName>Burnham</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1140</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1140</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kris Stand</full_name> - <first_name>Kris</first_name> - <last_name>Stand</last_name> - <position_title>Store Temporary Stocker</position_title> - <birth_date>02.02.1914</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Kris Stand</fullName> + <firstName>Kris</firstName> + <lastName>Stand</lastName> + <positionTitle>Store Temporary Stocker</positionTitle><Department><departmentDescription>Store Temporary Stocker</departmentDescription></Department> + <birthDate>02.02.1914</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>20</salary> - <supervisor_id>1140</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1140</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Temp Staff</management_role> + <managementRole>Store Temp Staff</managementRole> <profileimage></profileimage> </Employee> </Position> <Position> - <position_title>Store Permanent Butcher</position_title> - <pay_type>Monthly</pay_type> - <min_scale>6700</min_scale> - <max_scale>10000</max_scale> - <management_role>Store Full Time Staff</management_role> + <positionTitle>Store Permanent Butcher</positionTitle> + <payType>Monthly</payType> + <minScale>6700</minScale> + <maxScale>10000</maxScale> + <managementRole>Store Full Time Staff</managementRole> <Employee> - <full_name>Donald Gonzales</full_name> - <first_name>Donald</first_name> - <last_name>Gonzales</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Donald Gonzales</fullName> + <firstName>Donald</firstName> + <lastName>Gonzales</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>100</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>100</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sylvester Valdez</full_name> - <first_name>Sylvester</first_name> - <last_name>Valdez</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Sylvester Valdez</fullName> + <firstName>Sylvester</firstName> + <lastName>Valdez</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>100</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>100</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lois Griffin</full_name> - <first_name>Lois</first_name> - <last_name>Griffin</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Lois Griffin</fullName> + <firstName>Lois</firstName> + <lastName>Griffin</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>225</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>225</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Robert Guardamondo</full_name> - <first_name>Robert</first_name> - <last_name>Guardamondo</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Robert Guardamondo</fullName> + <firstName>Robert</firstName> + <lastName>Guardamondo</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>225</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>225</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Tom Jorgenson</full_name> - <first_name>Tom</first_name> - <last_name>Jorgenson</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Tom Jorgenson</fullName> + <firstName>Tom</firstName> + <lastName>Jorgenson</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>161</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>161</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dana Turner</full_name> - <first_name>Dana</first_name> - <last_name>Turner</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Dana Turner</fullName> + <firstName>Dana</firstName> + <lastName>Turner</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>161</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>161</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Zach Lovell</full_name> - <first_name>Zach</first_name> - <last_name>Lovell</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Zach Lovell</fullName> + <firstName>Zach</firstName> + <lastName>Lovell</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>53</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>53</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dave Ratcliff</full_name> - <first_name>Dave</first_name> - <last_name>Ratcliff</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Dave Ratcliff</fullName> + <firstName>Dave</firstName> + <lastName>Ratcliff</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>53</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>53</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Catherine Abel</full_name> - <first_name>Catherine</first_name> - <last_name>Abel</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Catherine Abel</fullName> + <firstName>Catherine</firstName> + <lastName>Abel</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>639</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>639</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Emilo Miller</full_name> - <first_name>Emilo</first_name> - <last_name>Miller</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Emilo Miller</fullName> + <firstName>Emilo</firstName> + <lastName>Miller</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>639</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>639</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Carolee Brown</full_name> - <first_name>Carolee</first_name> - <last_name>Brown</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Carolee Brown</fullName> + <firstName>Carolee</firstName> + <lastName>Brown</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>484</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>484</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Frances Giglio</full_name> - <first_name>Frances</first_name> - <last_name>Giglio</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Frances Giglio</fullName> + <firstName>Frances</firstName> + <lastName>Giglio</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>484</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>484</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kristin Watts</full_name> - <first_name>Kristin</first_name> - <last_name>Watts</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Kristin Watts</fullName> + <firstName>Kristin</firstName> + <lastName>Watts</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>545</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>545</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Carlos Short</full_name> - <first_name>Carlos</first_name> - <last_name>Short</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Carlos Short</fullName> + <firstName>Carlos</firstName> + <lastName>Short</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>545</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>545</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Charles Sanchez</full_name> - <first_name>Charles</first_name> - <last_name>Sanchez</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Charles Sanchez</fullName> + <firstName>Charles</firstName> + <lastName>Sanchez</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>286</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>286</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Wanda Parks</full_name> - <first_name>Wanda</first_name> - <last_name>Parks</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Wanda Parks</fullName> + <firstName>Wanda</firstName> + <lastName>Parks</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>286</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>286</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Steven Betsekas</full_name> - <first_name>Steven</first_name> - <last_name>Betsekas</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Steven Betsekas</fullName> + <firstName>Steven</firstName> + <lastName>Betsekas</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>362</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>362</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Arvid Ziegler</full_name> - <first_name>Arvid</first_name> - <last_name>Ziegler</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Arvid Ziegler</fullName> + <firstName>Arvid</firstName> + <lastName>Ziegler</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>362</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>362</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Tammy Khan</full_name> - <first_name>Tammy</first_name> - <last_name>Khan</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Tammy Khan</fullName> + <firstName>Tammy</firstName> + <lastName>Khan</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>423</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>423</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>David Brinkd</full_name> - <first_name>David</first_name> - <last_name>Brinkd</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>David Brinkd</fullName> + <firstName>David</firstName> + <lastName>Brinkd</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>423</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>423</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Chris Batouche</full_name> - <first_name>Chris</first_name> - <last_name>Batouche</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Chris Batouche</fullName> + <firstName>Chris</firstName> + <lastName>Batouche</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>1019</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1019</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Martha Marple</full_name> - <first_name>Martha</first_name> - <last_name>Marple</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Martha Marple</fullName> + <firstName>Martha</firstName> + <lastName>Marple</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>1019</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1019</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Megan Davis</full_name> - <first_name>Megan</first_name> - <last_name>Davis</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Megan Davis</fullName> + <firstName>Megan</firstName> + <lastName>Davis</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>748</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>748</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kerry Westgaard</full_name> - <first_name>Kerry</first_name> - <last_name>Westgaard</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Kerry Westgaard</fullName> + <firstName>Kerry</firstName> + <lastName>Westgaard</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>748</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>748</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Melissa Wheeler</full_name> - <first_name>Melissa</first_name> - <last_name>Wheeler</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Melissa Wheeler</fullName> + <firstName>Melissa</firstName> + <lastName>Wheeler</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>821</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>821</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Samantha Weller</full_name> - <first_name>Samantha</first_name> - <last_name>Weller</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Samantha Weller</fullName> + <firstName>Samantha</firstName> + <lastName>Weller</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>821</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>821</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jack Baccus</full_name> - <first_name>Jack</first_name> - <last_name>Baccus</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jack Baccus</fullName> + <firstName>Jack</firstName> + <lastName>Baccus</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>885</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>885</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Christopher Smith</full_name> - <first_name>Christopher</first_name> - <last_name>Smith</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Christopher Smith</fullName> + <firstName>Christopher</firstName> + <lastName>Smith</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>885</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>885</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Arturo Poisson</full_name> - <first_name>Arturo</first_name> - <last_name>Poisson</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Arturo Poisson</fullName> + <firstName>Arturo</firstName> + <lastName>Poisson</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>946</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>946</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Shaharia Cosby</full_name> - <first_name>Shaharia</first_name> - <last_name>Cosby</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Shaharia Cosby</fullName> + <firstName>Shaharia</firstName> + <lastName>Cosby</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>946</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>946</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Barbara Obaugh</full_name> - <first_name>Barbara</first_name> - <last_name>Obaugh</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Barbara Obaugh</fullName> + <firstName>Barbara</firstName> + <lastName>Obaugh</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>1066</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>1066</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Brett Hammons</full_name> - <first_name>Brett</first_name> - <last_name>Hammons</last_name> - <position_title>Store Permanent Butcher</position_title> - <birth_date>10.12.1960</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Brett Hammons</fullName> + <firstName>Brett</firstName> + <lastName>Hammons</lastName> + <positionTitle>Store Permanent Butcher</positionTitle><Department><departmentDescription>Store Permanent Butcher</departmentDescription></Department> + <birthDate>10.12.1960</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8500</salary> - <supervisor_id>1066</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>1066</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Full Time Staf</management_role> + <managementRole>Store Full Time Staf</managementRole> <profileimage></profileimage> </Employee> </Position> <Position> - <position_title>VP Country Manager</position_title> - <pay_type>Monthly</pay_type> - <min_scale>20000</min_scale> - <max_scale>40000</max_scale> - <management_role>Senior Management</management_role> + <positionTitle>VP Country Manager</positionTitle> + <payType>Monthly</payType> + <minScale>20000</minScale> + <maxScale>40000</maxScale> + <managementRole>Senior Management</managementRole> <Employee> - <full_name>Derrick Whelply</full_name> - <first_name>Derrick</first_name> - <last_name>Whelply</last_name> - <position_title>VP Country Manager</position_title> - <birth_date>03.07.1915</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Derrick Whelply</fullName> + <firstName>Derrick</firstName> + <lastName>Whelply</lastName> + <positionTitle>VP Country Manager</positionTitle><Department><departmentDescription>HQ General Management</departmentDescription></Department> + <birthDate>03.07.1915</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>40000</salary> - <supervisor_id>1</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Senior Management</management_role> + <managementRole>Senior Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Michael Spence</full_name> - <first_name>Michael</first_name> - <last_name>Spence</last_name> - <position_title>VP Country Manager</position_title> - <birth_date>20.06.1969</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Michael Spence</fullName> + <firstName>Michael</firstName> + <lastName>Spence</lastName> + <positionTitle>VP Country Manager</positionTitle><Department><departmentDescription>HQ General Management</departmentDescription></Department> + <birthDate>20.06.1969</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>40000</salary> - <supervisor_id>1</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Senior Management</management_role> + <managementRole>Senior Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Maya Gutierrez</full_name> - <first_name>Maya</first_name> - <last_name>Gutierrez</last_name> - <position_title>VP Country Manager</position_title> - <birth_date>10.05.1951</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Maya Gutierrez</fullName> + <firstName>Maya</firstName> + <lastName>Gutierrez</lastName> + <positionTitle>VP Country Manager</positionTitle><Department><departmentDescription>HQ General Management</departmentDescription></Department> + <birthDate>10.05.1951</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>35000</salary> - <supervisor_id>1</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Senior Management</management_role> + <managementRole>Senior Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Beverly Baker</full_name> - <first_name>Beverly</first_name> - <last_name>Baker</last_name> - <position_title>VP Country Manager</position_title> - <birth_date>16.04.1974</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Beverly Baker</fullName> + <firstName>Beverly</firstName> + <lastName>Baker</lastName> + <positionTitle>VP Country Manager</positionTitle><Department><departmentDescription>HQ General Management</departmentDescription></Department> + <birthDate>16.04.1974</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>30000</salary> - <supervisor_id>2</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>2</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Senior Management</management_role> + <managementRole>Senior Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Pedro Castillo</full_name> - <first_name>Pedro</first_name> - <last_name>Castillo</last_name> - <position_title>VP Country Manager</position_title> - <birth_date>04.11.1918</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Pedro Castillo</fullName> + <firstName>Pedro</firstName> + <lastName>Castillo</lastName> + <positionTitle>VP Country Manager</positionTitle><Department><departmentDescription>HQ General Management</departmentDescription></Department> + <birthDate>04.11.1918</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>35000</salary> - <supervisor_id>2</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>2</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Senior Management</management_role> + <managementRole>Senior Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Laurie Borges</full_name> - <first_name>Laurie</first_name> - <last_name>Borges</last_name> - <position_title>VP Country Manager</position_title> - <birth_date>07.10.1947</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Laurie Borges</fullName> + <firstName>Laurie</firstName> + <lastName>Borges</lastName> + <positionTitle>VP Country Manager</positionTitle><Department><departmentDescription>HQ General Management</departmentDescription></Department> + <birthDate>07.10.1947</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>35000</salary> - <supervisor_id>2</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>2</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Senior Management</management_role> + <managementRole>Senior Management</managementRole> <profileimage></profileimage> </Employee> </Position> <Position> - <position_title>VP Information Systems</position_title> - <pay_type>Monthly</pay_type> - <min_scale>12500</min_scale> - <max_scale>25000</max_scale> - <management_role>Senior Management</management_role> + <positionTitle>VP Information Systems</positionTitle> + <payType>Monthly</payType> + <minScale>12500</minScale> + <maxScale>25000</maxScale> + <managementRole>Senior Management</managementRole> <Employee> - <full_name>Roberta Damstra</full_name> - <first_name>Roberta</first_name> - <last_name>Damstra</last_name> - <position_title>VP Information Systems</position_title> - <birth_date>08.10.1942</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Roberta Damstra</fullName> + <firstName>Roberta</firstName> + <lastName>Damstra</lastName> + <positionTitle>VP Information Systems</positionTitle><Department><departmentDescription>HQ General Management</departmentDescription></Department> + <birthDate>08.10.1942</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>25000</salary> - <supervisor_id>1</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Senior Management</management_role> + <managementRole>Senior Management</managementRole> <profileimage></profileimage> </Employee> </Position> <Position> - <position_title>VP Human Resources</position_title> - <pay_type>Monthly</pay_type> - <min_scale>10000</min_scale> - <max_scale>20000</max_scale> - <management_role>Senior Management</management_role> + <positionTitle>VP Human Resources</positionTitle> + <payType>Monthly</payType> + <minScale>10000</minScale> + <maxScale>20000</maxScale> + <managementRole>Senior Management</managementRole> <Employee> - <full_name>Rebecca Kanagaki</full_name> - <first_name>Rebecca</first_name> - <last_name>Kanagaki</last_name> - <position_title>VP Human Resources</position_title> - <birth_date>27.03.1949</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Rebecca Kanagaki</fullName> + <firstName>Rebecca</firstName> + <lastName>Kanagaki</lastName> + <positionTitle>VP Human Resources</positionTitle><Department><departmentDescription>HQ General Management</departmentDescription></Department> + <birthDate>27.03.1949</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>15000</salary> - <supervisor_id>1</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Senior Management</management_role> + <managementRole>Senior Management</managementRole> <profileimage></profileimage> </Employee> </Position> <Position> - <position_title>VP Finance</position_title> - <pay_type>Monthly</pay_type> - <min_scale>17000</min_scale> - <max_scale>35000</max_scale> - <management_role>Senior Management</management_role> + <positionTitle>VP Finance</positionTitle> + <payType>Monthly</payType> + <minScale>17000</minScale> + <maxScale>35000</maxScale> + <managementRole>Senior Management</managementRole> <Employee> - <full_name>Darren Stanz</full_name> - <first_name>Darren</first_name> - <last_name>Stanz</last_name> - <position_title>VP Finance</position_title> - <birth_date>26.08.1949</birth_date> - <hire_date>01.12.1994</hire_date> - <end_date></end_date> + <fullName>Darren Stanz</fullName> + <firstName>Darren</firstName> + <lastName>Stanz</lastName> + <positionTitle>VP Finance</positionTitle><Department><departmentDescription>HQ General Management</departmentDescription></Department> + <birthDate>26.08.1949</birthDate> + <hireDate>01.12.1994</hireDate> + <endDate></endDate> <salary>50000</salary> - <supervisor_id>1</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>1</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Senior Management</management_role> + <managementRole>Senior Management</managementRole> <profileimage></profileimage> </Employee> </Position> <Position> - <position_title>Store Assistant Manager</position_title> - <pay_type>Monthly</pay_type> - <min_scale>6700</min_scale> - <max_scale>12500</max_scale> - <management_role>Store Management</management_role> + <positionTitle>Store Assistant Manager</positionTitle> + <payType>Monthly</payType> + <minScale>6700</minScale> + <maxScale>12500</maxScale> + <managementRole>Store Management</managementRole> <Employee> - <full_name>Mary Hunt</full_name> - <first_name>Mary</first_name> - <last_name>Hunt</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>24.12.1932</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Mary Hunt</fullName> + <firstName>Mary</firstName> + <lastName>Hunt</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.12.1932</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>13000</salary> - <supervisor_id>26</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>26</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Bunny McCown</full_name> - <first_name>Bunny</first_name> - <last_name>McCown</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>12.05.1972</birth_date> - <hire_date>01.05.1993</hire_date> - <end_date></end_date> + <fullName>Bunny McCown</fullName> + <firstName>Bunny</firstName> + <lastName>McCown</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>12.05.1972</birthDate> + <hireDate>01.05.1993</hireDate> + <endDate></endDate> <salary>8000</salary> - <supervisor_id>23</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>23</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Barbara Wallin</full_name> - <first_name>CBarbara</first_name> - <last_name>Wallin</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>24.12.1932</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Barbara Wallin</fullName> + <firstName>CBarbara</firstName> + <lastName>Wallin</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.12.1932</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>13000</salary> - <supervisor_id>27</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>27</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dell Gras</full_name> - <first_name>Dell</first_name> - <last_name>Gras</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>24.12.1932</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Dell Gras</fullName> + <firstName>Dell</firstName> + <lastName>Gras</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.12.1932</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>13000</salary> - <supervisor_id>28</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>28</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Paul Tays</full_name> - <first_name>Paul</first_name> - <last_name>Tays</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>24.12.1932</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Paul Tays</fullName> + <firstName>Paul</firstName> + <lastName>Tays</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.12.1932</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>12000</salary> - <supervisor_id>25</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>25</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Matthew Hunter</full_name> - <first_name>Matthew</first_name> - <last_name>Hunter</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>24.12.1932</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Matthew Hunter</fullName> + <firstName>Matthew</firstName> + <lastName>Hunter</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.12.1932</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>13000</salary> - <supervisor_id>33</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>33</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dick Brummer</full_name> - <first_name>Dick</first_name> - <last_name>Brummer</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>12.05.1972</birth_date> - <hire_date>01.05.1993</hire_date> - <end_date></end_date> + <fullName>Dick Brummer</fullName> + <firstName>Dick</firstName> + <lastName>Brummer</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>12.05.1972</birthDate> + <hireDate>01.05.1993</hireDate> + <endDate></endDate> <salary>7900</salary> - <supervisor_id>34</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>34</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gregory Whiting</full_name> - <first_name>Gregory</first_name> - <last_name>Whiting</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>12.05.1972</birth_date> - <hire_date>01.05.1993</hire_date> - <end_date></end_date> + <fullName>Gregory Whiting</fullName> + <firstName>Gregory</firstName> + <lastName>Whiting</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>12.05.1972</birthDate> + <hireDate>01.05.1993</hireDate> + <endDate></endDate> <salary>10000</salary> - <supervisor_id>35</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>35</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Michael John Troyer</full_name> - <first_name>Michael John</first_name> - <last_name>Troyer</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>24.12.1932</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Michael John Troyer</fullName> + <firstName>Michael John</firstName> + <lastName>Troyer</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.12.1932</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>13000</salary> - <supervisor_id>18</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>18</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Ralph Mccoy</full_name> - <first_name>Ralph</first_name> - <last_name>Mccoy</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>24.12.1932</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Ralph Mccoy</fullName> + <firstName>Ralph</firstName> + <lastName>Mccoy</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.12.1932</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>13000</salary> - <supervisor_id>24</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>24</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Danielle Johnson</full_name> - <first_name>Danielle</first_name> - <last_name>Johnson</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>12.05.1972</birth_date> - <hire_date>01.05.1993</hire_date> - <end_date></end_date> + <fullName>Danielle Johnson</fullName> + <firstName>Danielle</firstName> + <lastName>Johnson</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>12.05.1972</birthDate> + <hireDate>01.05.1993</hireDate> + <endDate></endDate> <salary>8000</salary> - <supervisor_id>29</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>29</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Shanay Steelman</full_name> - <first_name>Shanay</first_name> - <last_name>Steelman</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>24.12.1932</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Shanay Steelman</fullName> + <firstName>Shanay</firstName> + <lastName>Steelman</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.12.1932</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>13000</salary> - <supervisor_id>30</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>30</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kristine Cleary</full_name> - <first_name>Kristine</first_name> - <last_name>Cleary</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>24.12.1932</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Kristine Cleary</fullName> + <firstName>Kristine</firstName> + <lastName>Cleary</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.12.1932</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>13000</salary> - <supervisor_id>31</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>31</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Monita Heyer</full_name> - <first_name>Monita</first_name> - <last_name>Heyer</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>24.12.1932</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Monita Heyer</fullName> + <firstName>Monita</firstName> + <lastName>Heyer</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.12.1932</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>12000</salary> - <supervisor_id>15</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>15</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lawrence Hurkett</full_name> - <first_name>Lawrence</first_name> - <last_name>Hurkett</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>12.05.1972</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Lawrence Hurkett</fullName> + <firstName>Lawrence</firstName> + <lastName>Hurkett</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>12.05.1972</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>10000</salary> - <supervisor_id>19</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>19</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Donna Carreras</full_name> - <first_name>Donna</first_name> - <last_name>Carreras</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>12.05.1972</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Donna Carreras</fullName> + <firstName>Donna</firstName> + <lastName>Carreras</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>12.05.1972</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>10000</salary> - <supervisor_id>8</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>8</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Wayne Banack</full_name> - <first_name>Wayne</first_name> - <last_name>Banack</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>24.12.1932</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Wayne Banack</fullName> + <firstName>Wayne</firstName> + <lastName>Banack</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.12.1932</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>13000</salary> - <supervisor_id>9</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>9</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>James Thompson</full_name> - <first_name>James</first_name> - <last_name>Thompson</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>24.12.1932</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>James Thompson</fullName> + <firstName>James</firstName> + <lastName>Thompson</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.12.1932</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>13000</salary> - <supervisor_id>11</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>11</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Leda Witte</full_name> - <first_name>Leda</first_name> - <last_name>Witte</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>12.05.1972</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Leda Witte</fullName> + <firstName>Leda</firstName> + <lastName>Witte</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>12.05.1972</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7900</salary> - <supervisor_id>12</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>12</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Roberta Sturgel</full_name> - <first_name>Roberta</first_name> - <last_name>Sturgel</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>24.12.1932</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Roberta Sturgel</fullName> + <firstName>Roberta</firstName> + <lastName>Sturgel</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.12.1932</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>13000</salary> - <supervisor_id>13</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>13</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>J. Scott Blauvelt</full_name> - <first_name>J. Scott</first_name> - <last_name>Blauvelt</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>24.12.1932</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>J. Scott Blauvelt</fullName> + <firstName>J. Scott</firstName> + <lastName>Blauvelt</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.12.1932</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>13000</salary> - <supervisor_id>14</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>14</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>David Johnson</full_name> - <first_name>David12</first_name> - <last_name>Johnson</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>24.12.1932</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>David Johnson</fullName> + <firstName>David12</firstName> + <lastName>Johnson</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.12.1932</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>13000</salary> - <supervisor_id>16</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>16</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jeanette Belsey</full_name> - <first_name>Jeanette</first_name> - <last_name>Belsey</last_name> - <position_title>Store Assistant Manager</position_title> - <birth_date>12.05.1972</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jeanette Belsey</fullName> + <firstName>Jeanette</firstName> + <lastName>Belsey</lastName> + <positionTitle>Store Assistant Manager</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>12.05.1972</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>10000</salary> - <supervisor_id>17</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>17</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> </Position> <Position> - <position_title>Store Shift Supervisor</position_title> - <pay_type>Monthly</pay_type> - <min_scale>6700</min_scale> - <max_scale>8500</max_scale> - <management_role>Store Management</management_role> + <positionTitle>Store Shift Supervisor</positionTitle> + <payType>Monthly</payType> + <minScale>6700</minScale> + <maxScale>8500</maxScale> + <managementRole>Store Management</managementRole> <Employee> - <full_name>Libby Allen</full_name> - <first_name>Libby</first_name> - <last_name>Allen</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Libby Allen</fullName> + <firstName>Libby</firstName> + <lastName>Allen</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8900</salary> - <supervisor_id>100</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>100</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Bonnie Bruno</full_name> - <first_name>Bonnie</first_name> - <last_name>Bruno</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Bonnie Bruno</fullName> + <firstName>Bonnie</firstName> + <lastName>Bruno</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>100</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>100</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Angela Bowers</full_name> - <first_name>Angela</first_name> - <last_name>Bowers</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Angela Bowers</fullName> + <firstName>Angela</firstName> + <lastName>Bowers</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>100</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>F</marital_status> + <supervisorId>100</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>F</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage>3a5003d8-c75c-441a-a630-9094631cbdff</profileimage> </Employee> <Employee> - <full_name>Michael Bruha</full_name> - <first_name>Michael</first_name> - <last_name>Bruha</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Michael Bruha</fullName> + <firstName>Michael</firstName> + <lastName>Bruha</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8900</salary> - <supervisor_id>225</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>225</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Michael Suggs</full_name> - <first_name>Michael</first_name> - <last_name>Suggs</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Michael Suggs</fullName> + <firstName>Michael</firstName> + <lastName>Suggs</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>225</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>225</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kenneth Turner</full_name> - <first_name>Kenneth</first_name> - <last_name>Turner</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Kenneth Turner</fullName> + <firstName>Kenneth</firstName> + <lastName>Turner</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>225</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>225</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Christopher Solano</full_name> - <first_name>Christopher</first_name> - <last_name>Solano</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Christopher Solano</fullName> + <firstName>Christopher</firstName> + <lastName>Solano</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8900</salary> - <supervisor_id>161</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>161</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>George Armstrong</full_name> - <first_name>George</first_name> - <last_name>Armstrong</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>George Armstrong</fullName> + <firstName>George</firstName> + <lastName>Armstrong</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>161</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>161</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kristine Aldred</full_name> - <first_name>Kristine</first_name> - <last_name>Aldred</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Kristine Aldred</fullName> + <firstName>Kristine</firstName> + <lastName>Aldred</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>161</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>161</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Cheryl Thorton</full_name> - <first_name>Cheryl</first_name> - <last_name>Thorton</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Cheryl Thorton</fullName> + <firstName>Cheryl</firstName> + <lastName>Thorton</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>9000</salary> - <supervisor_id>53</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>53</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gary Dumin</full_name> - <first_name>Gary</first_name> - <last_name>Dumin</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Gary Dumin</fullName> + <firstName>Gary</firstName> + <lastName>Dumin</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8000</salary> - <supervisor_id>53</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>53</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Pat Chin</full_name> - <first_name>Pat</first_name> - <last_name>Chin</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Pat Chin</fullName> + <firstName>Pat</firstName> + <lastName>Chin</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>53</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>53</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Monk Skonnard</full_name> - <first_name>Monk</first_name> - <last_name>Skonnard</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Monk Skonnard</fullName> + <firstName>Monk</firstName> + <lastName>Skonnard</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>639</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>639</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Christopher Beck</full_name> - <first_name>Christopher</first_name> - <last_name>Beck</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Christopher Beck</fullName> + <firstName>Christopher</firstName> + <lastName>Beck</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>639</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>639</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Constance Posner</full_name> - <first_name>Constance</first_name> - <last_name>Posner</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Constance Posner</fullName> + <firstName>Constance</firstName> + <lastName>Posner</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8900</salary> - <supervisor_id>484</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>484</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>William Hapke</full_name> - <first_name>William</first_name> - <last_name>Hapke</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>William Hapke</fullName> + <firstName>William</firstName> + <lastName>Hapke</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>484</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>484</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Joshua Huff</full_name> - <first_name>Joshua</first_name> - <last_name>Huff</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Joshua Huff</fullName> + <firstName>Joshua</firstName> + <lastName>Huff</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>484</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>484</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Florence Vonholt</full_name> - <first_name>Florence</first_name> - <last_name>Vonholt</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Florence Vonholt</fullName> + <firstName>Florence</firstName> + <lastName>Vonholt</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8900</salary> - <supervisor_id>545</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>545</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Eddie Holmes</full_name> - <first_name>Eddie</first_name> - <last_name>Holmes</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Eddie Holmes</fullName> + <firstName>Eddie</firstName> + <lastName>Holmes</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>545</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>545</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gerald Drury</full_name> - <first_name>Gerald</first_name> - <last_name>Drury</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Gerald Drury</fullName> + <firstName>Gerald</firstName> + <lastName>Drury</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>545</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>545</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Martha Espinoza</full_name> - <first_name>Martha</first_name> - <last_name>Espinoza</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Martha Espinoza</fullName> + <firstName>Martha</firstName> + <lastName>Espinoza</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8900</salary> - <supervisor_id>621</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>621</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mary Sandidge</full_name> - <first_name>Mary</first_name> - <last_name>Sandidge</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Mary Sandidge</fullName> + <firstName>Mary</firstName> + <lastName>Sandidge</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8900</salary> - <supervisor_id>639</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>639</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Anne Tuck</full_name> - <first_name>Anne</first_name> - <last_name>Tuck</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Anne Tuck</fullName> + <firstName>Anne</firstName> + <lastName>Tuck</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8900</salary> - <supervisor_id>286</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>286</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage>a8ba9355-ecbf-4e16-8058-4fa1c1d1f591</profileimage> </Employee> <Employee> - <full_name>Joy Sincich</full_name> - <first_name>Joy</first_name> - <last_name>Sincich</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Joy Sincich</fullName> + <firstName>Joy</firstName> + <lastName>Sincich</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>286</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>286</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Bertha Jameson</full_name> - <first_name>Bertha</first_name> - <last_name>Jameson</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Bertha Jameson</fullName> + <firstName>Bertha</firstName> + <lastName>Jameson</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>286</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>286</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Frances Adams</full_name> - <first_name>Frances</first_name> - <last_name>Adams</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Frances Adams</fullName> + <firstName>Frances</firstName> + <lastName>Adams</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8900</salary> - <supervisor_id>362</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>362</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Alma Poorbaugh</full_name> - <first_name>Alma</first_name> - <last_name>Poorbaugh</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Alma Poorbaugh</fullName> + <firstName>Alma</firstName> + <lastName>Poorbaugh</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>362</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>F</marital_status> + <supervisorId>362</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>F</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage>beea7482-3fa6-4c9e-a06a-277ca9a9cdc0</profileimage> </Employee> <Employee> - <full_name>Neal Hasty</full_name> - <first_name>Neal</first_name> - <last_name>Hasty</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Neal Hasty</fullName> + <firstName>Neal</firstName> + <lastName>Hasty</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>362</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>362</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jaunita Homax</full_name> - <first_name>Jaunita</first_name> - <last_name>Homax</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Jaunita Homax</fullName> + <firstName>Jaunita</firstName> + <lastName>Homax</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8900</salary> - <supervisor_id>423</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>423</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Margaret Adams</full_name> - <first_name>Margaret</first_name> - <last_name>Adams</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Margaret Adams</fullName> + <firstName>Margaret</firstName> + <lastName>Adams</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>423</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>423</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Carla Zubaty</full_name> - <first_name>Carla</first_name> - <last_name>Zubaty</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1997</hire_date> - <end_date></end_date> + <fullName>Carla Zubaty</fullName> + <firstName>Carla</firstName> + <lastName>Zubaty</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1997</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>423</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>423</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kim Clifford</full_name> - <first_name>Kim</first_name> - <last_name>Clifford</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Kim Clifford</fullName> + <firstName>Kim</firstName> + <lastName>Clifford</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>9000</salary> - <supervisor_id>1019</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>1019</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lucille Smith</full_name> - <first_name>Lucille</first_name> - <last_name>Smith</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Lucille Smith</fullName> + <firstName>Lucille</firstName> + <lastName>Smith</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8000</salary> - <supervisor_id>1019</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>1019</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Sara Pettengill</full_name> - <first_name>Sara</first_name> - <last_name>Pettengill</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Sara Pettengill</fullName> + <firstName>Sara</firstName> + <lastName>Pettengill</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8900</salary> - <supervisor_id>712</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>712</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Gladys Mendiola</full_name> - <first_name>Gladys</first_name> - <last_name>Mendiola</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Gladys Mendiola</fullName> + <firstName>Gladys</firstName> + <lastName>Mendiola</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8900</salary> - <supervisor_id>730</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>730</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Jacob Dean</full_name> - <first_name>Jacob2</first_name> - <last_name>Dean</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Jacob Dean</fullName> + <firstName>Jacob2</firstName> + <lastName>Dean</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8900</salary> - <supervisor_id>748</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>748</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Kendra Thompson</full_name> - <first_name>Kendra</first_name> - <last_name>Thompson</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Kendra Thompson</fullName> + <firstName>Kendra</firstName> + <lastName>Thompson</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>748</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>748</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Liza Marie Stevens</full_name> - <first_name>Liza Marie</first_name> - <last_name>Stevens</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Liza Marie Stevens</fullName> + <firstName>Liza Marie</firstName> + <lastName>Stevens</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>748</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>748</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Rodney Gentry</full_name> - <first_name>Rodney</first_name> - <last_name>Gentry</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Rodney Gentry</fullName> + <firstName>Rodney</firstName> + <lastName>Gentry</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8900</salary> - <supervisor_id>821</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>821</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Lillian Heckman</full_name> - <first_name>Lillian</first_name> - <last_name>Heckman</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Lillian Heckman</fullName> + <firstName>Lillian</firstName> + <lastName>Heckman</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>821</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>S</marital_status> + <supervisorId>821</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Donald Reasoner</full_name> - <first_name>Donald</first_name> - <last_name>Reasoner</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Donald Reasoner</fullName> + <firstName>Donald</firstName> + <lastName>Reasoner</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>821</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>821</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Norman Gambao</full_name> - <first_name>Norman</first_name> - <last_name>Gambao</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Norman Gambao</fullName> + <firstName>Norman</firstName> + <lastName>Gambao</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8900</salary> - <supervisor_id>885</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>885</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Dorothy Snow</full_name> - <first_name>Dorothy</first_name> - <last_name>Snow</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Dorothy Snow</fullName> + <firstName>Dorothy</firstName> + <lastName>Snow</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>885</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>885</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Julia Vaughn</full_name> - <first_name>Julia</first_name> - <last_name>Vaughn</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Julia Vaughn</fullName> + <firstName>Julia</firstName> + <lastName>Vaughn</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>885</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>885</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Curtis Wardley</full_name> - <first_name>Curtis</first_name> - <last_name>Wardley</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Curtis Wardley</fullName> + <firstName>Curtis</firstName> + <lastName>Wardley</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8900</salary> - <supervisor_id>946</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>946</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Matthew Durocher</full_name> - <first_name>Matthew</first_name> - <last_name>Durocher</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Matthew Durocher</fullName> + <firstName>Matthew</firstName> + <lastName>Durocher</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>946</supervisor_id> - <education_level>High School Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>946</supervisorId> + <educationLevel>High School Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Hazel Terbush</full_name> - <first_name>Hazel</first_name> - <last_name>Terbush</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Hazel Terbush</fullName> + <firstName>Hazel</firstName> + <lastName>Terbush</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>946</supervisor_id> - <education_level>Bachelors Degree</education_level> - <marital_status>M</marital_status> + <supervisorId>946</supervisorId> + <educationLevel>Bachelors Degree</educationLevel> + <maritalStatus>M</maritalStatus> <gender>F</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Marjorie Marlowe</full_name> - <first_name>Marjorie</first_name> - <last_name>Marlowe</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Marjorie Marlowe</fullName> + <firstName>Marjorie</firstName> + <lastName>Marlowe</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8900</salary> - <supervisor_id>1066</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>M</marital_status> + <supervisorId>1066</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Edward Ortiz</full_name> - <first_name>Edward</first_name> - <last_name>Ortiz</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Edward Ortiz</fullName> + <firstName>Edward</firstName> + <lastName>Ortiz</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8200</salary> - <supervisor_id>1066</supervisor_id> - <education_level>Graduate Degree</education_level> - <marital_status>S</marital_status> + <supervisorId>1066</supervisorId> + <educationLevel>Graduate Degree</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Michael Michaels</full_name> - <first_name>Michael</first_name> - <last_name>Michaels</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Michael Michaels</fullName> + <firstName>Michael</firstName> + <lastName>Michaels</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>7000</salary> - <supervisor_id>1066</supervisor_id> - <education_level>Partial High School</education_level> - <marital_status>M</marital_status> + <supervisorId>1066</supervisorId> + <educationLevel>Partial High School</educationLevel> + <maritalStatus>M</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> <Employee> - <full_name>Mona Jaramillo</full_name> - <first_name>Mona</first_name> - <last_name>Jaramillo</last_name> - <position_title>Store Shift Supervisor</position_title> - <birth_date>24.09.1961</birth_date> - <hire_date>01.01.1998</hire_date> - <end_date></end_date> + <fullName>Mona Jaramillo</fullName> + <firstName>Mona</firstName> + <lastName>Jaramillo</lastName> + <positionTitle>Store Shift Supervisor</positionTitle><Department><departmentDescription>Store Management</departmentDescription></Department> + <birthDate>24.09.1961</birthDate> + <hireDate>01.01.1998</hireDate> + <endDate></endDate> <salary>8900</salary> - <supervisor_id>1139</supervisor_id> - <education_level>Partial College</education_level> - <marital_status>S</marital_status> + <supervisorId>1139</supervisorId> + <educationLevel>Partial College</educationLevel> + <maritalStatus>S</maritalStatus> <gender>M</gender> - <management_role>Store Management</management_role> + <managementRole>Store Management</managementRole> <profileimage></profileimage> </Employee> </Position> -</vector> \ No newline at end of file +</vector>
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/products.xml b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/products.xml index 2ad6120..36f3b73 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/products.xml +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/products.xml
@@ -1,24062 +1,24062 @@ <vector> - <Product_class> + <ProductClass> <product_subcategory>Nuts</product_subcategory> <product_category>Specialty</product_category> <product_department>Produce</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Almonds</product_name> + <brandName>High Top</brandName> + <productName>High Top Almonds</productName> <sku>83459433913</sku> <srp>1,7699999809</srp> - <gross_weight>8,720000267</gross_weight> - <net_weight>6,7199997902</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>17,6000003815</shelf_width> - <shelf_height>13</shelf_height> - <shelf_depth>10,3999996185</shelf_depth> + <grossWeight>8,720000267</grossWeight> + <netWeight>6,7199997902</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>17,6000003815</shelfWidth> + <shelfHeight>13</shelfHeight> + <shelfDepth>10,3999996185</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Mixed Nuts</product_name> + <brandName>High Top</brandName> + <productName>High Top Mixed Nuts</productName> <sku>86064931750</sku> <srp>2,7100000381</srp> - <gross_weight>13,8999996185</gross_weight> - <net_weight>11,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>4,9600000381</shelf_width> - <shelf_height>11,8000001907</shelf_height> - <shelf_depth>5</shelf_depth> + <grossWeight>13,8999996185</grossWeight> + <netWeight>11,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>4,9600000381</shelfWidth> + <shelfHeight>11,8000001907</shelfHeight> + <shelfDepth>5</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Canned Peanuts</product_name> + <brandName>High Top</brandName> + <productName>High Top Canned Peanuts</productName> <sku>50672228932</sku> <srp>2,1099998951</srp> - <gross_weight>10,8999996185</gross_weight> - <net_weight>7,8899998665</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>22,6000003815</shelf_width> - <shelf_height>19,6000003815</shelf_height> - <shelf_depth>17,7999992371</shelf_depth> + <grossWeight>10,8999996185</grossWeight> + <netWeight>7,8899998665</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>22,6000003815</shelfWidth> + <shelfHeight>19,6000003815</shelfHeight> + <shelfDepth>17,7999992371</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Walnuts</product_name> + <brandName>High Top</brandName> + <productName>High Top Walnuts</productName> <sku>94892939925</sku> <srp>2,7200000286</srp> - <gross_weight>14,5</gross_weight> - <net_weight>12,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>4,5999999046</shelf_width> - <shelf_height>12,1000003815</shelf_height> - <shelf_depth>14</shelf_depth> + <grossWeight>14,5</grossWeight> + <netWeight>12,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>4,5999999046</shelfWidth> + <shelfHeight>12,1000003815</shelfHeight> + <shelfDepth>14</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Party Nuts</product_name> + <brandName>High Top</brandName> + <productName>High Top Party Nuts</productName> <sku>35291112065</sku> <srp>2,8199999332</srp> - <gross_weight>21,6000003815</gross_weight> - <net_weight>19,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>8,5600004196</shelf_width> - <shelf_height>14,5</shelf_height> - <shelf_depth>4,9299998283</shelf_depth> + <grossWeight>21,6000003815</grossWeight> + <netWeight>19,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>8,5600004196</shelfWidth> + <shelfHeight>14,5</shelfHeight> + <shelfDepth>4,9299998283</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Almonds</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Almonds</productName> <sku>98175169825</sku> <srp>1,6799999475</srp> - <gross_weight>17,2000007629</gross_weight> - <net_weight>14,1999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>21</shelf_width> - <shelf_height>15,1000003815</shelf_height> - <shelf_depth>15,1000003815</shelf_depth> + <grossWeight>17,2000007629</grossWeight> + <netWeight>14,1999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>21</shelfWidth> + <shelfHeight>15,1000003815</shelfHeight> + <shelfDepth>15,1000003815</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Mixed Nuts</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Mixed Nuts</productName> <sku>60824422240</sku> <srp>0,9499999881</srp> - <gross_weight>8,2899999619</gross_weight> - <net_weight>7,2800002098</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>22,2999992371</shelf_width> - <shelf_height>10,3000001907</shelf_height> - <shelf_depth>4,6599998474</shelf_depth> + <grossWeight>8,2899999619</grossWeight> + <netWeight>7,2800002098</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>22,2999992371</shelfWidth> + <shelfHeight>10,3000001907</shelfHeight> + <shelfDepth>4,6599998474</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Canned Peanuts</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Canned Peanuts</productName> <sku>68879042267</sku> <srp>1,2899999619</srp> - <gross_weight>19,3999996185</gross_weight> - <net_weight>17,2999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>10,8999996185</shelf_width> - <shelf_height>22,3999996185</shelf_height> - <shelf_depth>3,0399999619</shelf_depth> + <grossWeight>19,3999996185</grossWeight> + <netWeight>17,2999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>10,8999996185</shelfWidth> + <shelfHeight>22,3999996185</shelfHeight> + <shelfDepth>3,0399999619</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Walnuts</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Walnuts</productName> <sku>20813052058</sku> <srp>2,3900001049</srp> - <gross_weight>18,7999992371</gross_weight> - <net_weight>16,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>9,6800003052</shelf_width> - <shelf_height>3,9000000954</shelf_height> - <shelf_depth>5,0100002289</shelf_depth> + <grossWeight>18,7999992371</grossWeight> + <netWeight>16,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>9,6800003052</shelfWidth> + <shelfHeight>3,9000000954</shelfHeight> + <shelfDepth>5,0100002289</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Party Nuts</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Party Nuts</productName> <sku>84476624131</sku> <srp>1,1799999475</srp> - <gross_weight>20,8999996185</gross_weight> - <net_weight>17,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>6,3000001907</shelf_width> - <shelf_height>20,3999996185</shelf_height> - <shelf_depth>7,4899997711</shelf_depth> + <grossWeight>20,8999996185</grossWeight> + <netWeight>17,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>6,3000001907</shelfWidth> + <shelfHeight>20,3999996185</shelfHeight> + <shelfDepth>7,4899997711</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Almonds</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Almonds</productName> <sku>92249944806</sku> <srp>3,6800000668</srp> - <gross_weight>11,5</gross_weight> - <net_weight>8,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>15,1999998093</shelf_width> - <shelf_height>6,5900001526</shelf_height> - <shelf_depth>12,1999998093</shelf_depth> + <grossWeight>11,5</grossWeight> + <netWeight>8,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>15,1999998093</shelfWidth> + <shelfHeight>6,5900001526</shelfHeight> + <shelfDepth>12,1999998093</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Mixed Nuts</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Mixed Nuts</productName> <sku>67198563218</sku> <srp>1,8500000238</srp> - <gross_weight>21,7999992371</gross_weight> - <net_weight>19,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>6,9400000572</shelf_width> - <shelf_height>9,0100002289</shelf_height> - <shelf_depth>15,1999998093</shelf_depth> + <grossWeight>21,7999992371</grossWeight> + <netWeight>19,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>6,9400000572</shelfWidth> + <shelfHeight>9,0100002289</shelfHeight> + <shelfDepth>15,1999998093</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Canned Peanuts</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Canned Peanuts</productName> <sku>77130557894</sku> <srp>3,4000000954</srp> - <gross_weight>7,8699998856</gross_weight> - <net_weight>6,8600001335</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>11,6000003815</shelf_width> - <shelf_height>9,5</shelf_height> - <shelf_depth>3,9000000954</shelf_depth> + <grossWeight>7,8699998856</grossWeight> + <netWeight>6,8600001335</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>11,6000003815</shelfWidth> + <shelfHeight>9,5</shelfHeight> + <shelfDepth>3,9000000954</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Walnuts</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Walnuts</productName> <sku>13683450818</sku> <srp>1,6299999952</srp> - <gross_weight>15,6000003815</gross_weight> - <net_weight>13,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>7,0399999619</shelf_width> - <shelf_height>15,8000001907</shelf_height> - <shelf_depth>10,8999996185</shelf_depth> + <grossWeight>15,6000003815</grossWeight> + <netWeight>13,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>7,0399999619</shelfWidth> + <shelfHeight>15,8000001907</shelfHeight> + <shelfDepth>10,8999996185</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Party Nuts</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Party Nuts</productName> <sku>94798375964</sku> <srp>2,8499999046</srp> - <gross_weight>11,3000001907</gross_weight> - <net_weight>9,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>12,8000001907</shelf_width> - <shelf_height>11,8999996185</shelf_height> - <shelf_depth>7,7699999809</shelf_depth> + <grossWeight>11,3000001907</grossWeight> + <netWeight>9,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>12,8000001907</shelfWidth> + <shelfHeight>11,8999996185</shelfHeight> + <shelfDepth>7,7699999809</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Almonds</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Almonds</productName> <sku>68382779955</sku> <srp>1,5399999619</srp> - <gross_weight>17,5</gross_weight> - <net_weight>15,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>17,2000007629</shelf_width> - <shelf_height>12</shelf_height> - <shelf_depth>18</shelf_depth> + <grossWeight>17,5</grossWeight> + <netWeight>15,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>17,2000007629</shelfWidth> + <shelfHeight>12</shelfHeight> + <shelfDepth>18</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Mixed Nuts</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Mixed Nuts</productName> <sku>99463810324</sku> <srp>1,7599999905</srp> - <gross_weight>8,6899995804</gross_weight> - <net_weight>7,6799998283</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>11,5</shelf_width> - <shelf_height>8,720000267</shelf_height> - <shelf_depth>21,8999996185</shelf_depth> + <grossWeight>8,6899995804</grossWeight> + <netWeight>7,6799998283</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>11,5</shelfWidth> + <shelfHeight>8,720000267</shelfHeight> + <shelfDepth>21,8999996185</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Canned Peanuts</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Canned Peanuts</productName> <sku>79042897820</sku> <srp>0,8500000238</srp> - <gross_weight>21,2000007629</gross_weight> - <net_weight>18,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>6,9600000381</shelf_width> - <shelf_height>19,7999992371</shelf_height> - <shelf_depth>4,9299998283</shelf_depth> + <grossWeight>21,2000007629</grossWeight> + <netWeight>18,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>6,9600000381</shelfWidth> + <shelfHeight>19,7999992371</shelfHeight> + <shelfDepth>4,9299998283</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Walnuts</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Walnuts</productName> <sku>92501375079</sku> <srp>0,8799999952</srp> - <gross_weight>19,7000007629</gross_weight> - <net_weight>16,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>4,9299998283</shelf_width> - <shelf_height>6,4099998474</shelf_height> - <shelf_depth>22,7000007629</shelf_depth> + <grossWeight>19,7000007629</grossWeight> + <netWeight>16,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>4,9299998283</shelfWidth> + <shelfHeight>6,4099998474</shelfHeight> + <shelfDepth>22,7000007629</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Party Nuts</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Party Nuts</productName> <sku>27074561715</sku> <srp>2,6300001144</srp> - <gross_weight>13,6000003815</gross_weight> - <net_weight>12,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>21,2000007629</shelf_width> - <shelf_height>4,5900001526</shelf_height> - <shelf_depth>17,7000007629</shelf_depth> + <grossWeight>13,6000003815</grossWeight> + <netWeight>12,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>21,2000007629</shelfWidth> + <shelfHeight>4,5900001526</shelfHeight> + <shelfDepth>17,7000007629</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Almonds</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Almonds</productName> <sku>49780083298</sku> <srp>1,7599999905</srp> - <gross_weight>11,1999998093</gross_weight> - <net_weight>9,1899995804</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>8,4399995804</shelf_width> - <shelf_height>13,8000001907</shelf_height> - <shelf_depth>17,7000007629</shelf_depth> + <grossWeight>11,1999998093</grossWeight> + <netWeight>9,1899995804</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>8,4399995804</shelfWidth> + <shelfHeight>13,8000001907</shelfHeight> + <shelfDepth>17,7000007629</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Mixed Nuts</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Mixed Nuts</productName> <sku>54672282338</sku> <srp>3,3900001049</srp> - <gross_weight>17,3999996185</gross_weight> - <net_weight>15,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>10,1000003815</shelf_width> - <shelf_height>16</shelf_height> - <shelf_depth>11,8000001907</shelf_depth> + <grossWeight>17,3999996185</grossWeight> + <netWeight>15,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>10,1000003815</shelfWidth> + <shelfHeight>16</shelfHeight> + <shelfDepth>11,8000001907</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Canned Peanuts</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Canned Peanuts</productName> <sku>12010149359</sku> <srp>2,5299999714</srp> - <gross_weight>16,7999992371</gross_weight> - <net_weight>15,6999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>7,8400001526</shelf_width> - <shelf_height>8,5</shelf_height> - <shelf_depth>21,3999996185</shelf_depth> + <grossWeight>16,7999992371</grossWeight> + <netWeight>15,6999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>7,8400001526</shelfWidth> + <shelfHeight>8,5</shelfHeight> + <shelfDepth>21,3999996185</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Walnuts</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Walnuts</productName> <sku>14613705277</sku> <srp>2,1300001144</srp> - <gross_weight>11,1000003815</gross_weight> - <net_weight>8,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>12,8000001907</shelf_width> - <shelf_height>7,3400001526</shelf_height> - <shelf_depth>17,5</shelf_depth> + <grossWeight>11,1000003815</grossWeight> + <netWeight>8,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>12,8000001907</shelfWidth> + <shelfHeight>7,3400001526</shelfHeight> + <shelfDepth>17,5</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Party Nuts</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Party Nuts</productName> <sku>60392994284</sku> <srp>1,9800000191</srp> - <gross_weight>12,3999996185</gross_weight> - <net_weight>9,3900003433</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>13</shelf_width> - <shelf_height>7,1199998856</shelf_height> - <shelf_depth>12,6999998093</shelf_depth> + <grossWeight>12,3999996185</grossWeight> + <netWeight>9,3900003433</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>13</shelfWidth> + <shelfHeight>7,1199998856</shelfHeight> + <shelfDepth>12,6999998093</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Shellfish</product_subcategory> <product_category>Seafood</product_category> <product_department>Seafood</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Tip Top</brand_name> - <product_name>Tip Top Scallops</product_name> + <brandName>Tip Top</brandName> + <productName>Tip Top Scallops</productName> <sku>83776288628</sku> <srp>2,9000000954</srp> - <gross_weight>21,2999992371</gross_weight> - <net_weight>20,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>18,2999992371</shelf_width> - <shelf_height>18,2999992371</shelf_height> - <shelf_depth>6,3099999428</shelf_depth> + <grossWeight>21,2999992371</grossWeight> + <netWeight>20,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>18,2999992371</shelfWidth> + <shelfHeight>18,2999992371</shelfHeight> + <shelfDepth>6,3099999428</shelfDepth> </Product> <Product> - <brand_name>Curlew</brand_name> - <product_name>Curlew Scallops</product_name> + <brandName>Curlew</brandName> + <productName>Curlew Scallops</productName> <sku>49869111180</sku> <srp>2,5899999142</srp> - <gross_weight>6,8699998856</gross_weight> - <net_weight>3,8599998951</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>20,3999996185</shelf_width> - <shelf_height>17,7999992371</shelf_height> - <shelf_depth>8,0600004196</shelf_depth> + <grossWeight>6,8699998856</grossWeight> + <netWeight>3,8599998951</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>20,3999996185</shelfWidth> + <shelfHeight>17,7999992371</shelfHeight> + <shelfDepth>8,0600004196</shelfDepth> </Product> <Product> - <brand_name>Kiwi</brand_name> - <product_name>Kiwi Scallops</product_name> + <brandName>Kiwi</brandName> + <productName>Kiwi Scallops</productName> <sku>60407328009</sku> <srp>2,4000000954</srp> - <gross_weight>11,8999996185</gross_weight> - <net_weight>8,8900003433</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>8,75</shelf_width> - <shelf_height>9,2399997711</shelf_height> - <shelf_depth>3,8699998856</shelf_depth> + <grossWeight>11,8999996185</grossWeight> + <netWeight>8,8900003433</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>8,75</shelfWidth> + <shelfHeight>9,2399997711</shelfHeight> + <shelfDepth>3,8699998856</shelfDepth> </Product> <Product> - <brand_name>Dual City</brand_name> - <product_name>Dual City Scallops</product_name> + <brandName>Dual City</brandName> + <productName>Dual City Scallops</productName> <sku>49418113827</sku> <srp>1,7200000286</srp> - <gross_weight>12,6999998093</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>21,7000007629</shelf_width> - <shelf_height>4,0399999619</shelf_height> - <shelf_depth>9,1999998093</shelf_depth> + <grossWeight>12,6999998093</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>21,7000007629</shelfWidth> + <shelfHeight>4,0399999619</shelfHeight> + <shelfDepth>9,1999998093</shelfDepth> </Product> <Product> - <brand_name>Amigo</brand_name> - <product_name>Amigo Scallops</product_name> + <brandName>Amigo</brandName> + <productName>Amigo Scallops</productName> <sku>23498780131</sku> <srp>2,7899999619</srp> - <gross_weight>7,9200000763</gross_weight> - <net_weight>6,9200000763</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>3,9900000095</shelf_width> - <shelf_height>14</shelf_height> - <shelf_depth>15,3999996185</shelf_depth> + <grossWeight>7,9200000763</grossWeight> + <netWeight>6,9200000763</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>3,9900000095</shelfWidth> + <shelfHeight>14</shelfHeight> + <shelfDepth>15,3999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Canned Fruit</product_subcategory> <product_category>Fruit</product_category> <product_department>Canned Products</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Swell</brand_name> - <product_name>Swell Canned Mixed Fruit</product_name> + <brandName>Swell</brandName> + <productName>Swell Canned Mixed Fruit</productName> <sku>65579034686</sku> <srp>2,3399999142</srp> - <gross_weight>8,6199998856</gross_weight> - <net_weight>7,6100001335</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>5,1399998665</shelf_width> - <shelf_height>16,2000007629</shelf_height> - <shelf_depth>12</shelf_depth> + <grossWeight>8,6199998856</grossWeight> + <netWeight>7,6100001335</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>5,1399998665</shelfWidth> + <shelfHeight>16,2000007629</shelfHeight> + <shelfDepth>12</shelfDepth> </Product> <Product> - <brand_name>Swell</brand_name> - <product_name>Swell Canned Peaches</product_name> + <brandName>Swell</brandName> + <productName>Swell Canned Peaches</productName> <sku>42871420979</sku> <srp>1,6299999952</srp> - <gross_weight>15,3000001907</gross_weight> - <net_weight>12,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>9,5399999619</shelf_width> - <shelf_height>3,5999999046</shelf_height> - <shelf_depth>6,8200001717</shelf_depth> + <grossWeight>15,3000001907</grossWeight> + <netWeight>12,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>9,5399999619</shelfWidth> + <shelfHeight>3,5999999046</shelfHeight> + <shelfDepth>6,8200001717</shelfDepth> </Product> <Product> - <brand_name>Green Ribbon</brand_name> - <product_name>Green Ribbon Canned Mixed Fruit</product_name> + <brandName>Green Ribbon</brandName> + <productName>Green Ribbon Canned Mixed Fruit</productName> <sku>42658990025</sku> <srp>1,3099999428</srp> - <gross_weight>14</gross_weight> - <net_weight>11</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>11,1000003815</shelf_width> - <shelf_height>17,2000007629</shelf_height> - <shelf_depth>5,7399997711</shelf_depth> + <grossWeight>14</grossWeight> + <netWeight>11</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>11,1000003815</shelfWidth> + <shelfHeight>17,2000007629</shelfHeight> + <shelfDepth>5,7399997711</shelfDepth> </Product> <Product> - <brand_name>Green Ribbon</brand_name> - <product_name>Green Ribbon Canned Peaches</product_name> + <brandName>Green Ribbon</brandName> + <productName>Green Ribbon Canned Peaches</productName> <sku>33045791983</sku> <srp>3,1099998951</srp> - <gross_weight>17,5</gross_weight> - <net_weight>15,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>10,8000001907</shelf_width> - <shelf_height>17,7000007629</shelf_height> - <shelf_depth>9,0399999619</shelf_depth> + <grossWeight>17,5</grossWeight> + <netWeight>15,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>10,8000001907</shelfWidth> + <shelfHeight>17,7000007629</shelfHeight> + <shelfDepth>9,0399999619</shelfDepth> </Product> <Product> - <brand_name>Applause</brand_name> - <product_name>Applause Canned Mixed Fruit</product_name> + <brandName>Applause</brandName> + <productName>Applause Canned Mixed Fruit</productName> <sku>48180714249</sku> <srp>2,7999999523</srp> - <gross_weight>6,9600000381</gross_weight> - <net_weight>3,9600000381</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>5,2399997711</shelf_width> - <shelf_height>15,8999996185</shelf_height> - <shelf_depth>3,7599999905</shelf_depth> + <grossWeight>6,9600000381</grossWeight> + <netWeight>3,9600000381</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>5,2399997711</shelfWidth> + <shelfHeight>15,8999996185</shelfHeight> + <shelfDepth>3,7599999905</shelfDepth> </Product> <Product> - <brand_name>Applause</brand_name> - <product_name>Applause Canned Peaches</product_name> + <brandName>Applause</brandName> + <productName>Applause Canned Peaches</productName> <sku>69329749941</sku> <srp>2,3399999142</srp> - <gross_weight>19</gross_weight> - <net_weight>17</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>9,2899999619</shelf_width> - <shelf_height>20,3999996185</shelf_height> - <shelf_depth>14,3000001907</shelf_depth> + <grossWeight>19</grossWeight> + <netWeight>17</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>9,2899999619</shelfWidth> + <shelfHeight>20,3999996185</shelfHeight> + <shelfDepth>14,3000001907</shelfDepth> </Product> <Product> - <brand_name>Big City</brand_name> - <product_name>Big City Canned Mixed Fruit</product_name> + <brandName>Big City</brandName> + <productName>Big City Canned Mixed Fruit</productName> <sku>20602412819</sku> <srp>1,1699999571</srp> - <gross_weight>17,7999992371</gross_weight> - <net_weight>16,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>16,3999996185</shelf_width> - <shelf_height>11,5</shelf_height> - <shelf_depth>19,7000007629</shelf_depth> + <grossWeight>17,7999992371</grossWeight> + <netWeight>16,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>16,3999996185</shelfWidth> + <shelfHeight>11,5</shelfHeight> + <shelfDepth>19,7000007629</shelfDepth> </Product> <Product> - <brand_name>Big City</brand_name> - <product_name>Big City Canned Peaches</product_name> + <brandName>Big City</brandName> + <productName>Big City Canned Peaches</productName> <sku>67893072962</sku> <srp>0,7599999905</srp> - <gross_weight>11,6000003815</gross_weight> - <net_weight>8,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>8,0699996948</shelf_width> - <shelf_height>10,3000001907</shelf_height> - <shelf_depth>16</shelf_depth> + <grossWeight>11,6000003815</grossWeight> + <netWeight>8,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>8,0699996948</shelfWidth> + <shelfHeight>10,3000001907</shelfHeight> + <shelfDepth>16</shelfDepth> </Product> <Product> - <brand_name>Toucan</brand_name> - <product_name>Toucan Canned Mixed Fruit</product_name> + <brandName>Toucan</brandName> + <productName>Toucan Canned Mixed Fruit</productName> <sku>25828804373</sku> <srp>1,3999999762</srp> - <gross_weight>17,8999996185</gross_weight> - <net_weight>15,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>4,8699998856</shelf_width> - <shelf_height>14,1000003815</shelf_height> - <shelf_depth>4,4400000572</shelf_depth> + <grossWeight>17,8999996185</grossWeight> + <netWeight>15,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>4,8699998856</shelfWidth> + <shelfHeight>14,1000003815</shelfHeight> + <shelfDepth>4,4400000572</shelfDepth> </Product> <Product> - <brand_name>Toucan</brand_name> - <product_name>Toucan Canned Peaches</product_name> + <brandName>Toucan</brandName> + <productName>Toucan Canned Peaches</productName> <sku>95407891869</sku> <srp>1,3799999952</srp> - <gross_weight>16,7999992371</gross_weight> - <net_weight>15,6999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>11,5</shelf_width> - <shelf_height>17,6000003815</shelf_height> - <shelf_depth>11,6000003815</shelf_depth> + <grossWeight>16,7999992371</grossWeight> + <netWeight>15,6999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>11,5</shelfWidth> + <shelfHeight>17,6000003815</shelfHeight> + <shelfDepth>11,6000003815</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Spices</product_subcategory> <product_category>Baking Goods</product_category> <product_department>Baking Goods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Super</brand_name> - <product_name>Super Pepper</product_name> + <brandName>Super</brandName> + <productName>Super Pepper</productName> <sku>61393297314</sku> <srp>2,8299999237</srp> - <gross_weight>17,7000007629</gross_weight> - <net_weight>15,6999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>19,2999992371</shelf_width> - <shelf_height>9,3800001144</shelf_height> - <shelf_depth>8,4899997711</shelf_depth> + <grossWeight>17,7000007629</grossWeight> + <netWeight>15,6999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>19,2999992371</shelfWidth> + <shelfHeight>9,3800001144</shelfHeight> + <shelfDepth>8,4899997711</shelfDepth> </Product> <Product> - <brand_name>Super</brand_name> - <product_name>Super Salt</product_name> + <brandName>Super</brandName> + <productName>Super Salt</productName> <sku>22212381958</sku> <srp>2,9400000572</srp> - <gross_weight>16,7999992371</gross_weight> - <net_weight>14,6999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>8,6199998856</shelf_width> - <shelf_height>16,5</shelf_height> - <shelf_depth>15</shelf_depth> + <grossWeight>16,7999992371</grossWeight> + <netWeight>14,6999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>8,6199998856</shelfWidth> + <shelfHeight>16,5</shelfHeight> + <shelfDepth>15</shelfDepth> </Product> <Product> - <brand_name>Super</brand_name> - <product_name>Super Oregano</product_name> + <brandName>Super</brandName> + <productName>Super Oregano</productName> <sku>53702738881</sku> <srp>3,4500000477</srp> - <gross_weight>13,6999998093</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>5,8400001526</shelf_width> - <shelf_height>15,6999998093</shelf_height> - <shelf_depth>17,2000007629</shelf_depth> + <grossWeight>13,6999998093</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>5,8400001526</shelfWidth> + <shelfHeight>15,6999998093</shelfHeight> + <shelfDepth>17,2000007629</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Pepper</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Pepper</productName> <sku>25536143183</sku> <srp>2,5899999142</srp> - <gross_weight>11,3000001907</gross_weight> - <net_weight>9,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>4,0799999237</shelf_width> - <shelf_height>15,8000001907</shelf_height> - <shelf_depth>13,6000003815</shelf_depth> + <grossWeight>11,3000001907</grossWeight> + <netWeight>9,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>4,0799999237</shelfWidth> + <shelfHeight>15,8000001907</shelfHeight> + <shelfDepth>13,6000003815</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Salt</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Salt</productName> <sku>83215331435</sku> <srp>0,8199999928</srp> - <gross_weight>15,1000003815</gross_weight> - <net_weight>13,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>15,6000003815</shelf_width> - <shelf_height>18,7999992371</shelf_height> - <shelf_depth>13,6999998093</shelf_depth> + <grossWeight>15,1000003815</grossWeight> + <netWeight>13,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>15,6000003815</shelfWidth> + <shelfHeight>18,7999992371</shelfHeight> + <shelfDepth>13,6999998093</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Oregano</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Oregano</productName> <sku>79370052218</sku> <srp>1,8200000525</srp> - <gross_weight>21,1000003815</gross_weight> - <net_weight>20,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>10,8000001907</shelf_width> - <shelf_height>19,8999996185</shelf_height> - <shelf_depth>13</shelf_depth> + <grossWeight>21,1000003815</grossWeight> + <netWeight>20,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>10,8000001907</shelfWidth> + <shelfHeight>19,8999996185</shelfHeight> + <shelfDepth>13</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Pepper</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Pepper</productName> <sku>90197336077</sku> <srp>0,7599999905</srp> - <gross_weight>11,3999996185</gross_weight> - <net_weight>9,3900003433</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>18,2999992371</shelf_width> - <shelf_height>12,8999996185</shelf_height> - <shelf_depth>13</shelf_depth> + <grossWeight>11,3999996185</grossWeight> + <netWeight>9,3900003433</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>18,2999992371</shelfWidth> + <shelfHeight>12,8999996185</shelfHeight> + <shelfDepth>13</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Salt</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Salt</productName> <sku>24827589392</sku> <srp>0,6299999952</srp> - <gross_weight>7,7199997902</gross_weight> - <net_weight>5,7100000381</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>36</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>15,8999996185</shelf_width> - <shelf_height>19,7999992371</shelf_height> - <shelf_depth>15,3999996185</shelf_depth> + <grossWeight>7,7199997902</grossWeight> + <netWeight>5,7100000381</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>36</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>15,8999996185</shelfWidth> + <shelfHeight>19,7999992371</shelfHeight> + <shelfDepth>15,3999996185</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Oregano</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Oregano</productName> <sku>54031245112</sku> <srp>0,5299999714</srp> - <gross_weight>12,8000001907</gross_weight> - <net_weight>11,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>14,6999998093</shelf_width> - <shelf_height>19,6000003815</shelf_height> - <shelf_depth>10,1000003815</shelf_depth> + <grossWeight>12,8000001907</grossWeight> + <netWeight>11,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>14,6999998093</shelfWidth> + <shelfHeight>19,6000003815</shelfHeight> + <shelfDepth>10,1000003815</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Pepper</product_name> + <brandName>Plato</brandName> + <productName>Plato Pepper</productName> <sku>78358097672</sku> <srp>3,3199999332</srp> - <gross_weight>16,5</gross_weight> - <net_weight>13,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>7,0199999809</shelf_width> - <shelf_height>9,8999996185</shelf_height> - <shelf_depth>4,1999998093</shelf_depth> + <grossWeight>16,5</grossWeight> + <netWeight>13,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>7,0199999809</shelfWidth> + <shelfHeight>9,8999996185</shelfHeight> + <shelfDepth>4,1999998093</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Salt</product_name> + <brandName>Plato</brandName> + <productName>Plato Salt</productName> <sku>43750584721</sku> <srp>1,4700000286</srp> - <gross_weight>14,8000001907</gross_weight> - <net_weight>13,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>11</shelf_width> - <shelf_height>8,1000003815</shelf_height> - <shelf_depth>11</shelf_depth> + <grossWeight>14,8000001907</grossWeight> + <netWeight>13,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>11</shelfWidth> + <shelfHeight>8,1000003815</shelfHeight> + <shelfDepth>11</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Oregano</product_name> + <brandName>Plato</brandName> + <productName>Plato Oregano</productName> <sku>92499433159</sku> <srp>2,2599999905</srp> - <gross_weight>15,6999998093</gross_weight> - <net_weight>14,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>22,2000007629</shelf_width> - <shelf_height>3,2400000095</shelf_height> - <shelf_depth>11,8000001907</shelf_depth> + <grossWeight>15,6999998093</grossWeight> + <netWeight>14,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>22,2000007629</shelfWidth> + <shelfHeight>3,2400000095</shelfHeight> + <shelfDepth>11,8000001907</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Pepper</product_name> + <brandName>CDR</brandName> + <productName>CDR Pepper</productName> <sku>48081826567</sku> <srp>2,3800001144</srp> - <gross_weight>16,1000003815</gross_weight> - <net_weight>14,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>12,8999996185</shelf_width> - <shelf_height>19,1000003815</shelf_height> - <shelf_depth>12,3000001907</shelf_depth> + <grossWeight>16,1000003815</grossWeight> + <netWeight>14,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>12,8999996185</shelfWidth> + <shelfHeight>19,1000003815</shelfHeight> + <shelfDepth>12,3000001907</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Salt</product_name> + <brandName>CDR</brandName> + <productName>CDR Salt</productName> <sku>44236547350</sku> <srp>1,5199999809</srp> - <gross_weight>17,8999996185</gross_weight> - <net_weight>16,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>16,7000007629</shelf_width> - <shelf_height>8,6700000763</shelf_height> - <shelf_depth>3,0499999523</shelf_depth> + <grossWeight>17,8999996185</grossWeight> + <netWeight>16,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>16,7000007629</shelfWidth> + <shelfHeight>8,6700000763</shelfHeight> + <shelfDepth>3,0499999523</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Oregano</product_name> + <brandName>CDR</brandName> + <productName>CDR Oregano</productName> <sku>68866800665</sku> <srp>1,1599999666</srp> - <gross_weight>15,3000001907</gross_weight> - <net_weight>13,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>16,7999992371</shelf_width> - <shelf_height>20,1000003815</shelf_height> - <shelf_depth>15,1000003815</shelf_depth> + <grossWeight>15,3000001907</grossWeight> + <netWeight>13,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>16,7999992371</shelfWidth> + <shelfHeight>20,1000003815</shelfHeight> + <shelfDepth>15,1000003815</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Pasta</product_subcategory> <product_category>Starchy Foods</product_category> <product_department>Starchy Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Medalist</brand_name> - <product_name>Medalist Ravioli</product_name> + <brandName>Medalist</brandName> + <productName>Medalist Ravioli</productName> <sku>57518588900</sku> <srp>3,3800001144</srp> - <gross_weight>17,5</gross_weight> - <net_weight>14,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>9,1599998474</shelf_width> - <shelf_height>17,2000007629</shelf_height> - <shelf_depth>4,3899998665</shelf_depth> + <grossWeight>17,5</grossWeight> + <netWeight>14,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>9,1599998474</shelfWidth> + <shelfHeight>17,2000007629</shelfHeight> + <shelfDepth>4,3899998665</shelfDepth> </Product> <Product> - <brand_name>Medalist</brand_name> - <product_name>Medalist Manicotti</product_name> + <brandName>Medalist</brandName> + <productName>Medalist Manicotti</productName> <sku>91762040257</sku> <srp>1,3400000334</srp> - <gross_weight>21</gross_weight> - <net_weight>20</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>17,3999996185</shelf_width> - <shelf_height>21,1000003815</shelf_height> - <shelf_depth>5,1900000572</shelf_depth> + <grossWeight>21</grossWeight> + <netWeight>20</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>17,3999996185</shelfWidth> + <shelfHeight>21,1000003815</shelfHeight> + <shelfDepth>5,1900000572</shelfDepth> </Product> <Product> - <brand_name>Medalist</brand_name> - <product_name>Medalist Spaghetti</product_name> + <brandName>Medalist</brandName> + <productName>Medalist Spaghetti</productName> <sku>82148842215</sku> <srp>3,7999999523</srp> - <gross_weight>13,8999996185</gross_weight> - <net_weight>11,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>4,5300002098</shelf_width> - <shelf_height>17,5</shelf_height> - <shelf_depth>6,7800002098</shelf_depth> + <grossWeight>13,8999996185</grossWeight> + <netWeight>11,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>4,5300002098</shelfWidth> + <shelfHeight>17,5</shelfHeight> + <shelfDepth>6,7800002098</shelfDepth> </Product> <Product> - <brand_name>Monarch</brand_name> - <product_name>Monarch Ravioli</product_name> + <brandName>Monarch</brandName> + <productName>Monarch Ravioli</productName> <sku>67660922408</sku> <srp>2,9000000954</srp> - <gross_weight>8,1999998093</gross_weight> - <net_weight>5,1900000572</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>8,8500003815</shelf_width> - <shelf_height>22,2000007629</shelf_height> - <shelf_depth>5,1999998093</shelf_depth> + <grossWeight>8,1999998093</grossWeight> + <netWeight>5,1900000572</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>8,8500003815</shelfWidth> + <shelfHeight>22,2000007629</shelfHeight> + <shelfDepth>5,1999998093</shelfDepth> </Product> <Product> - <brand_name>Monarch</brand_name> - <product_name>Monarch Manicotti</product_name> + <brandName>Monarch</brandName> + <productName>Monarch Manicotti</productName> <sku>42666607499</sku> <srp>2,5999999046</srp> - <gross_weight>13</gross_weight> - <net_weight>10</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>5,3000001907</shelf_width> - <shelf_height>7,2600002289</shelf_height> - <shelf_depth>15,5</shelf_depth> + <grossWeight>13</grossWeight> + <netWeight>10</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>5,3000001907</shelfWidth> + <shelfHeight>7,2600002289</shelfHeight> + <shelfDepth>15,5</shelfDepth> </Product> <Product> - <brand_name>Monarch</brand_name> - <product_name>Monarch Spaghetti</product_name> + <brandName>Monarch</brandName> + <productName>Monarch Spaghetti</productName> <sku>63815643191</sku> <srp>1,3799999952</srp> - <gross_weight>13,3000001907</gross_weight> - <net_weight>11,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>7,6399998665</shelf_width> - <shelf_height>21,8999996185</shelf_height> - <shelf_depth>19,7999992371</shelf_depth> + <grossWeight>13,3000001907</grossWeight> + <netWeight>11,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>7,6399998665</shelfWidth> + <shelfHeight>21,8999996185</shelfHeight> + <shelfDepth>19,7999992371</shelfDepth> </Product> <Product> - <brand_name>Discover</brand_name> - <product_name>Discover Ravioli</product_name> + <brandName>Discover</brandName> + <productName>Discover Ravioli</productName> <sku>68024984002</sku> <srp>0,8799999952</srp> - <gross_weight>8,0600004196</gross_weight> - <net_weight>6,0599999428</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>8,4200000763</shelf_width> - <shelf_height>13,5</shelf_height> - <shelf_depth>14,6000003815</shelf_depth> + <grossWeight>8,0600004196</grossWeight> + <netWeight>6,0599999428</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>8,4200000763</shelfWidth> + <shelfHeight>13,5</shelfHeight> + <shelfDepth>14,6000003815</shelfDepth> </Product> <Product> - <brand_name>Discover</brand_name> - <product_name>Discover Manicotti</product_name> + <brandName>Discover</brandName> + <productName>Discover Manicotti</productName> <sku>58628250956</sku> <srp>1,6100000143</srp> - <gross_weight>16</gross_weight> - <net_weight>14</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>22,3999996185</shelf_width> - <shelf_height>17,7999992371</shelf_height> - <shelf_depth>16,3999996185</shelf_depth> + <grossWeight>16</grossWeight> + <netWeight>14</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>22,3999996185</shelfWidth> + <shelfHeight>17,7999992371</shelfHeight> + <shelfDepth>16,3999996185</shelfDepth> </Product> <Product> - <brand_name>Discover</brand_name> - <product_name>Discover Spaghetti</product_name> + <brandName>Discover</brandName> + <productName>Discover Spaghetti</productName> <sku>31347234845</sku> <srp>2,6099998951</srp> - <gross_weight>21,7000007629</gross_weight> - <net_weight>20,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>3,5399999619</shelf_width> - <shelf_height>5,1500000954</shelf_height> - <shelf_depth>21,5</shelf_depth> + <grossWeight>21,7000007629</grossWeight> + <netWeight>20,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>3,5399999619</shelfWidth> + <shelfHeight>5,1500000954</shelfHeight> + <shelfDepth>21,5</shelfDepth> </Product> <Product> - <brand_name>Shady Lake</brand_name> - <product_name>Shady Lake Ravioli</product_name> + <brandName>Shady Lake</brandName> + <productName>Shady Lake Ravioli</productName> <sku>73169203400</sku> <srp>2,5099999905</srp> - <gross_weight>8,9399995804</gross_weight> - <net_weight>5,9299998283</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>9,8500003815</shelf_width> - <shelf_height>22,2000007629</shelf_height> - <shelf_depth>19,7999992371</shelf_depth> + <grossWeight>8,9399995804</grossWeight> + <netWeight>5,9299998283</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>9,8500003815</shelfWidth> + <shelfHeight>22,2000007629</shelfHeight> + <shelfDepth>19,7999992371</shelfDepth> </Product> <Product> - <brand_name>Shady Lake</brand_name> - <product_name>Shady Lake Manicotti</product_name> + <brandName>Shady Lake</brandName> + <productName>Shady Lake Manicotti</productName> <sku>61269304156</sku> <srp>3,3900001049</srp> - <gross_weight>19,7000007629</gross_weight> - <net_weight>18,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>4,4800000191</shelf_width> - <shelf_height>3,2300000191</shelf_height> - <shelf_depth>15,8000001907</shelf_depth> + <grossWeight>19,7000007629</grossWeight> + <netWeight>18,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>4,4800000191</shelfWidth> + <shelfHeight>3,2300000191</shelfHeight> + <shelfDepth>15,8000001907</shelfDepth> </Product> <Product> - <brand_name>Shady Lake</brand_name> - <product_name>Shady Lake Spaghetti</product_name> + <brandName>Shady Lake</brandName> + <productName>Shady Lake Spaghetti</productName> <sku>38561690449</sku> <srp>2,6700000763</srp> - <gross_weight>19</gross_weight> - <net_weight>17</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>13,3999996185</shelf_width> - <shelf_height>3,4600000381</shelf_height> - <shelf_depth>12,8999996185</shelf_depth> + <grossWeight>19</grossWeight> + <netWeight>17</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>13,3999996185</shelfWidth> + <shelfHeight>3,4600000381</shelfHeight> + <shelfDepth>12,8999996185</shelfDepth> </Product> <Product> - <brand_name>Colossal</brand_name> - <product_name>Colossal Ravioli</product_name> + <brandName>Colossal</brandName> + <productName>Colossal Ravioli</productName> <sku>16300310492</sku> <srp>2,5599999428</srp> - <gross_weight>8,6000003815</gross_weight> - <net_weight>6,5999999046</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>17,8999996185</shelf_width> - <shelf_height>20,6000003815</shelf_height> - <shelf_depth>22,5</shelf_depth> + <grossWeight>8,6000003815</grossWeight> + <netWeight>6,5999999046</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>17,8999996185</shelfWidth> + <shelfHeight>20,6000003815</shelfHeight> + <shelfDepth>22,5</shelfDepth> </Product> <Product> - <brand_name>Colossal</brand_name> - <product_name>Colossal Manicotti</product_name> + <brandName>Colossal</brandName> + <productName>Colossal Manicotti</productName> <sku>52830463051</sku> <srp>1,8700000048</srp> - <gross_weight>14,6999998093</gross_weight> - <net_weight>13,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>21,2000007629</shelf_width> - <shelf_height>4,6300001144</shelf_height> - <shelf_depth>17,3999996185</shelf_depth> + <grossWeight>14,6999998093</grossWeight> + <netWeight>13,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>21,2000007629</shelfWidth> + <shelfHeight>4,6300001144</shelfHeight> + <shelfDepth>17,3999996185</shelfDepth> </Product> <Product> - <brand_name>Colossal</brand_name> - <product_name>Colossal Spaghetti</product_name> + <brandName>Colossal</brandName> + <productName>Colossal Spaghetti</productName> <sku>45503966212</sku> <srp>3,3699998856</srp> - <gross_weight>21,8999996185</gross_weight> - <net_weight>19,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>17,7999992371</shelf_width> - <shelf_height>14,1999998093</shelf_height> - <shelf_depth>4,6300001144</shelf_depth> + <grossWeight>21,8999996185</grossWeight> + <netWeight>19,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>17,7999992371</shelfWidth> + <shelfHeight>14,1999998093</shelfHeight> + <shelfDepth>4,6300001144</shelfDepth> </Product> <Product> - <brand_name>Jardon</brand_name> - <product_name>Jardon Ravioli</product_name> + <brandName>Jardon</brandName> + <productName>Jardon Ravioli</productName> <sku>95762093663</sku> <srp>0,9599999785</srp> - <gross_weight>17,7000007629</gross_weight> - <net_weight>15,6999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>8,470000267</shelf_width> - <shelf_height>16,7000007629</shelf_height> - <shelf_depth>12,3000001907</shelf_depth> + <grossWeight>17,7000007629</grossWeight> + <netWeight>15,6999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>8,470000267</shelfWidth> + <shelfHeight>16,7000007629</shelfHeight> + <shelfDepth>12,3000001907</shelfDepth> </Product> <Product> - <brand_name>Jardon</brand_name> - <product_name>Jardon Manicotti</product_name> + <brandName>Jardon</brandName> + <productName>Jardon Manicotti</productName> <sku>49561676383</sku> <srp>1,2000000477</srp> - <gross_weight>11,5</gross_weight> - <net_weight>9,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>11,8999996185</shelf_width> - <shelf_height>14,3999996185</shelf_height> - <shelf_depth>18,5</shelf_depth> + <grossWeight>11,5</grossWeight> + <netWeight>9,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>11,8999996185</shelfWidth> + <shelfHeight>14,3999996185</shelfHeight> + <shelfDepth>18,5</shelfDepth> </Product> <Product> - <brand_name>Jardon</brand_name> - <product_name>Jardon Spaghetti</product_name> + <brandName>Jardon</brandName> + <productName>Jardon Spaghetti</productName> <sku>53042894005</sku> <srp>0,5400000215</srp> - <gross_weight>13,6999998093</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>12,8000001907</shelf_width> - <shelf_height>12,6000003815</shelf_height> - <shelf_depth>9,8100004196</shelf_depth> + <grossWeight>13,6999998093</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>12,8000001907</shelfWidth> + <shelfHeight>12,6000003815</shelfHeight> + <shelfDepth>9,8100004196</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Yogurt</product_subcategory> <product_category>Dairy</product_category> <product_department>Dairy</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Carlson</brand_name> - <product_name>Carlson Strawberry Yogurt</product_name> + <brandName>Carlson</brandName> + <productName>Carlson Strawberry Yogurt</productName> <sku>51097241044</sku> <srp>3,9800000191</srp> - <gross_weight>14,8000001907</gross_weight> - <net_weight>12,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>20</shelf_width> - <shelf_height>18,2999992371</shelf_height> - <shelf_depth>11</shelf_depth> + <grossWeight>14,8000001907</grossWeight> + <netWeight>12,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>20</shelfWidth> + <shelfHeight>18,2999992371</shelfHeight> + <shelfDepth>11</shelfDepth> </Product> <Product> - <brand_name>Carlson</brand_name> - <product_name>Carlson Blueberry Yogurt</product_name> + <brandName>Carlson</brandName> + <productName>Carlson Blueberry Yogurt</productName> <sku>72246276736</sku> <srp>2,7599999905</srp> - <gross_weight>11,8999996185</gross_weight> - <net_weight>10,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>6,3299999237</shelf_width> - <shelf_height>9,5399999619</shelf_height> - <shelf_depth>21,2999992371</shelf_depth> + <grossWeight>11,8999996185</grossWeight> + <netWeight>10,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>6,3299999237</shelfWidth> + <shelfHeight>9,5399999619</shelfHeight> + <shelfDepth>21,2999992371</shelfDepth> </Product> <Product> - <brand_name>Club</brand_name> - <product_name>Club Strawberry Yogurt</product_name> + <brandName>Club</brandName> + <productName>Club Strawberry Yogurt</productName> <sku>93602067828</sku> <srp>0,7400000095</srp> - <gross_weight>13,3999996185</gross_weight> - <net_weight>11,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>16,2999992371</shelf_width> - <shelf_height>11,5</shelf_height> - <shelf_depth>13,8000001907</shelf_depth> + <grossWeight>13,3999996185</grossWeight> + <netWeight>11,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>16,2999992371</shelfWidth> + <shelfHeight>11,5</shelfHeight> + <shelfDepth>13,8000001907</shelfDepth> </Product> <Product> - <brand_name>Club</brand_name> - <product_name>Club Blueberry Yogurt</product_name> + <brandName>Club</brandName> + <productName>Club Blueberry Yogurt</productName> <sku>70894454121</sku> <srp>3,8199999332</srp> - <gross_weight>14,1000003815</gross_weight> - <net_weight>11,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>11</shelf_width> - <shelf_height>17,3999996185</shelf_height> - <shelf_depth>5,5100002289</shelf_depth> + <grossWeight>14,1000003815</grossWeight> + <netWeight>11,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>11</shelfWidth> + <shelfHeight>17,3999996185</shelfHeight> + <shelfDepth>5,5100002289</shelfDepth> </Product> <Product> - <brand_name>Gorilla</brand_name> - <product_name>Gorilla Strawberry Yogurt</product_name> + <brandName>Gorilla</brandName> + <productName>Gorilla Strawberry Yogurt</productName> <sku>79842271208</sku> <srp>2,1600000858</srp> - <gross_weight>8,5799999237</gross_weight> - <net_weight>5,5700001717</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>7,1599998474</shelf_width> - <shelf_height>21,1000003815</shelf_height> - <shelf_depth>6,6999998093</shelf_depth> + <grossWeight>8,5799999237</grossWeight> + <netWeight>5,5700001717</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>7,1599998474</shelfWidth> + <shelfHeight>21,1000003815</shelfHeight> + <shelfDepth>6,6999998093</shelfDepth> </Product> <Product> - <brand_name>Gorilla</brand_name> - <product_name>Gorilla Blueberry Yogurt</product_name> + <brandName>Gorilla</brandName> + <productName>Gorilla Blueberry Yogurt</productName> <sku>21799021363</sku> <srp>0,6800000072</srp> - <gross_weight>9,7100000381</gross_weight> - <net_weight>7,7100000381</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>16,7000007629</shelf_width> - <shelf_height>7,1300001144</shelf_height> - <shelf_depth>13,1000003815</shelf_depth> + <grossWeight>9,7100000381</grossWeight> + <netWeight>7,7100000381</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>16,7000007629</shelfWidth> + <shelfHeight>7,1300001144</shelfHeight> + <shelfDepth>13,1000003815</shelfDepth> </Product> <Product> - <brand_name>Even Better</brand_name> - <product_name>Even Better Strawberry Yogurt</product_name> + <brandName>Even Better</brandName> + <productName>Even Better Strawberry Yogurt</productName> <sku>45356659293</sku> <srp>2,7100000381</srp> - <gross_weight>17,1000003815</gross_weight> - <net_weight>15,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>7,4200000763</shelf_width> - <shelf_height>22,1000003815</shelf_height> - <shelf_depth>8,4300003052</shelf_depth> + <grossWeight>17,1000003815</grossWeight> + <netWeight>15,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>7,4200000763</shelfWidth> + <shelfHeight>22,1000003815</shelfHeight> + <shelfDepth>8,4300003052</shelfDepth> </Product> <Product> - <brand_name>Even Better</brand_name> - <product_name>Even Better Blueberry Yogurt</product_name> + <brandName>Even Better</brandName> + <productName>Even Better Blueberry Yogurt</productName> <sku>48837876915</sku> <srp>2,6900000572</srp> - <gross_weight>7,4200000763</gross_weight> - <net_weight>5,4200000763</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>9,2299995422</shelf_width> - <shelf_height>15</shelf_height> - <shelf_depth>3,3699998856</shelf_depth> + <grossWeight>7,4200000763</grossWeight> + <netWeight>5,4200000763</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>9,2299995422</shelfWidth> + <shelfHeight>15</shelfHeight> + <shelfDepth>3,3699998856</shelfDepth> </Product> <Product> - <brand_name>Booker</brand_name> - <product_name>Booker Strawberry Yogurt</product_name> + <brandName>Booker</brandName> + <productName>Booker Strawberry Yogurt</productName> <sku>74894507527</sku> <srp>3,9800000191</srp> - <gross_weight>20,8999996185</gross_weight> - <net_weight>18,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>3,5299999714</shelf_width> - <shelf_height>3,8399999142</shelf_height> - <shelf_depth>14,3999996185</shelf_depth> + <grossWeight>20,8999996185</grossWeight> + <netWeight>18,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>3,5299999714</shelfWidth> + <shelfHeight>3,8399999142</shelfHeight> + <shelfDepth>14,3999996185</shelfDepth> </Product> <Product> - <brand_name>Booker</brand_name> - <product_name>Booker Blueberry Yogurt</product_name> + <brandName>Booker</brandName> + <productName>Booker Blueberry Yogurt</productName> <sku>85645155310</sku> <srp>3,2200000286</srp> - <gross_weight>21,7000007629</gross_weight> - <net_weight>19,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>8,0900001526</shelf_width> - <shelf_height>15,1999998093</shelf_height> - <shelf_depth>8,6099996567</shelf_depth> + <grossWeight>21,7000007629</grossWeight> + <netWeight>19,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>8,0900001526</shelfWidth> + <shelfHeight>15,1999998093</shelfHeight> + <shelfDepth>8,6099996567</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Coffee</product_subcategory> <product_category>Dry Goods</product_category> <product_department>Baking Goods</product_department> - <product_family>Drink</product_family> - </Product_class> - <Product_class> + <productFamily>Drink</productFamily> + </ProductClass> + <ProductClass> <product_subcategory>Deli Meats</product_subcategory> <product_category>Meat</product_category> <product_department>Deli</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Moms</brand_name> - <product_name>Moms Corned Beef</product_name> + <brandName>Moms</brandName> + <productName>Moms Corned Beef</productName> <sku>13063635230</sku> <srp>2,75</srp> - <gross_weight>13,1999998093</gross_weight> - <net_weight>11,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>9,779999733</shelf_width> - <shelf_height>11,3000001907</shelf_height> - <shelf_depth>12,1000003815</shelf_depth> + <grossWeight>13,1999998093</grossWeight> + <netWeight>11,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>9,779999733</shelfWidth> + <shelfHeight>11,3000001907</shelfHeight> + <shelfDepth>12,1000003815</shelfDepth> </Product> <Product> - <brand_name>Moms</brand_name> - <product_name>Moms Sliced Turkey</product_name> + <brandName>Moms</brandName> + <productName>Moms Sliced Turkey</productName> <sku>49593787789</sku> <srp>0,5400000215</srp> - <gross_weight>14,6999998093</gross_weight> - <net_weight>12,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>11,1999998093</shelf_width> - <shelf_height>6,1500000954</shelf_height> - <shelf_depth>18,5</shelf_depth> + <grossWeight>14,6999998093</grossWeight> + <netWeight>12,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>11,1999998093</shelfWidth> + <shelfHeight>6,1500000954</shelfHeight> + <shelfDepth>18,5</shelfDepth> </Product> <Product> - <brand_name>Moms</brand_name> - <product_name>Moms Sliced Ham</product_name> + <brandName>Moms</brandName> + <productName>Moms Sliced Ham</productName> <sku>31050249934</sku> <srp>1,5599999428</srp> - <gross_weight>11,3000001907</gross_weight> - <net_weight>9,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>16,6000003815</shelf_width> - <shelf_height>22,7999992371</shelf_height> - <shelf_depth>3,9900000095</shelf_depth> + <grossWeight>11,3000001907</grossWeight> + <netWeight>9,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>16,6000003815</shelfWidth> + <shelfHeight>22,7999992371</shelfHeight> + <shelfDepth>3,9900000095</shelfDepth> </Product> <Product> - <brand_name>Moms</brand_name> - <product_name>Moms Sliced Chicken</product_name> + <brandName>Moms</brandName> + <productName>Moms Sliced Chicken</productName> <sku>88729438185</sku> <srp>2,4100000858</srp> - <gross_weight>17,7000007629</gross_weight> - <net_weight>16,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>19</shelf_width> - <shelf_height>21,2999992371</shelf_height> - <shelf_depth>13,6000003815</shelf_depth> + <grossWeight>17,7000007629</grossWeight> + <netWeight>16,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>19</shelfWidth> + <shelfHeight>21,2999992371</shelfHeight> + <shelfDepth>13,6000003815</shelfDepth> </Product> <Product> - <brand_name>Red Spade</brand_name> - <product_name>Red Spade Corned Beef</product_name> + <brandName>Red Spade</brandName> + <productName>Red Spade Corned Beef</productName> <sku>36696267724</sku> <srp>2,7400000095</srp> - <gross_weight>20,2000007629</gross_weight> - <net_weight>17,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>20,7999992371</shelf_width> - <shelf_height>11,3999996185</shelf_height> - <shelf_depth>15,1999998093</shelf_depth> + <grossWeight>20,2000007629</grossWeight> + <netWeight>17,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>20,7999992371</shelfWidth> + <shelfHeight>11,3999996185</shelfHeight> + <shelfDepth>15,1999998093</shelfDepth> </Product> <Product> - <brand_name>Red Spade</brand_name> - <product_name>Red Spade Sliced Turkey</product_name> + <brandName>Red Spade</brandName> + <productName>Red Spade Sliced Turkey</productName> <sku>86320835947</sku> <srp>2,3299999237</srp> - <gross_weight>19,1000003815</gross_weight> - <net_weight>16,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>15,8999996185</shelf_width> - <shelf_height>9,4600000381</shelf_height> - <shelf_depth>4,9499998093</shelf_depth> + <grossWeight>19,1000003815</grossWeight> + <netWeight>16,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>15,8999996185</shelfWidth> + <shelfHeight>9,4600000381</shelfHeight> + <shelfDepth>4,9499998093</shelfDepth> </Product> <Product> - <brand_name>Red Spade</brand_name> - <product_name>Red Spade Sliced Ham</product_name> + <brandName>Red Spade</brandName> + <productName>Red Spade Sliced Ham</productName> <sku>35137689709</sku> <srp>1,5700000525</srp> - <gross_weight>6,1300001144</gross_weight> - <net_weight>5,1300001144</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>3,3800001144</shelf_width> - <shelf_height>18,7999992371</shelf_height> - <shelf_depth>20,7999992371</shelf_depth> + <grossWeight>6,1300001144</grossWeight> + <netWeight>5,1300001144</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>3,3800001144</shelfWidth> + <shelfHeight>18,7999992371</shelfHeight> + <shelfDepth>20,7999992371</shelfDepth> </Product> <Product> - <brand_name>Red Spade</brand_name> - <product_name>Red Spade Sliced Chicken</product_name> + <brandName>Red Spade</brandName> + <productName>Red Spade Sliced Chicken</productName> <sku>62054644227</sku> <srp>1,6900000572</srp> - <gross_weight>18,1000003815</gross_weight> - <net_weight>17,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>14,6000003815</shelf_width> - <shelf_height>13,5</shelf_height> - <shelf_depth>3,4200000763</shelf_depth> + <grossWeight>18,1000003815</grossWeight> + <netWeight>17,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>14,6000003815</shelfWidth> + <shelfHeight>13,5</shelfHeight> + <shelfDepth>3,4200000763</shelfDepth> </Product> <Product> - <brand_name>American</brand_name> - <product_name>American Corned Beef</product_name> + <brandName>American</brandName> + <productName>American Corned Beef</productName> <sku>86779010891</sku> <srp>2,6500000954</srp> - <gross_weight>7,1900000572</gross_weight> - <net_weight>6,1900000572</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>8,6099996567</shelf_width> - <shelf_height>11,1000003815</shelf_height> - <shelf_depth>14,6000003815</shelf_depth> + <grossWeight>7,1900000572</grossWeight> + <netWeight>6,1900000572</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>8,6099996567</shelfWidth> + <shelfHeight>11,1000003815</shelfHeight> + <shelfDepth>14,6000003815</shelfDepth> </Product> <Product> - <brand_name>American</brand_name> - <product_name>American Sliced Turkey</product_name> + <brandName>American</brandName> + <productName>American Sliced Turkey</productName> <sku>48690280318</sku> <srp>3,1700000763</srp> - <gross_weight>14,8000001907</gross_weight> - <net_weight>13,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>7,3499999046</shelf_width> - <shelf_height>17,5</shelf_height> - <shelf_depth>11,6000003815</shelf_depth> + <grossWeight>14,8000001907</grossWeight> + <netWeight>13,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>7,3499999046</shelfWidth> + <shelfHeight>17,5</shelfHeight> + <shelfDepth>11,6000003815</shelfDepth> </Product> <Product> - <brand_name>American</brand_name> - <product_name>American Sliced Ham</product_name> + <brandName>American</brandName> + <productName>American Sliced Ham</productName> <sku>11010876297</sku> <srp>2,7599999905</srp> - <gross_weight>6,8099999428</gross_weight> - <net_weight>3,7999999523</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>19,7999992371</shelf_width> - <shelf_height>6,1500000954</shelf_height> - <shelf_depth>16</shelf_depth> + <grossWeight>6,8099999428</grossWeight> + <netWeight>3,7999999523</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>19,7999992371</shelfWidth> + <shelfHeight>6,1500000954</shelfHeight> + <shelfDepth>16</shelfDepth> </Product> <Product> - <brand_name>American</brand_name> - <product_name>American Sliced Chicken</product_name> + <brandName>American</brandName> + <productName>American Sliced Chicken</productName> <sku>66403363347</sku> <srp>0,5899999738</srp> - <gross_weight>7,3200001717</gross_weight> - <net_weight>5,3200001717</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>7,1900000572</shelf_width> - <shelf_height>4,5799999237</shelf_height> - <shelf_depth>12</shelf_depth> + <grossWeight>7,3200001717</grossWeight> + <netWeight>5,3200001717</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>7,1900000572</shelfWidth> + <shelfHeight>4,5799999237</shelfHeight> + <shelfDepth>12</shelfDepth> </Product> <Product> - <brand_name>Cutting Edge</brand_name> - <product_name>Cutting Edge Corned Beef</product_name> + <brandName>Cutting Edge</brandName> + <productName>Cutting Edge Corned Beef</productName> <sku>92789090275</sku> <srp>2,9500000477</srp> - <gross_weight>11,1999998093</gross_weight> - <net_weight>9,1899995804</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>5,75</shelf_width> - <shelf_height>5,6100001335</shelf_height> - <shelf_depth>3,8099999428</shelf_depth> + <grossWeight>11,1999998093</grossWeight> + <netWeight>9,1899995804</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>5,75</shelfWidth> + <shelfHeight>5,6100001335</shelfHeight> + <shelfDepth>3,8099999428</shelfDepth> </Product> <Product> - <brand_name>Cutting Edge</brand_name> - <product_name>Cutting Edge Sliced Turkey</product_name> + <brandName>Cutting Edge</brandName> + <productName>Cutting Edge Sliced Turkey</productName> <sku>83175892233</sku> <srp>3,5199999809</srp> - <gross_weight>12,8999996185</gross_weight> - <net_weight>9,8900003433</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>14,3000001907</shelf_width> - <shelf_height>12,6000003815</shelf_height> - <shelf_depth>7,6799998283</shelf_depth> + <grossWeight>12,8999996185</grossWeight> + <netWeight>9,8900003433</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>14,3000001907</shelfWidth> + <shelfHeight>12,6000003815</shelfHeight> + <shelfDepth>7,6799998283</shelfDepth> </Product> <Product> - <brand_name>Cutting Edge</brand_name> - <product_name>Cutting Edge Sliced Ham</product_name> + <brandName>Cutting Edge</brandName> + <productName>Cutting Edge Sliced Ham</productName> <sku>75176396965</sku> <srp>0,7200000286</srp> - <gross_weight>19,6000003815</gross_weight> - <net_weight>17,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>20</shelf_width> - <shelf_height>22,2000007629</shelf_height> - <shelf_depth>7,4800000191</shelf_depth> + <grossWeight>19,6000003815</grossWeight> + <netWeight>17,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>20</shelfWidth> + <shelfHeight>22,2000007629</shelfHeight> + <shelfDepth>7,4800000191</shelfDepth> </Product> <Product> - <brand_name>Cutting Edge</brand_name> - <product_name>Cutting Edge Sliced Chicken</product_name> + <brandName>Cutting Edge</brandName> + <productName>Cutting Edge Sliced Chicken</productName> <sku>73617818951</sku> <srp>2,3299999237</srp> - <gross_weight>6,8600001335</gross_weight> - <net_weight>4,8600001335</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>21</shelf_width> - <shelf_height>18,6000003815</shelf_height> - <shelf_depth>12,6000003815</shelf_depth> + <grossWeight>6,8600001335</grossWeight> + <netWeight>4,8600001335</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>21</shelfWidth> + <shelfHeight>18,6000003815</shelfHeight> + <shelfDepth>12,6000003815</shelfDepth> </Product> <Product> - <brand_name>Lake</brand_name> - <product_name>Lake Corned Beef</product_name> + <brandName>Lake</brandName> + <productName>Lake Corned Beef</productName> <sku>55201718211</sku> <srp>2,4900000095</srp> - <gross_weight>16,8999996185</gross_weight> - <net_weight>15,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>20,3999996185</shelf_width> - <shelf_height>4,1300001144</shelf_height> - <shelf_depth>16,7000007629</shelf_depth> + <grossWeight>16,8999996185</grossWeight> + <netWeight>15,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>20,3999996185</shelfWidth> + <shelfHeight>4,1300001144</shelfHeight> + <shelfDepth>16,7000007629</shelfDepth> </Product> <Product> - <brand_name>Lake</brand_name> - <product_name>Lake Sliced Turkey</product_name> + <brandName>Lake</brandName> + <productName>Lake Sliced Turkey</productName> <sku>94018571972</sku> <srp>3,2000000477</srp> - <gross_weight>6,6599998474</gross_weight> - <net_weight>5,6500000954</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>21,5</shelf_width> - <shelf_height>11,3999996185</shelf_height> - <shelf_depth>21,7999992371</shelf_depth> + <grossWeight>6,6599998474</grossWeight> + <netWeight>5,6500000954</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>21,5</shelfWidth> + <shelfHeight>11,3999996185</shelfHeight> + <shelfDepth>21,7999992371</shelfDepth> </Product> <Product> - <brand_name>Lake</brand_name> - <product_name>Lake Sliced Ham</product_name> + <brandName>Lake</brandName> + <productName>Lake Sliced Ham</productName> <sku>22880906462</sku> <srp>2,9400000572</srp> - <gross_weight>10,5</gross_weight> - <net_weight>8,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>4,3600001335</shelf_width> - <shelf_height>13,1000003815</shelf_height> - <shelf_depth>9,9899997711</shelf_depth> + <grossWeight>10,5</grossWeight> + <netWeight>8,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>4,3600001335</shelfWidth> + <shelfHeight>13,1000003815</shelfHeight> + <shelfDepth>9,9899997711</shelfDepth> </Product> <Product> - <brand_name>Lake</brand_name> - <product_name>Lake Sliced Chicken</product_name> + <brandName>Lake</brandName> + <productName>Lake Sliced Chicken</productName> <sku>19035627245</sku> <srp>1,4299999475</srp> - <gross_weight>12,8000001907</gross_weight> - <net_weight>9,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>9,4799995422</shelf_width> - <shelf_height>14,8999996185</shelf_height> - <shelf_depth>15,5</shelf_depth> + <grossWeight>12,8000001907</grossWeight> + <netWeight>9,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>9,4799995422</shelfWidth> + <shelfHeight>14,8999996185</shelfHeight> + <shelfDepth>15,5</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Ice Cream</product_subcategory> <product_category>Frozen Desserts</product_category> <product_department>Frozen Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Ice Cream</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Ice Cream</productName> <sku>33460944294</sku> <srp>2,7699999809</srp> - <gross_weight>19,8999996185</gross_weight> - <net_weight>16,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>12</shelf_width> - <shelf_height>19,8999996185</shelf_height> - <shelf_depth>16,2999992371</shelf_depth> + <grossWeight>19,8999996185</grossWeight> + <netWeight>16,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>12</shelfWidth> + <shelfHeight>19,8999996185</shelfHeight> + <shelfDepth>16,2999992371</shelfDepth> </Product> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Ice Cream Sandwich</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Ice Cream Sandwich</productName> <sku>80798811316</sku> <srp>2,9100000858</srp> - <gross_weight>17,3999996185</gross_weight> - <net_weight>16,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>21,8999996185</shelf_width> - <shelf_height>18,8999996185</shelf_height> - <shelf_depth>16,5</shelf_depth> + <grossWeight>17,3999996185</grossWeight> + <netWeight>16,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>21,8999996185</shelfWidth> + <shelfHeight>18,8999996185</shelfHeight> + <shelfDepth>16,5</shelfDepth> </Product> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Popsicles</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Popsicles</productName> <sku>41470299363</sku> <srp>2,2699999809</srp> - <gross_weight>20,6000003815</gross_weight> - <net_weight>19,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>15</shelf_width> - <shelf_height>9,3999996185</shelf_height> - <shelf_depth>9,9399995804</shelf_depth> + <grossWeight>20,6000003815</grossWeight> + <netWeight>19,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>15</shelfWidth> + <shelfHeight>9,3999996185</shelfHeight> + <shelfDepth>9,9399995804</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Ice Cream</product_name> + <brandName>Golden</brandName> + <productName>Golden Ice Cream</productName> <sku>46069397330</sku> <srp>0,9499999881</srp> - <gross_weight>9,8100004196</gross_weight> - <net_weight>8,8100004196</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>6,2199997902</shelf_width> - <shelf_height>15,8000001907</shelf_height> - <shelf_depth>11,8000001907</shelf_depth> + <grossWeight>9,8100004196</grossWeight> + <netWeight>8,8100004196</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>6,2199997902</shelfWidth> + <shelfHeight>15,8000001907</shelfHeight> + <shelfDepth>11,8000001907</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Ice Cream Sandwich</product_name> + <brandName>Golden</brandName> + <productName>Golden Ice Cream Sandwich</productName> <sku>49550614953</sku> <srp>3,8900001049</srp> - <gross_weight>12,3000001907</gross_weight> - <net_weight>10,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>9,9300003052</shelf_width> - <shelf_height>17,3999996185</shelf_height> - <shelf_depth>17,8999996185</shelf_depth> + <grossWeight>12,3000001907</grossWeight> + <netWeight>10,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>9,9300003052</shelfWidth> + <shelfHeight>17,3999996185</shelfHeight> + <shelfDepth>17,8999996185</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Popsicles</product_name> + <brandName>Golden</brandName> + <productName>Golden Popsicles</productName> <sku>51792051196</sku> <srp>3,9500000477</srp> - <gross_weight>19</gross_weight> - <net_weight>16</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>6,6900000572</shelf_width> - <shelf_height>10,3999996185</shelf_height> - <shelf_depth>7,6700000763</shelf_depth> + <grossWeight>19</grossWeight> + <netWeight>16</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>6,6900000572</shelfWidth> + <shelfHeight>10,3999996185</shelfHeight> + <shelfDepth>7,6700000763</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Ice Cream</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Ice Cream</productName> <sku>81180350184</sku> <srp>0,7099999785</srp> - <gross_weight>20</gross_weight> - <net_weight>18</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>11,1000003815</shelf_width> - <shelf_height>22,7000007629</shelf_height> - <shelf_depth>4,0300002098</shelf_depth> + <grossWeight>20</grossWeight> + <netWeight>18</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>11,1000003815</shelfWidth> + <shelfHeight>22,7000007629</shelfHeight> + <shelfDepth>4,0300002098</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Ice Cream Sandwich</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Ice Cream Sandwich</productName> <sku>86948269009</sku> <srp>1,1499999762</srp> - <gross_weight>16,6000003815</gross_weight> - <net_weight>14,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>17,6000003815</shelf_width> - <shelf_height>17,2000007629</shelf_height> - <shelf_depth>16,7999992371</shelf_depth> + <grossWeight>16,6000003815</grossWeight> + <netWeight>14,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>17,6000003815</shelfWidth> + <shelfHeight>17,2000007629</shelfHeight> + <shelfDepth>16,7999992371</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Popsicles</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Popsicles</productName> <sku>34525341391</sku> <srp>3,2300000191</srp> - <gross_weight>10</gross_weight> - <net_weight>8</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>15,5</shelf_width> - <shelf_height>13,6999998093</shelf_height> - <shelf_depth>5,8099999428</shelf_depth> + <grossWeight>10</grossWeight> + <netWeight>8</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>15,5</shelfWidth> + <shelfHeight>13,6999998093</shelfHeight> + <shelfDepth>5,8099999428</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Ice Cream</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Ice Cream</productName> <sku>58714897036</sku> <srp>1,4900000095</srp> - <gross_weight>7,3299999237</gross_weight> - <net_weight>5,3200001717</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>21,8999996185</shelf_width> - <shelf_height>14,8000001907</shelf_height> - <shelf_depth>3,4800000191</shelf_depth> + <grossWeight>7,3299999237</grossWeight> + <netWeight>5,3200001717</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>21,8999996185</shelfWidth> + <shelfHeight>14,8000001907</shelfHeight> + <shelfDepth>3,4800000191</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Ice Cream Sandwich</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Ice Cream Sandwich</productName> <sku>92958348393</sku> <srp>3,2100000381</srp> - <gross_weight>8,470000267</gross_weight> - <net_weight>6,4699997902</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>20,1000003815</shelf_width> - <shelf_height>19,6000003815</shelf_height> - <shelf_depth>10</shelf_depth> + <grossWeight>8,470000267</grossWeight> + <netWeight>6,4699997902</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>20,1000003815</shelfWidth> + <shelfHeight>19,6000003815</shelfHeight> + <shelfDepth>10</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Popsicles</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Popsicles</productName> <sku>92913083434</sku> <srp>3,8099999428</srp> - <gross_weight>13,6999998093</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>9,8900003433</shelf_width> - <shelf_height>4,8200001717</shelf_height> - <shelf_depth>20,1000003815</shelf_depth> + <grossWeight>13,6999998093</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>9,8900003433</shelfWidth> + <shelfHeight>4,8200001717</shelfHeight> + <shelfDepth>20,1000003815</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Ice Cream</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Ice Cream</productName> <sku>84529367089</sku> <srp>2,6500000954</srp> - <gross_weight>17,7000007629</gross_weight> - <net_weight>14,6999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>16,2999992371</shelf_width> - <shelf_height>20,3999996185</shelf_height> - <shelf_depth>22,2999992371</shelf_depth> + <grossWeight>17,7000007629</grossWeight> + <netWeight>14,6999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>16,2999992371</shelfWidth> + <shelfHeight>20,3999996185</shelfHeight> + <shelfDepth>22,2999992371</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Ice Cream Sandwich</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Ice Cream Sandwich</productName> <sku>44153935313</sku> <srp>2,2400000095</srp> - <gross_weight>13,8999996185</gross_weight> - <net_weight>12,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>17,7000007629</shelf_width> - <shelf_height>20,3999996185</shelf_height> - <shelf_depth>22,8999996185</shelf_depth> + <grossWeight>13,8999996185</grossWeight> + <netWeight>12,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>17,7000007629</shelfWidth> + <shelfHeight>20,3999996185</shelfHeight> + <shelfDepth>22,8999996185</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Popsicles</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Popsicles</productName> <sku>40161059498</sku> <srp>2,0999999046</srp> - <gross_weight>11,5</gross_weight> - <net_weight>8,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>16,3999996185</shelf_width> - <shelf_height>7,2399997711</shelf_height> - <shelf_depth>17,8999996185</shelf_depth> + <grossWeight>11,5</grossWeight> + <netWeight>8,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>16,3999996185</shelfWidth> + <shelfHeight>7,2399997711</shelfHeight> + <shelfDepth>17,8999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>TV Dinner</product_subcategory> <product_category>Frozen Entrees</product_category> <product_department>Frozen Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Turkey TV Dinner</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Turkey TV Dinner</productName> <sku>98513836264</sku> <srp>3,2100000381</srp> - <gross_weight>6,3499999046</gross_weight> - <net_weight>5,3400001526</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>13,1999998093</shelf_width> - <shelf_height>20,6000003815</shelf_height> - <shelf_depth>14,5</shelf_depth> + <grossWeight>6,3499999046</grossWeight> + <netWeight>5,3400001526</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>13,1999998093</shelfWidth> + <shelfHeight>20,6000003815</shelfHeight> + <shelfDepth>14,5</shelfDepth> </Product> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Chicken TV Dinner</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Chicken TV Dinner</productName> <sku>78092923760</sku> <srp>2,2000000477</srp> - <gross_weight>15,6999998093</gross_weight> - <net_weight>14,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>11,5</shelf_width> - <shelf_height>14,8999996185</shelf_height> - <shelf_depth>13,3999996185</shelf_depth> + <grossWeight>15,6999998093</grossWeight> + <netWeight>14,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>11,5</shelfWidth> + <shelfHeight>14,8999996185</shelfHeight> + <shelfDepth>13,3999996185</shelfDepth> </Product> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Beef TV Dinner</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Beef TV Dinner</productName> <sku>37717491984</sku> <srp>3,9100000858</srp> - <gross_weight>10,8999996185</gross_weight> - <net_weight>8,8900003433</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>10</shelf_width> - <shelf_height>12,6000003815</shelf_height> - <shelf_depth>14,3000001907</shelf_depth> + <grossWeight>10,8999996185</grossWeight> + <netWeight>8,8900003433</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>10</shelfWidth> + <shelfHeight>12,6000003815</shelfHeight> + <shelfDepth>14,3000001907</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Turkey TV Dinner</product_name> + <brandName>Golden</brandName> + <productName>Golden Turkey TV Dinner</productName> <sku>10314574837</sku> <srp>2,1099998951</srp> - <gross_weight>10,6999998093</gross_weight> - <net_weight>9,6899995804</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>17,5</shelf_width> - <shelf_height>21,7000007629</shelf_height> - <shelf_depth>13,5</shelf_depth> + <grossWeight>10,6999998093</grossWeight> + <netWeight>9,6899995804</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>17,5</shelfWidth> + <shelfHeight>21,7000007629</shelfHeight> + <shelfDepth>13,5</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Chicken TV Dinner</product_name> + <brandName>Golden</brandName> + <productName>Golden Chicken TV Dinner</productName> <sku>57605234980</sku> <srp>0,5899999738</srp> - <gross_weight>18,2999992371</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>16,3999996185</shelf_width> - <shelf_height>16,8999996185</shelf_height> - <shelf_depth>5,5500001907</shelf_depth> + <grossWeight>18,2999992371</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>16,3999996185</shelfWidth> + <shelfHeight>16,8999996185</shelfHeight> + <shelfDepth>5,5500001907</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Beef TV Dinner</product_name> + <brandName>Golden</brandName> + <productName>Golden Beef TV Dinner</productName> <sku>63373153805</sku> <srp>1,8300000429</srp> - <gross_weight>9,4300003052</gross_weight> - <net_weight>6,4299998283</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>4,3800001144</shelf_width> - <shelf_height>3,2799999714</shelf_height> - <shelf_depth>15,1999998093</shelf_depth> + <grossWeight>9,4300003052</grossWeight> + <netWeight>6,4299998283</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>4,3800001144</shelfWidth> + <shelfHeight>3,2799999714</shelfHeight> + <shelfDepth>15,1999998093</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Turkey TV Dinner</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Turkey TV Dinner</productName> <sku>47448557019</sku> <srp>2,9100000858</srp> - <gross_weight>21,8999996185</gross_weight> - <net_weight>19,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>6,3299999237</shelf_width> - <shelf_height>15,3000001907</shelf_height> - <shelf_depth>20,2999992371</shelf_depth> + <grossWeight>21,8999996185</grossWeight> + <netWeight>19,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>6,3299999237</shelfWidth> + <shelfHeight>15,3000001907</shelfHeight> + <shelfDepth>20,2999992371</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Chicken TV Dinner</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Chicken TV Dinner</productName> <sku>42408761382</sku> <srp>1,1100000143</srp> - <gross_weight>18,3999996185</gross_weight> - <net_weight>16,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>3,4900000095</shelf_width> - <shelf_height>10,8999996185</shelf_height> - <shelf_depth>15,6999998093</shelf_depth> + <grossWeight>18,3999996185</grossWeight> + <netWeight>16,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>3,4900000095</shelfWidth> + <shelfHeight>10,8999996185</shelfHeight> + <shelfDepth>15,6999998093</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Beef TV Dinner</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Beef TV Dinner</productName> <sku>74365511536</sku> <srp>2,1400001049</srp> - <gross_weight>14,5</gross_weight> - <net_weight>13,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>16,5</shelf_width> - <shelf_height>16,5</shelf_height> - <shelf_depth>13,8000001907</shelf_depth> + <grossWeight>14,5</grossWeight> + <netWeight>13,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>16,5</shelfWidth> + <shelfHeight>16,5</shelfHeight> + <shelfDepth>13,8000001907</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Turkey TV Dinner</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Turkey TV Dinner</productName> <sku>54926684498</sku> <srp>2,3199999332</srp> - <gross_weight>15</gross_weight> - <net_weight>13</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>8,7899999619</shelf_width> - <shelf_height>17,7999992371</shelf_height> - <shelf_depth>12,8999996185</shelf_depth> + <grossWeight>15</grossWeight> + <netWeight>13</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>8,7899999619</shelfWidth> + <shelfHeight>17,7999992371</shelfHeight> + <shelfDepth>12,8999996185</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Chicken TV Dinner</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Chicken TV Dinner</productName> <sku>12264551520</sku> <srp>2,4500000477</srp> - <gross_weight>14,3999996185</gross_weight> - <net_weight>13,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>6,5100002289</shelf_width> - <shelf_height>10,3000001907</shelf_height> - <shelf_depth>22,5</shelf_depth> + <grossWeight>14,3999996185</grossWeight> + <netWeight>13,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>6,5100002289</shelfWidth> + <shelfHeight>10,3000001907</shelfHeight> + <shelfDepth>22,5</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Beef TV Dinner</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Beef TV Dinner</productName> <sku>48794704079</sku> <srp>0,8600000143</srp> - <gross_weight>9,1800003052</gross_weight> - <net_weight>7,1799998283</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>12,6999998093</shelf_width> - <shelf_height>16,7999992371</shelf_height> - <shelf_depth>16</shelf_depth> + <grossWeight>9,1800003052</grossWeight> + <netWeight>7,1799998283</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>12,6999998093</shelfWidth> + <shelfHeight>16,7999992371</shelfHeight> + <shelfDepth>16</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Turkey TV Dinner</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Turkey TV Dinner</productName> <sku>37703158259</sku> <srp>3,6800000668</srp> - <gross_weight>10,1999998093</gross_weight> - <net_weight>9,1899995804</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>6,0199999809</shelf_width> - <shelf_height>20,3999996185</shelf_height> - <shelf_depth>18,6000003815</shelf_depth> + <grossWeight>10,1999998093</grossWeight> + <netWeight>9,1899995804</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>6,0199999809</shelfWidth> + <shelfHeight>20,3999996185</shelfHeight> + <shelfDepth>18,6000003815</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Chicken TV Dinner</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Chicken TV Dinner</productName> <sku>98351905941</sku> <srp>2,3499999046</srp> - <gross_weight>9,0600004196</gross_weight> - <net_weight>6,0599999428</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>12,8999996185</shelf_width> - <shelf_height>12,8000001907</shelf_height> - <shelf_depth>20,7999992371</shelf_depth> + <grossWeight>9,0600004196</grossWeight> + <netWeight>6,0599999428</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>12,8999996185</shelfWidth> + <shelfHeight>12,8000001907</shelfHeight> + <shelfDepth>20,7999992371</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Beef TV Dinner</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Beef TV Dinner</productName> <sku>60263175368</sku> <srp>1,7699999809</srp> - <gross_weight>21,2000007629</gross_weight> - <net_weight>20,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>14,5</shelf_width> - <shelf_height>21,7000007629</shelf_height> - <shelf_depth>16,3999996185</shelf_depth> + <grossWeight>21,2000007629</grossWeight> + <netWeight>20,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>14,5</shelfWidth> + <shelfHeight>21,7000007629</shelfHeight> + <shelfDepth>16,3999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Cheese</product_subcategory> <product_category>Dairy</product_category> <product_department>Dairy</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Carlson</brand_name> - <product_name>Carlson Jack Cheese</product_name> + <brandName>Carlson</brandName> + <productName>Carlson Jack Cheese</productName> <sku>83246852755</sku> <srp>1,7999999523</srp> - <gross_weight>12,1999998093</gross_weight> - <net_weight>9,1899995804</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>15,8999996185</shelf_width> - <shelf_height>20,7999992371</shelf_height> - <shelf_depth>20,7000007629</shelf_depth> + <grossWeight>12,1999998093</grossWeight> + <netWeight>9,1899995804</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>15,8999996185</shelfWidth> + <shelfHeight>20,7999992371</shelfHeight> + <shelfDepth>20,7000007629</shelfDepth> </Product> <Product> - <brand_name>Carlson</brand_name> - <product_name>Carlson Muenster Cheese</product_name> + <brandName>Carlson</brandName> + <productName>Carlson Muenster Cheese</productName> <sku>16273263096</sku> <srp>3,75</srp> - <gross_weight>19,2999992371</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>1102</shelf_width> - <shelf_height>6,0799999237</shelf_height> - <shelf_depth>22,8999996185</shelf_depth> + <grossWeight>19,2999992371</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>1102</shelfWidth> + <shelfHeight>6,0799999237</shelfHeight> + <shelfDepth>22,8999996185</shelfDepth> </Product> <Product> - <brand_name>Carlson</brand_name> - <product_name>Carlson String Cheese</product_name> + <brandName>Carlson</brandName> + <productName>Carlson String Cheese</productName> <sku>96660065054</sku> <srp>1,9800000191</srp> - <gross_weight>20,8999996185</gross_weight> - <net_weight>18,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>15,1999998093</shelf_width> - <shelf_height>7,5799999237</shelf_height> - <shelf_depth>19,2000007629</shelf_depth> + <grossWeight>20,8999996185</grossWeight> + <netWeight>18,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>15,1999998093</shelfWidth> + <shelfHeight>7,5799999237</shelfHeight> + <shelfDepth>19,2000007629</shelfDepth> </Product> <Product> - <brand_name>Carlson</brand_name> - <product_name>Carlson Low Fat String Cheese</product_name> + <brandName>Carlson</brandName> + <productName>Carlson Low Fat String Cheese</productName> <sku>10141282677</sku> <srp>2,3099999428</srp> - <gross_weight>9,8000001907</gross_weight> - <net_weight>6,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>20,3999996185</shelf_width> - <shelf_height>4,8499999046</shelf_height> - <shelf_depth>22,1000003815</shelf_depth> + <grossWeight>9,8000001907</grossWeight> + <netWeight>6,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>20,3999996185</shelfWidth> + <shelfHeight>4,8499999046</shelfHeight> + <shelfDepth>22,1000003815</shelfDepth> </Product> <Product> - <brand_name>Carlson</brand_name> - <product_name>Carlson Havarti Cheese</product_name> + <brandName>Carlson</brandName> + <productName>Carlson Havarti Cheese</productName> <sku>35863720774</sku> <srp>1,1299999952</srp> - <gross_weight>14,1000003815</gross_weight> - <net_weight>12,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>14,6999998093</shelf_width> - <shelf_height>13,1999998093</shelf_height> - <shelf_depth>22,6000003815</shelf_depth> + <grossWeight>14,1000003815</grossWeight> + <netWeight>12,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>14,6999998093</shelfWidth> + <shelfHeight>13,1999998093</shelfHeight> + <shelfDepth>22,6000003815</shelfDepth> </Product> <Product> - <brand_name>Carlson</brand_name> - <product_name>Carlson Head Cheese</product_name> + <brandName>Carlson</brandName> + <productName>Carlson Head Cheese</productName> <sku>98582704663</sku> <srp>3,9700000286</srp> - <gross_weight>10,8000001907</gross_weight> - <net_weight>9,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>18,2999992371</shelf_width> - <shelf_height>9,9099998474</shelf_height> - <shelf_depth>13,1000003815</shelf_depth> + <grossWeight>10,8000001907</grossWeight> + <netWeight>9,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>18,2999992371</shelfWidth> + <shelfHeight>9,9099998474</shelfHeight> + <shelfDepth>13,1000003815</shelfDepth> </Product> <Product> - <brand_name>Carlson</brand_name> - <product_name>Carlson Cheese Spread</product_name> + <brandName>Carlson</brandName> + <productName>Carlson Cheese Spread</productName> <sku>27445039153</sku> <srp>1,8200000525</srp> - <gross_weight>8,7100000381</gross_weight> - <net_weight>6,7100000381</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>12,1999998093</shelf_width> - <shelf_height>10,1000003815</shelf_height> - <shelf_depth>15,5</shelf_depth> + <grossWeight>8,7100000381</grossWeight> + <netWeight>6,7100000381</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>12,1999998093</shelfWidth> + <shelfHeight>10,1000003815</shelfHeight> + <shelfDepth>15,5</shelfDepth> </Product> <Product> - <brand_name>Carlson</brand_name> - <product_name>Carlson Sharp Cheddar Cheese</product_name> + <brandName>Carlson</brandName> + <productName>Carlson Sharp Cheddar Cheese</productName> <sku>35499659180</sku> <srp>2,2000000477</srp> - <gross_weight>17,1000003815</gross_weight> - <net_weight>15,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>17,1000003815</shelf_width> - <shelf_height>9,8699998856</shelf_height> - <shelf_depth>7,25</shelf_depth> + <grossWeight>17,1000003815</grossWeight> + <netWeight>15,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>17,1000003815</shelfWidth> + <shelfHeight>9,8699998856</shelfHeight> + <shelfDepth>7,25</shelfDepth> </Product> <Product> - <brand_name>Carlson</brand_name> - <product_name>Carlson Mild Cheddar Cheese</product_name> + <brandName>Carlson</brandName> + <productName>Carlson Mild Cheddar Cheese</productName> <sku>23599759936</sku> <srp>3,9600000381</srp> - <gross_weight>11,8999996185</gross_weight> - <net_weight>9,8900003433</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>21,6000003815</shelf_width> - <shelf_height>16,3999996185</shelf_height> - <shelf_depth>5,7600002289</shelf_depth> + <grossWeight>11,8999996185</grossWeight> + <netWeight>9,8900003433</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>21,6000003815</shelfWidth> + <shelfHeight>16,3999996185</shelfHeight> + <shelfDepth>5,7600002289</shelfDepth> </Product> <Product> - <brand_name>Club</brand_name> - <product_name>Club Jack Cheese</product_name> + <brandName>Club</brandName> + <productName>Club Jack Cheese</productName> <sku>82158702015</sku> <srp>3,4400000572</srp> - <gross_weight>14,3999996185</gross_weight> - <net_weight>12,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>12,6999998093</shelf_width> - <shelf_height>20,8999996185</shelf_height> - <shelf_depth>7,4200000763</shelf_depth> + <grossWeight>14,3999996185</grossWeight> + <netWeight>12,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>12,6999998093</shelfWidth> + <shelfHeight>20,8999996185</shelfHeight> + <shelfDepth>7,4200000763</shelfDepth> </Product> <Product> - <brand_name>Club</brand_name> - <product_name>Club Muenster Cheese</product_name> + <brandName>Club</brandName> + <productName>Club Muenster Cheese</productName> <sku>39496569037</sku> <srp>2,5699999332</srp> - <gross_weight>17,7999992371</gross_weight> - <net_weight>15,6999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>22,2999992371</shelf_width> - <shelf_height>7,0300002098</shelf_height> - <shelf_depth>13,1999998093</shelf_depth> + <grossWeight>17,7999992371</grossWeight> + <netWeight>15,6999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>22,2999992371</shelfWidth> + <shelfHeight>7,0300002098</shelfHeight> + <shelfDepth>13,1999998093</shelfDepth> </Product> <Product> - <brand_name>Club</brand_name> - <product_name>Club String Cheese</product_name> + <brandName>Club</brandName> + <productName>Club String Cheese</productName> <sku>76026721596</sku> <srp>1,8799999952</srp> - <gross_weight>6,3099999428</gross_weight> - <net_weight>3,2999999523</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>5,2199997902</shelf_width> - <shelf_height>18,7000007629</shelf_height> - <shelf_depth>11,1999998093</shelf_depth> + <grossWeight>6,3099999428</grossWeight> + <netWeight>3,2999999523</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>5,2199997902</shelfWidth> + <shelfHeight>18,7000007629</shelfHeight> + <shelfDepth>11,1999998093</shelfDepth> </Product> <Product> - <brand_name>Club</brand_name> - <product_name>Club Low Fat String Cheese</product_name> + <brandName>Club</brandName> + <productName>Club Low Fat String Cheese</productName> <sku>68700224757</sku> <srp>3,3800001144</srp> - <gross_weight>17</gross_weight> - <net_weight>15</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>22,7999992371</shelf_width> - <shelf_height>6,4800000191</shelf_height> - <shelf_depth>4,6500000954</shelf_depth> + <grossWeight>17</grossWeight> + <netWeight>15</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>22,7999992371</shelfWidth> + <shelfHeight>6,4800000191</shelfHeight> + <shelfDepth>4,6500000954</shelfDepth> </Product> <Product> - <brand_name>Club</brand_name> - <product_name>Club Havarti Cheese</product_name> + <brandName>Club</brandName> + <productName>Club Havarti Cheese</productName> <sku>74468143582</sku> <srp>3,9500000477</srp> - <gross_weight>9,9499998093</gross_weight> - <net_weight>7,9400000572</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>36</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>9,9099998474</shelf_width> - <shelf_height>22,8999996185</shelf_height> - <shelf_depth>6,2399997711</shelf_depth> + <grossWeight>9,9499998093</grossWeight> + <netWeight>7,9400000572</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>36</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>9,9099998474</shelfWidth> + <shelfHeight>22,8999996185</shelfHeight> + <shelfDepth>6,2399997711</shelfDepth> </Product> <Product> - <brand_name>Club</brand_name> - <product_name>Club Head Cheese</product_name> + <brandName>Club</brandName> + <productName>Club Head Cheese</productName> <sku>24898700118</sku> <srp>1,4700000286</srp> - <gross_weight>8,4099998474</gross_weight> - <net_weight>5,4000000954</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>13,1000003815</shelf_width> - <shelf_height>7,5399999619</shelf_height> - <shelf_depth>18,6000003815</shelf_depth> + <grossWeight>8,4099998474</grossWeight> + <netWeight>5,4000000954</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>13,1000003815</shelfWidth> + <shelfHeight>7,5399999619</shelfHeight> + <shelfDepth>18,6000003815</shelfDepth> </Product> <Product> - <brand_name>Club</brand_name> - <product_name>Club Cheese Spread</product_name> + <brandName>Club</brandName> + <productName>Club Cheese Spread</productName> <sku>66002255082</sku> <srp>2,1700000763</srp> - <gross_weight>14,5</gross_weight> - <net_weight>13,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>7,4000000954</shelf_width> - <shelf_height>10,3999996185</shelf_height> - <shelf_depth>6,0599999428</shelf_depth> + <grossWeight>14,5</grossWeight> + <netWeight>13,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>7,4000000954</shelfWidth> + <shelfHeight>10,3999996185</shelfHeight> + <shelfDepth>6,0599999428</shelfDepth> </Product> <Product> - <brand_name>Club</brand_name> - <product_name>Club Sharp Cheddar Cheese</product_name> + <brandName>Club</brandName> + <productName>Club Sharp Cheddar Cheese</productName> <sku>21053420901</sku> <srp>3,6099998951</srp> - <gross_weight>18,7999992371</gross_weight> - <net_weight>16,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>21,6000003815</shelf_width> - <shelf_height>18,7999992371</shelf_height> - <shelf_depth>6,5799999237</shelf_depth> + <grossWeight>18,7999992371</grossWeight> + <netWeight>16,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>21,6000003815</shelfWidth> + <shelfHeight>18,7999992371</shelfHeight> + <shelfDepth>6,5799999237</shelfDepth> </Product> <Product> - <brand_name>Club</brand_name> - <product_name>Club Mild Cheddar Cheese</product_name> + <brandName>Club</brandName> + <productName>Club Mild Cheddar Cheese</productName> <sku>31394742131</sku> <srp>2,9300000668</srp> - <gross_weight>9,5799999237</gross_weight> - <net_weight>7,5700001717</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>15,8999996185</shelf_width> - <shelf_height>11,6999998093</shelf_height> - <shelf_depth>3,8699998856</shelf_depth> + <grossWeight>9,5799999237</grossWeight> + <netWeight>7,5700001717</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>15,8999996185</shelfWidth> + <shelfHeight>11,6999998093</shelfHeight> + <shelfDepth>3,8699998856</shelfDepth> </Product> <Product> - <brand_name>Gorilla</brand_name> - <product_name>Gorilla Jack Cheese</product_name> + <brandName>Gorilla</brandName> + <productName>Gorilla Jack Cheese</productName> <sku>32799597382</sku> <srp>3,9300000668</srp> - <gross_weight>21,8999996185</gross_weight> - <net_weight>18,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>19,7999992371</shelf_width> - <shelf_height>11,6999998093</shelf_height> - <shelf_depth>5,8699998856</shelf_depth> + <grossWeight>21,8999996185</grossWeight> + <netWeight>18,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>19,7999992371</shelfWidth> + <shelfHeight>11,6999998093</shelfHeight> + <shelfDepth>5,8699998856</shelfDepth> </Product> <Product> - <brand_name>Gorilla</brand_name> - <product_name>Gorilla Muenster Cheese</product_name> + <brandName>Gorilla</brandName> + <productName>Gorilla Muenster Cheese</productName> <sku>51878396868</sku> <srp>1,7999999523</srp> - <gross_weight>19,3999996185</gross_weight> - <net_weight>18,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>11,5</shelf_width> - <shelf_height>15,3000001907</shelf_height> - <shelf_depth>18,3999996185</shelf_depth> + <grossWeight>19,3999996185</grossWeight> + <netWeight>18,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>11,5</shelfWidth> + <shelfHeight>15,3000001907</shelfHeight> + <shelfDepth>18,3999996185</shelfDepth> </Product> <Product> - <brand_name>Gorilla</brand_name> - <product_name>Gorilla String Cheese</product_name> + <brandName>Gorilla</brandName> + <productName>Gorilla String Cheese</productName> <sku>29170783162</sku> <srp>1,7899999619</srp> - <gross_weight>18,2000007629</gross_weight> - <net_weight>15,1999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>8,3599996567</shelf_width> - <shelf_height>13,1999998093</shelf_height> - <shelf_depth>3,1600000858</shelf_depth> + <grossWeight>18,2000007629</grossWeight> + <netWeight>15,1999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>8,3599996567</shelfWidth> + <shelfHeight>13,1999998093</shelfHeight> + <shelfDepth>3,1600000858</shelfDepth> </Product> <Product> - <brand_name>Gorilla</brand_name> - <product_name>Gorilla Low Fat String Cheese</product_name> + <brandName>Gorilla</brandName> + <productName>Gorilla Low Fat String Cheese</productName> <sku>76508650183</sku> <srp>2,9300000668</srp> - <gross_weight>20,7999992371</gross_weight> - <net_weight>19,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>11,6000003815</shelf_width> - <shelf_height>17</shelf_height> - <shelf_depth>19,2000007629</shelf_depth> + <grossWeight>20,7999992371</grossWeight> + <netWeight>19,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>11,6000003815</shelfWidth> + <shelfHeight>17</shelfHeight> + <shelfDepth>19,2000007629</shelfDepth> </Product> <Product> - <brand_name>Gorilla</brand_name> - <product_name>Gorilla Havarti Cheese</product_name> + <brandName>Gorilla</brandName> + <productName>Gorilla Havarti Cheese</productName> <sku>23038802742</sku> <srp>3,3399999142</srp> - <gross_weight>13,3000001907</gross_weight> - <net_weight>10,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>16,5</shelf_width> - <shelf_height>16,7999992371</shelf_height> - <shelf_depth>10,8999996185</shelf_depth> + <grossWeight>13,3000001907</grossWeight> + <netWeight>10,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>16,5</shelfWidth> + <shelfHeight>16,7999992371</shelfHeight> + <shelfDepth>10,8999996185</shelfDepth> </Product> <Product> - <brand_name>Gorilla</brand_name> - <product_name>Gorilla Head Cheese</product_name> + <brandName>Gorilla</brandName> + <productName>Gorilla Head Cheese</productName> <sku>15712305903</sku> <srp>2,7400000095</srp> - <gross_weight>18,2000007629</gross_weight> - <net_weight>17,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>11,6000003815</shelf_width> - <shelf_height>19,6000003815</shelf_height> - <shelf_depth>16,2999992371</shelf_depth> + <grossWeight>18,2000007629</grossWeight> + <netWeight>17,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>11,6000003815</shelfWidth> + <shelfHeight>19,6000003815</shelfHeight> + <shelfDepth>16,2999992371</shelfDepth> </Product> <Product> - <brand_name>Gorilla</brand_name> - <product_name>Gorilla Cheese Spread</product_name> + <brandName>Gorilla</brandName> + <productName>Gorilla Cheese Spread</productName> <sku>21480224728</sku> <srp>3,1800000668</srp> - <gross_weight>21,1000003815</gross_weight> - <net_weight>20,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>10</shelf_width> - <shelf_height>7,9000000954</shelf_height> - <shelf_depth>4,7899999619</shelf_depth> + <grossWeight>21,1000003815</grossWeight> + <netWeight>20,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>10</shelfWidth> + <shelfHeight>7,9000000954</shelfHeight> + <shelfDepth>4,7899999619</shelfDepth> </Product> <Product> - <brand_name>Gorilla</brand_name> - <product_name>Gorilla Sharp Cheddar Cheese</product_name> + <brandName>Gorilla</brandName> + <productName>Gorilla Sharp Cheddar Cheese</productName> <sku>97293624281</sku> <srp>3,5899999142</srp> - <gross_weight>13,1000003815</gross_weight> - <net_weight>10,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>22,6000003815</shelf_width> - <shelf_height>16,5</shelf_height> - <shelf_depth>9,1700000763</shelf_depth> + <grossWeight>13,1000003815</grossWeight> + <netWeight>10,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>22,6000003815</shelfWidth> + <shelfHeight>16,5</shelfHeight> + <shelfDepth>9,1700000763</shelfDepth> </Product> <Product> - <brand_name>Gorilla</brand_name> - <product_name>Gorilla Mild Cheddar Cheese</product_name> + <brandName>Gorilla</brandName> + <productName>Gorilla Mild Cheddar Cheese</productName> <sku>72299309372</sku> <srp>3,2899999619</srp> - <gross_weight>8,8599996567</gross_weight> - <net_weight>6,8499999046</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>22</shelf_width> - <shelf_height>8,6999998093</shelf_height> - <shelf_depth>14,8999996185</shelf_depth> + <grossWeight>8,8599996567</grossWeight> + <netWeight>6,8499999046</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>22</shelfWidth> + <shelfHeight>8,6999998093</shelfHeight> + <shelfDepth>14,8999996185</shelfDepth> </Product> <Product> - <brand_name>Even Better</brand_name> - <product_name>Even Better Jack Cheese</product_name> + <brandName>Even Better</brandName> + <productName>Even Better Jack Cheese</productName> <sku>59838452935</sku> <srp>0,8100000024</srp> - <gross_weight>6,3299999237</gross_weight> - <net_weight>4,3200001717</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>19,1000003815</shelf_width> - <shelf_height>18,7999992371</shelf_height> - <shelf_depth>20,1000003815</shelf_depth> + <grossWeight>6,3299999237</grossWeight> + <netWeight>4,3200001717</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>19,1000003815</shelfWidth> + <shelfHeight>18,7999992371</shelfHeight> + <shelfDepth>20,1000003815</shelfDepth> </Product> <Product> - <brand_name>Even Better</brand_name> - <product_name>Even Better Muenster Cheese</product_name> + <brandName>Even Better</brandName> + <productName>Even Better Muenster Cheese</productName> <sku>85560891032</sku> <srp>0,7200000286</srp> - <gross_weight>12</gross_weight> - <net_weight>9</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>20,1000003815</shelf_width> - <shelf_height>6,2100000381</shelf_height> - <shelf_depth>5,2600002289</shelf_depth> + <grossWeight>12</grossWeight> + <netWeight>9</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>20,1000003815</shelfWidth> + <shelfHeight>6,2100000381</shelfHeight> + <shelfDepth>5,2600002289</shelfDepth> </Product> <Product> - <brand_name>Even Better</brand_name> - <product_name>Even Better String Cheese</product_name> + <brandName>Even Better</brandName> + <productName>Even Better String Cheese</productName> <sku>23160703778</sku> <srp>3,5</srp> - <gross_weight>14,6000003815</gross_weight> - <net_weight>12,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>13,8999996185</shelf_width> - <shelf_height>22,2000007629</shelf_height> - <shelf_depth>8,8400001526</shelf_depth> + <grossWeight>14,6000003815</grossWeight> + <netWeight>12,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>13,8999996185</shelfWidth> + <shelfHeight>22,2000007629</shelfHeight> + <shelfDepth>8,8400001526</shelfDepth> </Product> <Product> - <brand_name>Even Better</brand_name> - <product_name>Even Better Low Fat String Cheese</product_name> + <brandName>Even Better</brandName> + <productName>Even Better Low Fat String Cheese</productName> <sku>42023038268</sku> <srp>2,5899999142</srp> - <gross_weight>18,6000003815</gross_weight> - <net_weight>16,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>4,1599998474</shelf_width> - <shelf_height>4,9800000191</shelf_height> - <shelf_depth>9,5</shelf_depth> + <grossWeight>18,6000003815</grossWeight> + <netWeight>16,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>4,1599998474</shelfWidth> + <shelfHeight>4,9800000191</shelfHeight> + <shelfDepth>9,5</shelfDepth> </Product> <Product> - <brand_name>Even Better</brand_name> - <product_name>Even Better Havarti Cheese</product_name> + <brandName>Even Better</brandName> + <productName>Even Better Havarti Cheese</productName> <sku>50077658295</sku> <srp>3,6099998951</srp> - <gross_weight>6,9400000572</gross_weight> - <net_weight>3,9400000572</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>8,4799995422</shelf_width> - <shelf_height>7,7800002098</shelf_height> - <shelf_depth>7,5100002289</shelf_depth> + <grossWeight>6,9400000572</grossWeight> + <netWeight>3,9400000572</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>8,4799995422</shelfWidth> + <shelfHeight>7,7800002098</shelfHeight> + <shelfDepth>7,5100002289</shelfDepth> </Product> <Product> - <brand_name>Even Better</brand_name> - <product_name>Even Better Head Cheese</product_name> + <brandName>Even Better</brandName> + <productName>Even Better Head Cheese</productName> <sku>38177759051</sku> <srp>0,8399999738</srp> - <gross_weight>13,1000003815</gross_weight> - <net_weight>10,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>10,3999996185</shelf_width> - <shelf_height>9,5900001526</shelf_height> - <shelf_depth>17,3999996185</shelf_depth> + <grossWeight>13,1000003815</grossWeight> + <netWeight>10,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>10,3999996185</shelfWidth> + <shelfHeight>9,5900001526</shelfHeight> + <shelfDepth>17,3999996185</shelfDepth> </Product> <Product> - <brand_name>Even Better</brand_name> - <product_name>Even Better Cheese Spread</product_name> + <brandName>Even Better</brandName> + <productName>Even Better Cheese Spread</productName> <sku>15470145344</sku> <srp>3,1199998856</srp> - <gross_weight>7,9099998474</gross_weight> - <net_weight>6,9000000954</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>18</shelf_width> - <shelf_height>22,8999996185</shelf_height> - <shelf_depth>13,3000001907</shelf_depth> + <grossWeight>7,9099998474</grossWeight> + <netWeight>6,9000000954</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>18</shelfWidth> + <shelfHeight>22,8999996185</shelfHeight> + <shelfDepth>13,3000001907</shelfDepth> </Product> <Product> - <brand_name>Even Better</brand_name> - <product_name>Even Better Sharp Cheddar Cheese</product_name> + <brandName>Even Better</brandName> + <productName>Even Better Sharp Cheddar Cheese</productName> <sku>38905882239</sku> <srp>3,25</srp> - <gross_weight>17,2000007629</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>17,2999992371</shelf_width> - <shelf_height>10,5</shelf_height> - <shelf_depth>22,2999992371</shelf_depth> + <grossWeight>17,2000007629</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>17,2999992371</shelfWidth> + <shelfHeight>10,5</shelfHeight> + <shelfDepth>22,2999992371</shelfDepth> </Product> <Product> - <brand_name>Even Better</brand_name> - <product_name>Even Better Mild Cheddar Cheese</product_name> + <brandName>Even Better</brandName> + <productName>Even Better Mild Cheddar Cheese</productName> <sku>99338164925</sku> <srp>1,7899999619</srp> - <gross_weight>8,8900003433</gross_weight> - <net_weight>6,8899998665</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>16,2999992371</shelf_width> - <shelf_height>5,7399997711</shelf_height> - <shelf_depth>14,3000001907</shelf_depth> + <grossWeight>8,8900003433</grossWeight> + <netWeight>6,8899998665</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>16,2999992371</shelfWidth> + <shelfHeight>5,7399997711</shelfHeight> + <shelfDepth>14,3000001907</shelfDepth> </Product> <Product> - <brand_name>Booker</brand_name> - <product_name>Booker Jack Cheese</product_name> + <brandName>Booker</brandName> + <productName>Booker Jack Cheese</productName> <sku>74211649298</sku> <srp>1,8500000238</srp> - <gross_weight>14,8000001907</gross_weight> - <net_weight>13,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>21,2999992371</shelf_width> - <shelf_height>14,8999996185</shelf_height> - <shelf_depth>15,3000001907</shelf_depth> + <grossWeight>14,8000001907</grossWeight> + <netWeight>13,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>21,2999992371</shelfWidth> + <shelfHeight>14,8999996185</shelfHeight> + <shelfDepth>15,3000001907</shelfDepth> </Product> <Product> - <brand_name>Booker</brand_name> - <product_name>Booker Muenster Cheese</product_name> + <brandName>Booker</brandName> + <productName>Booker Muenster Cheese</productName> <sku>20741801857</sku> <srp>2,5099999905</srp> - <gross_weight>14,1000003815</gross_weight> - <net_weight>12,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>20,2999992371</shelf_width> - <shelf_height>9,6400003433</shelf_height> - <shelf_depth>9,8900003433</shelf_depth> + <grossWeight>14,1000003815</grossWeight> + <netWeight>12,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>20,2999992371</shelfWidth> + <shelfHeight>9,6400003433</shelfHeight> + <shelfDepth>9,8900003433</shelfDepth> </Product> <Product> - <brand_name>Booker</brand_name> - <product_name>Booker String Cheese</product_name> + <brandName>Booker</brandName> + <productName>Booker String Cheese</productName> <sku>37317435145</sku> <srp>1,6599999666</srp> - <gross_weight>21,6000003815</gross_weight> - <net_weight>18,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>11,3000001907</shelf_width> - <shelf_height>17,1000003815</shelf_height> - <shelf_depth>4,4099998474</shelf_depth> + <grossWeight>21,6000003815</grossWeight> + <netWeight>18,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>11,3000001907</shelfWidth> + <shelfHeight>17,1000003815</shelfHeight> + <shelfDepth>4,4099998474</shelfDepth> </Product> <Product> - <brand_name>Booker</brand_name> - <product_name>Booker Low Fat String Cheese</product_name> + <brandName>Booker</brandName> + <productName>Booker Low Fat String Cheese</productName> <sku>43085353970</sku> <srp>1,3400000334</srp> - <gross_weight>6,3000001907</gross_weight> - <net_weight>5,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>17,2999992371</shelf_width> - <shelf_height>19,6000003815</shelf_height> - <shelf_depth>18,5</shelf_depth> + <grossWeight>6,3000001907</grossWeight> + <netWeight>5,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>17,2999992371</shelfWidth> + <shelfHeight>19,6000003815</shelfHeight> + <shelfDepth>18,5</shelfDepth> </Product> <Product> - <brand_name>Booker</brand_name> - <product_name>Booker Havarti Cheese</product_name> + <brandName>Booker</brandName> + <productName>Booker Havarti Cheese</productName> <sku>94996623396</sku> <srp>2,7599999905</srp> - <gross_weight>13,8000001907</gross_weight> - <net_weight>11,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>19,5</shelf_width> - <shelf_height>10,5</shelf_height> - <shelf_depth>22,8999996185</shelf_depth> + <grossWeight>13,8000001907</grossWeight> + <netWeight>11,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>19,5</shelfWidth> + <shelfHeight>10,5</shelfHeight> + <shelfDepth>22,8999996185</shelfDepth> </Product> <Product> - <brand_name>Booker</brand_name> - <product_name>Booker Head Cheese</product_name> + <brandName>Booker</brandName> + <productName>Booker Head Cheese</productName> <sku>70002308487</sku> <srp>1,4500000477</srp> - <gross_weight>17,2999992371</gross_weight> - <net_weight>15,1999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>17,1000003815</shelf_width> - <shelf_height>13,1999998093</shelf_height> - <shelf_depth>21,2000007629</shelf_depth> + <grossWeight>17,2999992371</grossWeight> + <netWeight>15,1999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>17,1000003815</shelfWidth> + <shelfHeight>13,1999998093</shelfHeight> + <shelfDepth>21,2000007629</shelfDepth> </Product> <Product> - <brand_name>Booker</brand_name> - <product_name>Booker Cheese Spread</product_name> + <brandName>Booker</brandName> + <productName>Booker Cheese Spread</productName> <sku>91151344180</sku> <srp>0,9399999976</srp> - <gross_weight>8,4200000763</gross_weight> - <net_weight>5,4200000763</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>5,0799999237</shelf_width> - <shelf_height>19,6000003815</shelf_height> - <shelf_depth>10,8999996185</shelf_depth> + <grossWeight>8,4200000763</grossWeight> + <netWeight>5,4200000763</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>5,0799999237</shelfWidth> + <shelfHeight>19,6000003815</shelfHeight> + <shelfDepth>10,8999996185</shelfDepth> </Product> <Product> - <brand_name>Booker</brand_name> - <product_name>Booker Sharp Cheddar Cheese</product_name> + <brandName>Booker</brandName> + <productName>Booker Sharp Cheddar Cheese</productName> <sku>24177754521</sku> <srp>1,8500000238</srp> - <gross_weight>11,8999996185</gross_weight> - <net_weight>9,8900003433</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>3,6800000668</shelf_width> - <shelf_height>6,7699999809</shelf_height> - <shelf_depth>4,2399997711</shelf_depth> + <grossWeight>11,8999996185</grossWeight> + <netWeight>9,8900003433</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>3,6800000668</shelfWidth> + <shelfHeight>6,7699999809</shelfHeight> + <shelfDepth>4,2399997711</shelfDepth> </Product> <Product> - <brand_name>Booker</brand_name> - <product_name>Booker Mild Cheddar Cheese</product_name> + <brandName>Booker</brandName> + <productName>Booker Mild Cheddar Cheese</productName> <sku>14564556479</sku> <srp>0,6800000072</srp> - <gross_weight>12,1999998093</gross_weight> - <net_weight>10,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>15,3000001907</shelf_width> - <shelf_height>20,2999992371</shelf_height> - <shelf_depth>6,0300002098</shelf_depth> + <grossWeight>12,1999998093</grossWeight> + <netWeight>10,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>15,3000001907</shelfWidth> + <shelfHeight>20,2999992371</shelfHeight> + <shelfDepth>6,0300002098</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Chips</product_subcategory> <product_category>Snack Foods</product_category> <product_department>Snack Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice BBQ Potato Chips</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice BBQ Potato Chips</productName> <sku>82217710614</sku> <srp>3,4400000572</srp> - <gross_weight>16,2000007629</gross_weight> - <net_weight>14,1999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>19,7999992371</shelf_width> - <shelf_height>12</shelf_height> - <shelf_depth>4,0300002098</shelf_depth> + <grossWeight>16,2000007629</grossWeight> + <netWeight>14,1999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>19,7999992371</shelfWidth> + <shelfHeight>12</shelfHeight> + <shelfDepth>4,0300002098</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Corn Chips</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Corn Chips</productName> <sku>11080045104</sku> <srp>2,5199999809</srp> - <gross_weight>20,6000003815</gross_weight> - <net_weight>18,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>22,3999996185</shelf_width> - <shelf_height>14,8000001907</shelf_height> - <shelf_depth>7,0399999619</shelf_depth> + <grossWeight>20,6000003815</grossWeight> + <netWeight>18,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>22,3999996185</shelfWidth> + <shelfHeight>14,8000001907</shelfHeight> + <shelfDepth>7,0399999619</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Low Fat BBQ Chips</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Low Fat BBQ Chips</productName> <sku>19134665131</sku> <srp>2,5499999523</srp> - <gross_weight>12,1999998093</gross_weight> - <net_weight>10,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>12,5</shelf_width> - <shelf_height>17,7999992371</shelf_height> - <shelf_depth>6,5599999428</shelf_depth> + <grossWeight>12,1999998093</grossWeight> + <netWeight>10,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>12,5</shelfWidth> + <shelfHeight>17,7999992371</shelfHeight> + <shelfDepth>6,5599999428</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Potato Chips</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Potato Chips</productName> <sku>25949503779</sku> <srp>3,8900001049</srp> - <gross_weight>19,7999992371</gross_weight> - <net_weight>16,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>11,5</shelf_width> - <shelf_height>17,5</shelf_height> - <shelf_depth>15,8999996185</shelf_depth> + <grossWeight>19,7999992371</grossWeight> + <netWeight>16,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>11,5</shelfWidth> + <shelfHeight>17,5</shelfHeight> + <shelfDepth>15,8999996185</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Low Fat Chips</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Low Fat Chips</productName> <sku>33492465615</sku> <srp>0,8600000143</srp> - <gross_weight>7,1300001144</gross_weight> - <net_weight>6,1300001144</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>5,6199998856</shelf_width> - <shelf_height>5,0399999619</shelf_height> - <shelf_depth>10,8999996185</shelf_depth> + <grossWeight>7,1300001144</grossWeight> + <netWeight>6,1300001144</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>5,6199998856</shelfWidth> + <shelfHeight>5,0399999619</shelfHeight> + <shelfDepth>10,8999996185</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel BBQ Potato Chips</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel BBQ Potato Chips</productName> <sku>43737130761</sku> <srp>1,3700000048</srp> - <gross_weight>17</gross_weight> - <net_weight>16</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>4,3800001144</shelf_width> - <shelf_height>16,7999992371</shelf_height> - <shelf_depth>11,1000003815</shelf_depth> + <grossWeight>17</grossWeight> + <netWeight>16</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>4,3800001144</shelfWidth> + <shelfHeight>16,7999992371</shelfHeight> + <shelfDepth>11,1000003815</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Corn Chips</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Corn Chips</productName> <sku>93361698985</sku> <srp>1,8500000238</srp> - <gross_weight>10,3999996185</gross_weight> - <net_weight>7,3899998665</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>12,1000003815</shelf_width> - <shelf_height>18,8999996185</shelf_height> - <shelf_depth>22,6000003815</shelf_depth> + <grossWeight>10,3999996185</grossWeight> + <netWeight>7,3899998665</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>12,1000003815</shelfWidth> + <shelfHeight>18,8999996185</shelfHeight> + <shelfDepth>22,6000003815</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Low Fat BBQ Chips</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Low Fat BBQ Chips</productName> <sku>42178552746</sku> <srp>3,2000000477</srp> - <gross_weight>18,8999996185</gross_weight> - <net_weight>16,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>6,9099998474</shelf_width> - <shelf_height>4,2100000381</shelf_height> - <shelf_depth>16,7999992371</shelf_depth> + <grossWeight>18,8999996185</grossWeight> + <netWeight>16,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>6,9099998474</shelfWidth> + <shelfHeight>4,2100000381</shelfHeight> + <shelfDepth>16,7999992371</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Potato Chips</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Potato Chips</productName> <sku>70608820319</sku> <srp>3,8399999142</srp> - <gross_weight>19,7000007629</gross_weight> - <net_weight>17,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>11,5</shelf_width> - <shelf_height>20,1000003815</shelf_height> - <shelf_depth>8,3699998856</shelf_depth> + <grossWeight>19,7000007629</grossWeight> + <netWeight>17,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>11,5</shelfWidth> + <shelfHeight>20,1000003815</shelfHeight> + <shelfDepth>8,3699998856</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Low Fat Chips</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Low Fat Chips</productName> <sku>12006705403</sku> <srp>2,7300000191</srp> - <gross_weight>9,6999998093</gross_weight> - <net_weight>8,6899995804</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>19,3999996185</shelf_width> - <shelf_height>14,3999996185</shelf_height> - <shelf_depth>7,5100002289</shelf_depth> + <grossWeight>9,6999998093</grossWeight> + <netWeight>8,6899995804</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>19,3999996185</shelfWidth> + <shelfHeight>14,3999996185</shelfHeight> + <shelfDepth>7,5100002289</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast BBQ Potato Chips</product_name> + <brandName>Fast</brandName> + <productName>Fast BBQ Potato Chips</productName> <sku>23513113856</sku> <srp>2,1900000572</srp> - <gross_weight>17,7000007629</gross_weight> - <net_weight>15,6999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>14,5</shelf_width> - <shelf_height>6,8800001144</shelf_height> - <shelf_depth>8,2700004578</shelf_depth> + <grossWeight>17,7000007629</grossWeight> + <netWeight>15,6999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>14,5</shelfWidth> + <shelfHeight>6,8800001144</shelfHeight> + <shelfDepth>8,2700004578</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Corn Chips</product_name> + <brandName>Fast</brandName> + <productName>Fast Corn Chips</productName> <sku>29281032681</sku> <srp>3,7599999905</srp> - <gross_weight>9,4099998474</gross_weight> - <net_weight>6,4000000954</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>3,3800001144</shelf_width> - <shelf_height>7,6700000763</shelf_height> - <shelf_depth>22,7000007629</shelf_depth> + <grossWeight>9,4099998474</grossWeight> + <netWeight>6,4000000954</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>3,3800001144</shelfWidth> + <shelfHeight>7,6700000763</shelfHeight> + <shelfDepth>22,7000007629</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Low Fat BBQ Chips</product_name> + <brandName>Fast</brandName> + <productName>Fast Low Fat BBQ Chips</productName> <sku>81192302107</sku> <srp>0,6000000238</srp> - <gross_weight>16,8999996185</gross_weight> - <net_weight>14,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>3,5999999046</shelf_width> - <shelf_height>5,1399998665</shelf_height> - <shelf_depth>19,7999992371</shelf_depth> + <grossWeight>16,8999996185</grossWeight> + <netWeight>14,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>3,5999999046</shelfWidth> + <shelfHeight>5,1399998665</shelfHeight> + <shelfDepth>19,7999992371</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Potato Chips</product_name> + <brandName>Fast</brandName> + <productName>Fast Potato Chips</productName> <sku>70075650811</sku> <srp>1,8200000525</srp> - <gross_weight>21,7999992371</gross_weight> - <net_weight>20,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>3,8099999428</shelf_width> - <shelf_height>13,1999998093</shelf_height> - <shelf_depth>3,0999999046</shelf_depth> + <grossWeight>21,7999992371</grossWeight> + <netWeight>20,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>3,8099999428</shelfWidth> + <shelfHeight>13,1999998093</shelfHeight> + <shelfDepth>3,0999999046</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Low Fat Chips</product_name> + <brandName>Fast</brandName> + <productName>Fast Low Fat Chips</productName> <sku>66810898184</sku> <srp>3,2100000381</srp> - <gross_weight>7,8699998856</gross_weight> - <net_weight>5,8600001335</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>13,5</shelf_width> - <shelf_height>10,8999996185</shelf_height> - <shelf_depth>20,3999996185</shelf_depth> + <grossWeight>7,8699998856</grossWeight> + <netWeight>5,8600001335</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>13,5</shelfWidth> + <shelfHeight>10,8999996185</shelfHeight> + <shelfDepth>20,3999996185</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio BBQ Potato Chips</product_name> + <brandName>Horatio</brandName> + <productName>Horatio BBQ Potato Chips</productName> <sku>76335068345</sku> <srp>1,8200000525</srp> - <gross_weight>9,1599998474</gross_weight> - <net_weight>8,1499996185</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>17,2999992371</shelf_width> - <shelf_height>13,1999998093</shelf_height> - <shelf_depth>6,5900001526</shelf_depth> + <grossWeight>9,1599998474</grossWeight> + <netWeight>8,1499996185</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>17,2999992371</shelfWidth> + <shelfHeight>13,1999998093</shelfHeight> + <shelfDepth>6,5900001526</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Corn Chips</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Corn Chips</productName> <sku>97484104037</sku> <srp>3,3599998951</srp> - <gross_weight>20,3999996185</gross_weight> - <net_weight>18,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>13,8999996185</shelf_width> - <shelf_height>22</shelf_height> - <shelf_depth>17,3999996185</shelf_depth> + <grossWeight>20,3999996185</grossWeight> + <netWeight>18,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>13,8999996185</shelfWidth> + <shelfHeight>22</shelfHeight> + <shelfDepth>17,3999996185</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Low Fat BBQ Chips</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Low Fat BBQ Chips</productName> <sku>41727555394</sku> <srp>1,3200000525</srp> - <gross_weight>14,1999998093</gross_weight> - <net_weight>12,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>15,5</shelf_width> - <shelf_height>6,3400001526</shelf_height> - <shelf_depth>16,2000007629</shelf_depth> + <grossWeight>14,1999998093</grossWeight> + <netWeight>12,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>15,5</shelfWidth> + <shelfHeight>6,3400001526</shelfHeight> + <shelfDepth>16,2000007629</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Potato Chips</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Potato Chips</productName> <sku>17780160307</sku> <srp>0,8199999928</srp> - <gross_weight>16,3999996185</gross_weight> - <net_weight>15,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>7</shelf_width> - <shelf_height>21,2000007629</shelf_height> - <shelf_depth>12,3000001907</shelf_depth> + <grossWeight>16,3999996185</grossWeight> + <netWeight>15,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>7</shelfWidth> + <shelfHeight>21,2000007629</shelfHeight> + <shelfDepth>12,3000001907</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Low Fat Chips</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Low Fat Chips</productName> <sku>11555708050</sku> <srp>3,7799999714</srp> - <gross_weight>10,5</gross_weight> - <net_weight>8,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>15,3999996185</shelf_width> - <shelf_height>12,5</shelf_height> - <shelf_depth>5,2300000191</shelf_depth> + <grossWeight>10,5</grossWeight> + <netWeight>8,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>15,3999996185</shelfWidth> + <shelfHeight>12,5</shelfHeight> + <shelfDepth>5,2300000191</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West BBQ Potato Chips</product_name> + <brandName>Fort West</brandName> + <productName>Fort West BBQ Potato Chips</productName> <sku>81177968382</sku> <srp>3,8800001144</srp> - <gross_weight>16,1000003815</gross_weight> - <net_weight>14,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>16,7000007629</shelf_width> - <shelf_height>10,3999996185</shelf_height> - <shelf_depth>4,5500001907</shelf_depth> + <grossWeight>16,1000003815</grossWeight> + <netWeight>14,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>16,7000007629</shelfWidth> + <shelfHeight>10,3999996185</shelfHeight> + <shelfDepth>4,5500001907</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Corn Chips</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Corn Chips</productName> <sku>78015547394</sku> <srp>1,2599999905</srp> - <gross_weight>12,1999998093</gross_weight> - <net_weight>11,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>8,6899995804</shelf_width> - <shelf_height>22,6000003815</shelf_height> - <shelf_depth>12,6000003815</shelf_depth> + <grossWeight>12,1999998093</grossWeight> + <netWeight>11,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>8,6899995804</shelfWidth> + <shelfHeight>22,6000003815</shelfHeight> + <shelfDepth>12,6000003815</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Low Fat BBQ Chips</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Low Fat BBQ Chips</productName> <sku>66115648150</sku> <srp>2,1300001144</srp> - <gross_weight>19,2999992371</gross_weight> - <net_weight>17,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>7,4299998283</shelf_width> - <shelf_height>18,8999996185</shelf_height> - <shelf_depth>19,7999992371</shelf_depth> + <grossWeight>19,2999992371</grossWeight> + <netWeight>17,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>7,4299998283</shelfWidth> + <shelfHeight>18,8999996185</shelfHeight> + <shelfDepth>19,7999992371</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Potato Chips</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Potato Chips</productName> <sku>35717476010</sku> <srp>2,1500000954</srp> - <gross_weight>16</gross_weight> - <net_weight>15</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>21,6000003815</shelf_width> - <shelf_height>12,3999996185</shelf_height> - <shelf_depth>15,1000003815</shelf_depth> + <grossWeight>16</grossWeight> + <netWeight>15</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>21,6000003815</shelfWidth> + <shelfHeight>12,3999996185</shelfHeight> + <shelfDepth>15,1000003815</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Low Fat Chips</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Low Fat Chips</productName> <sku>18948981165</sku> <srp>1,7300000191</srp> - <gross_weight>13,3000001907</gross_weight> - <net_weight>11,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>9,7399997711</shelf_width> - <shelf_height>9,8199996948</shelf_height> - <shelf_depth>18,8999996185</shelf_depth> + <grossWeight>13,3000001907</grossWeight> + <netWeight>11,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>9,7399997711</shelfWidth> + <shelfHeight>9,8199996948</shelfHeight> + <shelfDepth>18,8999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Fresh Vegetables</product_subcategory> <product_category>Vegetables</product_category> <product_department>Produce</product_department> - <product_family>Food</product_family> - </Product_class> - <Product_class> + <productFamily>Food</productFamily> + </ProductClass> + <ProductClass> <product_subcategory>Sour Cream</product_subcategory> <product_category>Dairy</product_category> <product_department>Dairy</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Carlson</brand_name> - <product_name>Carlson Low Fat Sour Cream</product_name> + <brandName>Carlson</brandName> + <productName>Carlson Low Fat Sour Cream</productName> <sku>87092131972</sku> <srp>0,8199999928</srp> - <gross_weight>12,1999998093</gross_weight> - <net_weight>11,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>22,2000007629</shelf_width> - <shelf_height>20,2999992371</shelf_height> - <shelf_depth>14,3999996185</shelf_depth> + <grossWeight>12,1999998093</grossWeight> + <netWeight>11,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>22,2000007629</shelfWidth> + <shelfHeight>20,2999992371</shelfHeight> + <shelfDepth>14,3999996185</shelfDepth> </Product> <Product> - <brand_name>Carlson</brand_name> - <product_name>Carlson Sour Cream</product_name> + <brandName>Carlson</brandName> + <productName>Carlson Sour Cream</productName> <sku>62097817063</sku> <srp>2,3599998951</srp> - <gross_weight>8,7899999619</gross_weight> - <net_weight>5,7800002098</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>7,6100001335</shelf_width> - <shelf_height>17</shelf_height> - <shelf_depth>19,8999996185</shelf_depth> + <grossWeight>8,7899999619</grossWeight> + <netWeight>5,7800002098</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>7,6100001335</shelfWidth> + <shelfHeight>17</shelfHeight> + <shelfDepth>19,8999996185</shelfDepth> </Product> <Product> - <brand_name>Club</brand_name> - <product_name>Club Low Fat Sour Cream</product_name> + <brandName>Club</brandName> + <productName>Club Low Fat Sour Cream</productName> <sku>50668345093</sku> <srp>2,9300000668</srp> - <gross_weight>10,6999998093</gross_weight> - <net_weight>9,6899995804</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>21,1000003815</shelf_width> - <shelf_height>17,8999996185</shelf_height> - <shelf_depth>7,3200001717</shelf_depth> + <grossWeight>10,6999998093</grossWeight> + <netWeight>9,6899995804</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>21,1000003815</shelfWidth> + <shelfHeight>17,8999996185</shelfHeight> + <shelfDepth>7,3200001717</shelfDepth> </Product> <Product> - <brand_name>Club</brand_name> - <product_name>Club Sour Cream</product_name> + <brandName>Club</brandName> + <productName>Club Sour Cream</productName> <sku>14866315722</sku> <srp>0,5299999714</srp> - <gross_weight>13,6000003815</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>8,5699996948</shelf_width> - <shelf_height>7,3099999428</shelf_height> - <shelf_depth>3,2699999809</shelf_depth> + <grossWeight>13,6000003815</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>8,5699996948</shelfWidth> + <shelfHeight>7,3099999428</shelfHeight> + <shelfDepth>3,2699999809</shelfDepth> </Product> <Product> - <brand_name>Gorilla</brand_name> - <product_name>Gorilla Low Fat Sour Cream</product_name> + <brandName>Gorilla</brandName> + <productName>Gorilla Low Fat Sour Cream</productName> <sku>95882642865</sku> <srp>0,8899999857</srp> - <gross_weight>14,5</gross_weight> - <net_weight>12,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>10,1000003815</shelf_width> - <shelf_height>17,3999996185</shelf_height> - <shelf_depth>16,8999996185</shelf_depth> + <grossWeight>14,5</grossWeight> + <netWeight>12,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>10,1000003815</shelfWidth> + <shelfHeight>17,3999996185</shelfHeight> + <shelfDepth>16,8999996185</shelfDepth> </Product> <Product> - <brand_name>Gorilla</brand_name> - <product_name>Gorilla Sour Cream</product_name> + <brandName>Gorilla</brandName> + <productName>Gorilla Sour Cream</productName> <sku>90842847228</sku> <srp>2,6600000858</srp> - <gross_weight>21,2000007629</gross_weight> - <net_weight>20,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>15,8000001907</shelf_width> - <shelf_height>7,0199999809</shelf_height> - <shelf_depth>16,7000007629</shelf_depth> + <grossWeight>21,2000007629</grossWeight> + <netWeight>20,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>15,8000001907</shelfWidth> + <shelfHeight>7,0199999809</shelfHeight> + <shelfDepth>16,7000007629</shelfDepth> </Product> <Product> - <brand_name>Even Better</brand_name> - <product_name>Even Better Low Fat Sour Cream</product_name> + <brandName>Even Better</brandName> + <productName>Even Better Low Fat Sour Cream</productName> <sku>65970433354</sku> <srp>2,8800001144</srp> - <gross_weight>12,3000001907</gross_weight> - <net_weight>9,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>21,8999996185</shelf_width> - <shelf_height>9,7600002289</shelf_height> - <shelf_depth>7,1700000763</shelf_depth> + <grossWeight>12,3000001907</grossWeight> + <netWeight>9,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>21,8999996185</shelfWidth> + <shelfHeight>9,7600002289</shelfHeight> + <shelfDepth>7,1700000763</shelfDepth> </Product> <Product> - <brand_name>Even Better</brand_name> - <product_name>Even Better Sour Cream</product_name> + <brandName>Even Better</brandName> + <productName>Even Better Sour Cream</productName> <sku>56357235312</sku> <srp>0,8199999928</srp> - <gross_weight>20,2999992371</gross_weight> - <net_weight>18,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>14,3999996185</shelf_width> - <shelf_height>18,2999992371</shelf_height> - <shelf_depth>11,5</shelf_depth> + <grossWeight>20,2999992371</grossWeight> + <netWeight>18,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>14,3999996185</shelfWidth> + <shelfHeight>18,2999992371</shelfHeight> + <shelfDepth>11,5</shelfDepth> </Product> <Product> - <brand_name>Booker</brand_name> - <product_name>Booker Low Fat Sour Cream</product_name> + <brandName>Booker</brandName> + <productName>Booker Low Fat Sour Cream</productName> <sku>49581395983</sku> <srp>1,4400000572</srp> - <gross_weight>8,25</gross_weight> - <net_weight>5,25</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>17,2999992371</shelf_width> - <shelf_height>16,2000007629</shelf_height> - <shelf_depth>11</shelf_depth> + <grossWeight>8,25</grossWeight> + <netWeight>5,25</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>17,2999992371</shelfWidth> + <shelfHeight>16,2000007629</shelfHeight> + <shelfDepth>11</shelfDepth> </Product> <Product> - <brand_name>Booker</brand_name> - <product_name>Booker Sour Cream</product_name> + <brandName>Booker</brandName> + <productName>Booker Sour Cream</productName> <sku>50775912404</sku> <srp>1,7200000286</srp> - <gross_weight>6,75</gross_weight> - <net_weight>4,75</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>9,8800001144</shelf_width> - <shelf_height>19,7000007629</shelf_height> - <shelf_depth>20,8999996185</shelf_depth> + <grossWeight>6,75</grossWeight> + <netWeight>4,75</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>9,8800001144</shelfWidth> + <shelfHeight>19,7000007629</shelfHeight> + <shelfDepth>20,8999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Cottage Cheese</product_subcategory> <product_category>Dairy</product_category> <product_department>Dairy</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Carlson</brand_name> - <product_name>Carlson Low Fat Cottage Cheese</product_name> + <brandName>Carlson</brandName> + <productName>Carlson Low Fat Cottage Cheese</productName> <sku>35180862545</sku> <srp>2,2899999619</srp> - <gross_weight>9,7700004578</gross_weight> - <net_weight>8,7700004578</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>20,2099990845</shelf_width> - <shelf_height>7,9200000763</shelf_height> - <shelf_depth>17,8999996185</shelf_depth> + <grossWeight>9,7700004578</grossWeight> + <netWeight>8,7700004578</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>20,2099990845</shelfWidth> + <shelfHeight>7,9200000763</shelfHeight> + <shelfDepth>17,8999996185</shelfDepth> </Product> <Product> - <brand_name>Carlson</brand_name> - <product_name>Carlson Large Curd Cottage Cheese</product_name> + <brandName>Carlson</brandName> + <productName>Carlson Large Curd Cottage Cheese</productName> <sku>90892146229</sku> <srp>2,3599998951</srp> - <gross_weight>19,6000003815</gross_weight> - <net_weight>16,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>20,2999992371</shelf_width> - <shelf_height>22,7000007629</shelf_height> - <shelf_depth>22,7000007629</shelf_depth> + <grossWeight>19,6000003815</grossWeight> + <netWeight>16,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>20,2999992371</shelfWidth> + <shelfHeight>22,7000007629</shelfHeight> + <shelfDepth>22,7000007629</shelfDepth> </Product> <Product> - <brand_name>Club</brand_name> - <product_name>Club Low Fat Cottage Cheese</product_name> + <brandName>Club</brandName> + <productName>Club Low Fat Cottage Cheese</productName> <sku>18711594939</sku> <srp>1,6699999571</srp> - <gross_weight>17,7000007629</gross_weight> - <net_weight>15,6999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>15,3999996185</shelf_width> - <shelf_height>3,7100000381</shelf_height> - <shelf_depth>10,6999998093</shelf_depth> + <grossWeight>17,7000007629</grossWeight> + <netWeight>15,6999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>15,3999996185</shelfWidth> + <shelfHeight>3,7100000381</shelfHeight> + <shelfDepth>10,6999998093</shelfDepth> </Product> <Product> - <brand_name>Club</brand_name> - <product_name>Club Large Curd Cottage Cheese</product_name> + <brandName>Club</brandName> + <productName>Club Large Curd Cottage Cheese</productName> <sku>21781544089</sku> <srp>3,5</srp> - <gross_weight>14,3000001907</gross_weight> - <net_weight>12,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>12,3000001907</shelf_width> - <shelf_height>16,7999992371</shelf_height> - <shelf_depth>14,1999998093</shelf_depth> + <grossWeight>14,3000001907</grossWeight> + <netWeight>12,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>12,3000001907</shelfWidth> + <shelfHeight>16,7999992371</shelfHeight> + <shelfDepth>14,1999998093</shelfDepth> </Product> <Product> - <brand_name>Gorilla</brand_name> - <product_name>Gorilla Low Fat Cottage Cheese</product_name> + <brandName>Gorilla</brandName> + <productName>Gorilla Low Fat Cottage Cheese</productName> <sku>33163658976</sku> <srp>1,5700000525</srp> - <gross_weight>8,7899999619</gross_weight> - <net_weight>6,7800002098</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>20,2999992371</shelf_width> - <shelf_height>17,7999992371</shelf_height> - <shelf_depth>19,2999992371</shelf_depth> + <grossWeight>8,7899999619</grossWeight> + <netWeight>6,7800002098</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>20,2999992371</shelfWidth> + <shelfHeight>17,7999992371</shelfHeight> + <shelfDepth>19,2999992371</shelfDepth> </Product> <Product> - <brand_name>Gorilla</brand_name> - <product_name>Gorilla Large Curd Cottage Cheese</product_name> + <brandName>Gorilla</brandName> + <productName>Gorilla Large Curd Cottage Cheese</productName> <sku>93448345065</sku> <srp>2,9600000381</srp> - <gross_weight>8,5799999237</gross_weight> - <net_weight>6,5700001717</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>10,1000003815</shelf_width> - <shelf_height>14,1999998093</shelf_height> - <shelf_depth>7,2699999809</shelf_depth> + <grossWeight>8,5799999237</grossWeight> + <netWeight>6,5700001717</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>10,1000003815</shelfWidth> + <shelfHeight>14,1999998093</shelfHeight> + <shelfDepth>7,2699999809</shelfDepth> </Product> <Product> - <brand_name>Even Better</brand_name> - <product_name>Even Better Low Fat Cottage Cheese</product_name> + <brandName>Even Better</brandName> + <productName>Even Better Low Fat Cottage Cheese</productName> <sku>31726981997</sku> <srp>1,2699999809</srp> - <gross_weight>19,7000007629</gross_weight> - <net_weight>17,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>19,1000003815</shelf_width> - <shelf_height>7,8000001907</shelf_height> - <shelf_depth>20,3999996185</shelf_depth> + <grossWeight>19,7000007629</grossWeight> + <netWeight>17,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>19,1000003815</shelfWidth> + <shelfHeight>7,8000001907</shelfHeight> + <shelfDepth>20,3999996185</shelfDepth> </Product> <Product> - <brand_name>Even Better</brand_name> - <product_name>Even Better Large Curd Cottage Cheese</product_name> + <brandName>Even Better</brandName> + <productName>Even Better Large Curd Cottage Cheese</productName> <sku>92011668086</sku> <srp>3,9500000477</srp> - <gross_weight>15,8999996185</gross_weight> - <net_weight>13,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>4,2100000381</shelf_width> - <shelf_height>12</shelf_height> - <shelf_depth>3,9900000095</shelf_depth> + <grossWeight>15,8999996185</grossWeight> + <netWeight>13,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>4,2100000381</shelfWidth> + <shelfHeight>12</shelfHeight> + <shelfDepth>3,9900000095</shelfDepth> </Product> <Product> - <brand_name>Booker</brand_name> - <product_name>Booker Low Fat Cottage Cheese</product_name> + <brandName>Booker</brandName> + <productName>Booker Low Fat Cottage Cheese</productName> <sku>54668398499</sku> <srp>3,3299999237</srp> - <gross_weight>18,5</gross_weight> - <net_weight>15,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>16,2000007629</shelf_width> - <shelf_height>8,8599996567</shelf_height> - <shelf_depth>5,9699997902</shelf_depth> + <grossWeight>18,5</grossWeight> + <netWeight>15,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>16,2000007629</shelfWidth> + <shelfHeight>8,8599996567</shelfHeight> + <shelfDepth>5,9699997902</shelfDepth> </Product> <Product> - <brand_name>Booker</brand_name> - <product_name>Booker Large Curd Cottage Cheese</product_name> + <brandName>Booker</brandName> + <productName>Booker Large Curd Cottage Cheese</productName> <sku>84143643975</sku> <srp>0,6700000167</srp> - <gross_weight>7,4299998283</gross_weight> - <net_weight>4,4200000763</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>13,8000001907</shelf_width> - <shelf_height>18,1000003815</shelf_height> - <shelf_depth>6,9099998474</shelf_depth> + <grossWeight>7,4299998283</grossWeight> + <netWeight>4,4200000763</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>13,8000001907</shelfWidth> + <shelfHeight>18,1000003815</shelfHeight> + <shelfDepth>6,9099998474</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Deli Salads</product_subcategory> <product_category>Side Dishes</product_category> <product_department>Deli</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Moms</brand_name> - <product_name>Moms Low Fat Cole Slaw</product_name> + <brandName>Moms</brandName> + <productName>Moms Low Fat Cole Slaw</productName> <sku>24235411286</sku> <srp>1,2200000286</srp> - <gross_weight>21,3999996185</gross_weight> - <net_weight>19,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>17,7000007629</shelf_width> - <shelf_height>22,1000003815</shelf_height> - <shelf_depth>18,8999996185</shelf_depth> + <grossWeight>21,3999996185</grossWeight> + <netWeight>19,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>17,7000007629</shelfWidth> + <shelfHeight>22,1000003815</shelfHeight> + <shelfDepth>18,8999996185</shelfDepth> </Product> <Product> - <brand_name>Moms</brand_name> - <product_name>Moms Cole Slaw</product_name> + <brandName>Moms</brandName> + <productName>Moms Cole Slaw</productName> <sku>78433381915</sku> <srp>2,3299999237</srp> - <gross_weight>10,3000001907</gross_weight> - <net_weight>8,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>22,2000007629</shelf_width> - <shelf_height>3,9000000954</shelf_height> - <shelf_depth>21,7000007629</shelf_depth> + <grossWeight>10,3000001907</grossWeight> + <netWeight>8,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>22,2000007629</shelfWidth> + <shelfHeight>3,9000000954</shelfHeight> + <shelfDepth>21,7000007629</shelfDepth> </Product> <Product> - <brand_name>Moms</brand_name> - <product_name>Moms Potato Salad</product_name> + <brandName>Moms</brandName> + <productName>Moms Potato Salad</productName> <sku>36818168759</sku> <srp>2,2300000191</srp> - <gross_weight>16,8999996185</gross_weight> - <net_weight>13,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>14,3999996185</shelf_width> - <shelf_height>9,9099998474</shelf_height> - <shelf_depth>19,5</shelf_depth> + <grossWeight>16,8999996185</grossWeight> + <netWeight>13,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>14,3999996185</shelfWidth> + <shelfHeight>9,9099998474</shelfHeight> + <shelfDepth>19,5</shelfDepth> </Product> <Product> - <brand_name>Red Spade</brand_name> - <product_name>Red Spade Low Fat Cole Slaw</product_name> + <brandName>Red Spade</brandName> + <productName>Red Spade Low Fat Cole Slaw</productName> <sku>21269885897</sku> <srp>3,0999999046</srp> - <gross_weight>16,7000007629</gross_weight> - <net_weight>14,6999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>6,1300001144</shelf_width> - <shelf_height>3,6900000572</shelf_height> - <shelf_depth>3,2799999714</shelf_depth> + <grossWeight>16,7000007629</grossWeight> + <netWeight>14,6999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>6,1300001144</shelfWidth> + <shelfHeight>3,6900000572</shelfHeight> + <shelfDepth>3,2799999714</shelfDepth> </Product> <Product> - <brand_name>Red Spade</brand_name> - <product_name>Red Spade Cole Slaw</product_name> + <brandName>Red Spade</brandName> + <productName>Red Spade Cole Slaw</productName> <sku>42828248143</sku> <srp>0,9700000286</srp> - <gross_weight>8,8299999237</gross_weight> - <net_weight>6,8200001717</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>16,8999996185</shelf_width> - <shelf_height>12,1999998093</shelf_height> - <shelf_depth>12,6000003815</shelf_depth> + <grossWeight>8,8299999237</grossWeight> + <netWeight>6,8200001717</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>16,8999996185</shelfWidth> + <shelfHeight>12,1999998093</shelfHeight> + <shelfDepth>12,6000003815</shelfDepth> </Product> <Product> - <brand_name>Red Spade</brand_name> - <product_name>Red Spade Potato Salad</product_name> + <brandName>Red Spade</brandName> + <productName>Red Spade Potato Salad</productName> <sku>54000024199</sku> <srp>0,6800000072</srp> - <gross_weight>16,8999996185</gross_weight> - <net_weight>14,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>18,1000003815</shelf_width> - <shelf_height>8,7399997711</shelf_height> - <shelf_depth>11,8999996185</shelf_depth> + <grossWeight>16,8999996185</grossWeight> + <netWeight>14,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>18,1000003815</shelfWidth> + <shelfHeight>8,7399997711</shelfHeight> + <shelfDepth>11,8999996185</shelfDepth> </Product> <Product> - <brand_name>American</brand_name> - <product_name>American Low Fat Cole Slaw</product_name> + <brandName>American</brandName> + <productName>American Low Fat Cole Slaw</productName> <sku>27905306220</sku> <srp>2,2699999809</srp> - <gross_weight>7,2600002289</gross_weight> - <net_weight>5,2600002289</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>5,2899999619</shelf_width> - <shelf_height>4,8299999237</shelf_height> - <shelf_depth>21,3999996185</shelf_depth> + <grossWeight>7,2600002289</grossWeight> + <netWeight>5,2600002289</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>5,2899999619</shelfWidth> + <shelfHeight>4,8299999237</shelfHeight> + <shelfDepth>21,3999996185</shelfDepth> </Product> <Product> - <brand_name>American</brand_name> - <product_name>American Cole Slaw</product_name> + <brandName>American</brandName> + <productName>American Cole Slaw</productName> <sku>64435458779</sku> <srp>0,8899999857</srp> - <gross_weight>19,8999996185</gross_weight> - <net_weight>17,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>19,2000007629</shelf_width> - <shelf_height>4,8600001335</shelf_height> - <shelf_depth>4,3899998665</shelf_depth> + <grossWeight>19,8999996185</grossWeight> + <netWeight>17,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>19,2000007629</shelfWidth> + <shelfHeight>4,8600001335</shelfHeight> + <shelfDepth>4,3899998665</shelfDepth> </Product> <Product> - <brand_name>American</brand_name> - <product_name>American Potato Salad</product_name> + <brandName>American</brandName> + <productName>American Potato Salad</productName> <sku>32159911990</sku> <srp>1,5499999523</srp> - <gross_weight>20,7000007629</gross_weight> - <net_weight>18,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>3,3099999428</shelf_width> - <shelf_height>14,1000003815</shelf_height> - <shelf_depth>10,8999996185</shelf_depth> + <grossWeight>20,7000007629</grossWeight> + <netWeight>18,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>3,3099999428</shelfWidth> + <shelfHeight>14,1000003815</shelfHeight> + <shelfDepth>10,8999996185</shelfDepth> </Product> <Product> - <brand_name>Cutting Edge</brand_name> - <product_name>Cutting Edge Low Fat Cole Slaw</product_name> + <brandName>Cutting Edge</brandName> + <productName>Cutting Edge Low Fat Cole Slaw</productName> <sku>86293048262</sku> <srp>2,8499999046</srp> - <gross_weight>9,6599998474</gross_weight> - <net_weight>6,6500000954</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>19,7000007629</shelf_width> - <shelf_height>15,6999998093</shelf_height> - <shelf_depth>16,2999992371</shelf_depth> + <grossWeight>9,6599998474</grossWeight> + <netWeight>6,6500000954</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>19,7000007629</shelfWidth> + <shelfHeight>15,6999998093</shelfHeight> + <shelfDepth>16,2999992371</shelfDepth> </Product> <Product> - <brand_name>Cutting Edge</brand_name> - <product_name>Cutting Edge Cole Slaw</product_name> + <brandName>Cutting Edge</brandName> + <productName>Cutting Edge Cole Slaw</productName> <sku>37396603226</sku> <srp>1,5499999523</srp> - <gross_weight>6,1900000572</gross_weight> - <net_weight>4,1900000572</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>6,7800002098</shelf_width> - <shelf_height>16,8999996185</shelf_height> - <shelf_depth>14,1000003815</shelf_depth> + <grossWeight>6,1900000572</grossWeight> + <netWeight>4,1900000572</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>6,7800002098</shelfWidth> + <shelfHeight>16,8999996185</shelfHeight> + <shelfDepth>14,1000003815</shelfDepth> </Product> <Product> - <brand_name>Cutting Edge</brand_name> - <product_name>Cutting Edge Potato Salad</product_name> + <brandName>Cutting Edge</brandName> + <productName>Cutting Edge Potato Salad</productName> <sku>34800965189</sku> <srp>1,3300000429</srp> - <gross_weight>8,470000267</gross_weight> - <net_weight>7,4699997902</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>5,3099999428</shelf_width> - <shelf_height>19,5</shelf_height> - <shelf_depth>10,3000001907</shelf_depth> + <grossWeight>8,470000267</grossWeight> + <netWeight>7,4699997902</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>5,3099999428</shelfWidth> + <shelfHeight>19,5</shelfHeight> + <shelfDepth>10,3000001907</shelfDepth> </Product> <Product> - <brand_name>Lake</brand_name> - <product_name>Lake Low Fat Cole Slaw</product_name> + <brandName>Lake</brandName> + <productName>Lake Low Fat Cole Slaw</productName> <sku>22926171422</sku> <srp>0,9300000072</srp> - <gross_weight>14,3999996185</gross_weight> - <net_weight>12,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>14,8000001907</shelf_width> - <shelf_height>5,6300001144</shelf_height> - <shelf_depth>11,3999996185</shelf_depth> + <grossWeight>14,3999996185</grossWeight> + <netWeight>12,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>14,8000001907</shelfWidth> + <shelfHeight>5,6300001144</shelfHeight> + <shelfDepth>11,3999996185</shelfDepth> </Product> <Product> - <brand_name>Lake</brand_name> - <product_name>Lake Cole Slaw</product_name> + <brandName>Lake</brandName> + <productName>Lake Cole Slaw</productName> <sku>92095932364</sku> <srp>1,6799999475</srp> - <gross_weight>13,1999998093</gross_weight> - <net_weight>10,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>8,4899997711</shelf_width> - <shelf_height>3,3299999237</shelf_height> - <shelf_depth>6,6399998665</shelf_depth> + <grossWeight>13,1999998093</grossWeight> + <netWeight>10,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>8,4899997711</shelfWidth> + <shelfHeight>3,3299999237</shelfHeight> + <shelfDepth>6,6399998665</shelfDepth> </Product> <Product> - <brand_name>Lake</brand_name> - <product_name>Lake Potato Salad</product_name> + <brandName>Lake</brandName> + <productName>Lake Potato Salad</productName> <sku>54837656617</sku> <srp>3,3099999428</srp> - <gross_weight>13,5</gross_weight> - <net_weight>11,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>10,3999996185</shelf_width> - <shelf_height>20,2000007629</shelf_height> - <shelf_depth>20,8999996185</shelf_depth> + <grossWeight>13,5</grossWeight> + <netWeight>11,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>10,3999996185</shelfWidth> + <shelfHeight>20,2000007629</shelfHeight> + <shelfDepth>20,8999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Dried Meat</product_subcategory> <product_category>Snack Foods</product_category> <product_department>Snack Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Beef Jerky</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Beef Jerky</productName> <sku>63526576161</sku> <srp>1,9700000286</srp> - <gross_weight>8,1700000763</gross_weight> - <net_weight>5,1700000763</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>17</shelf_width> - <shelf_height>13,6999998093</shelf_height> - <shelf_depth>3,9800000191</shelf_depth> + <grossWeight>8,1700000763</grossWeight> + <netWeight>5,1700000763</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>17</shelfWidth> + <shelfHeight>13,6999998093</shelfHeight> + <shelfDepth>3,9800000191</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Beef Jerky</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Beef Jerky</productName> <sku>57831259369</sku> <srp>2,3399999142</srp> - <gross_weight>17</gross_weight> - <net_weight>15</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>21,2000007629</shelf_width> - <shelf_height>21,1000003815</shelf_height> - <shelf_depth>18,8999996185</shelf_depth> + <grossWeight>17</grossWeight> + <netWeight>15</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>21,2000007629</shelfWidth> + <shelfHeight>21,1000003815</shelfHeight> + <shelfDepth>18,8999996185</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Beef Jerky</product_name> + <brandName>Fast</brandName> + <productName>Fast Beef Jerky</productName> <sku>66082774996</sku> <srp>1,6799999475</srp> - <gross_weight>10,5</gross_weight> - <net_weight>9,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>13,3000001907</shelf_width> - <shelf_height>19,3999996185</shelf_height> - <shelf_depth>8,3699998856</shelf_depth> + <grossWeight>10,5</grossWeight> + <netWeight>9,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>13,3000001907</shelfWidth> + <shelfHeight>19,3999996185</shelfHeight> + <shelfDepth>8,3699998856</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Beef Jerky</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Beef Jerky</productName> <sku>90692868828</sku> <srp>1,7100000381</srp> - <gross_weight>9,6300001144</gross_weight> - <net_weight>7,6300001144</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>16,2000007629</shelf_width> - <shelf_height>5,2600002289</shelf_height> - <shelf_depth>9,2700004578</shelf_depth> + <grossWeight>9,6300001144</grossWeight> + <netWeight>7,6300001144</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>16,2000007629</shelfWidth> + <shelfHeight>5,2600002289</shelfHeight> + <shelfDepth>9,2700004578</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Beef Jerky</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Beef Jerky</productName> <sku>79745325446</sku> <srp>0,9499999881</srp> - <gross_weight>13,8000001907</gross_weight> - <net_weight>12,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>5,1900000572</shelf_width> - <shelf_height>4,7800002098</shelf_height> - <shelf_depth>7,6500000954</shelf_depth> + <grossWeight>13,8000001907</grossWeight> + <netWeight>12,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>5,1900000572</shelfWidth> + <shelfHeight>4,7800002098</shelfHeight> + <shelfDepth>7,6500000954</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Paper Wipes</product_subcategory> <product_category>Paper Products</product_category> <product_department>Household</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Paper Towels</product_name> + <brandName>Denny</brandName> + <productName>Denny Paper Towels</productName> <sku>27100697159</sku> <srp>3,9500000477</srp> - <gross_weight>8,9399995804</gross_weight> - <net_weight>6,9299998283</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>4,75</shelf_width> - <shelf_height>17,2999992371</shelf_height> - <shelf_depth>18,5</shelf_depth> + <grossWeight>8,9399995804</grossWeight> + <netWeight>6,9299998283</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>4,75</shelfWidth> + <shelfHeight>17,2999992371</shelfHeight> + <shelfDepth>18,5</shelfDepth> </Product> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Soft Napkins</product_name> + <brandName>Denny</brandName> + <productName>Denny Soft Napkins</productName> <sku>48249732851</sku> <srp>2,4900000095</srp> - <gross_weight>17,6000003815</gross_weight> - <net_weight>16,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>6,8699998856</shelf_width> - <shelf_height>14,6000003815</shelf_height> - <shelf_depth>5,8099999428</shelf_depth> + <grossWeight>17,6000003815</grossWeight> + <netWeight>16,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>6,8699998856</shelfWidth> + <shelfHeight>14,6000003815</shelfHeight> + <shelfDepth>5,8099999428</shelfDepth> </Product> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Scented Tissue</product_name> + <brandName>Denny</brandName> + <productName>Denny Scented Tissue</productName> <sku>45905964970</sku> <srp>3,4500000477</srp> - <gross_weight>18,6000003815</gross_weight> - <net_weight>16,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>11,3999996185</shelf_width> - <shelf_height>16,8999996185</shelf_height> - <shelf_depth>20,5</shelf_depth> + <grossWeight>18,6000003815</grossWeight> + <netWeight>16,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>11,3999996185</shelfWidth> + <shelfHeight>16,8999996185</shelfHeight> + <shelfDepth>20,5</shelfDepth> </Product> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Toilet Paper</product_name> + <brandName>Denny</brandName> + <productName>Denny Toilet Paper</productName> <sku>36292766928</sku> <srp>2,9100000858</srp> - <gross_weight>12,3000001907</gross_weight> - <net_weight>10,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>17,6000003815</shelf_width> - <shelf_height>9,8100004196</shelf_height> - <shelf_depth>17,5</shelf_depth> + <grossWeight>12,3000001907</grossWeight> + <netWeight>10,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>17,6000003815</shelfWidth> + <shelfHeight>9,8100004196</shelfHeight> + <shelfDepth>17,5</shelfDepth> </Product> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Tissues</product_name> + <brandName>Denny</brandName> + <productName>Denny Tissues</productName> <sku>15871854424</sku> <srp>2,8900001049</srp> - <gross_weight>17,2000007629</gross_weight> - <net_weight>15,1999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>19,8999996185</shelf_width> - <shelf_height>6,5500001907</shelf_height> - <shelf_depth>6,3800001144</shelf_depth> + <grossWeight>17,2000007629</grossWeight> + <netWeight>15,1999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>19,8999996185</shelfWidth> + <shelfHeight>6,5500001907</shelfHeight> + <shelfDepth>6,3800001144</shelfDepth> </Product> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Scented Toilet Tissue</product_name> + <brandName>Denny</brandName> + <productName>Denny Scented Toilet Tissue</productName> <sku>96475121378</sku> <srp>2,7200000286</srp> - <gross_weight>18,1000003815</gross_weight> - <net_weight>17,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>4,5999999046</shelf_width> - <shelf_height>8,8299999237</shelf_height> - <shelf_depth>21</shelf_depth> + <grossWeight>18,1000003815</grossWeight> + <netWeight>17,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>4,5999999046</shelfWidth> + <shelfHeight>8,8299999237</shelfHeight> + <shelfDepth>21</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Paper Towels</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Paper Towels</productName> <sku>12502678036</sku> <srp>1,8300000429</srp> - <gross_weight>8,7299995422</gross_weight> - <net_weight>6,7199997902</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>10,1999998093</shelf_width> - <shelf_height>7,3800001144</shelf_height> - <shelf_depth>16,3999996185</shelf_depth> + <grossWeight>8,7299995422</grossWeight> + <netWeight>6,7199997902</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>10,1999998093</shelfWidth> + <shelfHeight>7,3800001144</shelfHeight> + <shelfDepth>16,3999996185</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Soft Napkins</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Soft Napkins</productName> <sku>64413947463</sku> <srp>1,1200000048</srp> - <gross_weight>21,1000003815</gross_weight> - <net_weight>20,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>10,1000003815</shelf_width> - <shelf_height>18,2000007629</shelf_height> - <shelf_depth>22,6000003815</shelf_depth> + <grossWeight>21,1000003815</grossWeight> + <netWeight>20,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>10,1000003815</shelfWidth> + <shelfHeight>18,2000007629</shelfHeight> + <shelfDepth>22,6000003815</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Scented Tissue</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Scented Tissue</productName> <sku>39419632554</sku> <srp>1,9400000572</srp> - <gross_weight>6,9499998093</gross_weight> - <net_weight>4,9400000572</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>11,1000003815</shelf_width> - <shelf_height>21,7000007629</shelf_height> - <shelf_depth>21,8999996185</shelf_depth> + <grossWeight>6,9499998093</grossWeight> + <netWeight>4,9400000572</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>11,1000003815</shelfWidth> + <shelfHeight>21,7000007629</shelfHeight> + <shelfDepth>21,8999996185</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Toilet Paper</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Toilet Paper</productName> <sku>26240512728</sku> <srp>0,7099999785</srp> - <gross_weight>10,6000003815</gross_weight> - <net_weight>7,5999999046</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>9,4499998093</shelf_width> - <shelf_height>22</shelf_height> - <shelf_depth>5,8000001907</shelf_depth> + <grossWeight>10,6000003815</grossWeight> + <netWeight>7,5999999046</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>9,4499998093</shelfWidth> + <shelfHeight>22</shelfHeight> + <shelfDepth>5,8000001907</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Tissues</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Tissues</productName> <sku>60483964085</sku> <srp>2,4500000477</srp> - <gross_weight>6,1100001335</gross_weight> - <net_weight>4,1100001335</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>5,25</shelf_width> - <shelf_height>17,2000007629</shelf_height> - <shelf_depth>22,2000007629</shelf_depth> + <grossWeight>6,1100001335</grossWeight> + <netWeight>4,1100001335</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>5,25</shelfWidth> + <shelfHeight>17,2000007629</shelfHeight> + <shelfDepth>22,2000007629</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Scented Toilet Tissue</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Scented Toilet Tissue</productName> <sku>50870766043</sku> <srp>0,9499999881</srp> - <gross_weight>20,7000007629</gross_weight> - <net_weight>19,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>18,2000007629</shelf_width> - <shelf_height>9,3800001144</shelf_height> - <shelf_depth>22,6000003815</shelf_depth> + <grossWeight>20,7000007629</grossWeight> + <netWeight>19,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>18,2000007629</shelfWidth> + <shelfHeight>9,3800001144</shelfHeight> + <shelfDepth>22,6000003815</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Paper Towels</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Paper Towels</productName> <sku>85356377959</sku> <srp>0,6399999857</srp> - <gross_weight>16,3999996185</gross_weight> - <net_weight>15,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>15,1999998093</shelf_width> - <shelf_height>3,4900000095</shelf_height> - <shelf_depth>18,7999992371</shelf_depth> + <grossWeight>16,3999996185</grossWeight> + <netWeight>15,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>15,1999998093</shelfWidth> + <shelfHeight>3,4900000095</shelfHeight> + <shelfDepth>18,7999992371</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Soft Napkins</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Soft Napkins</productName> <sku>93410997986</sku> <srp>1,6100000143</srp> - <gross_weight>13,6999998093</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>19,7999992371</shelf_width> - <shelf_height>5,5199999809</shelf_height> - <shelf_depth>14,6000003815</shelf_depth> + <grossWeight>13,6999998093</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>19,7999992371</shelfWidth> + <shelfHeight>5,5199999809</shelfHeight> + <shelfDepth>14,6000003815</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Scented Tissue</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Scented Tissue</productName> <sku>81511098742</sku> <srp>2,7200000286</srp> - <gross_weight>16,1000003815</gross_weight> - <net_weight>13,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>9,8599996567</shelf_width> - <shelf_height>15,6000003815</shelf_height> - <shelf_depth>13,8999996185</shelf_depth> + <grossWeight>16,1000003815</grossWeight> + <netWeight>13,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>9,8599996567</shelfWidth> + <shelfHeight>15,6000003815</shelfHeight> + <shelfDepth>13,8999996185</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Toilet Paper</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Toilet Paper</productName> <sku>58803485035</sku> <srp>2,1199998856</srp> - <gross_weight>15,6000003815</gross_weight> - <net_weight>14,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>7,6500000954</shelf_width> - <shelf_height>18,8999996185</shelf_height> - <shelf_depth>4,1199998856</shelf_depth> + <grossWeight>15,6000003815</grossWeight> + <netWeight>14,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>7,6500000954</shelfWidth> + <shelfHeight>18,8999996185</shelfHeight> + <shelfDepth>4,1199998856</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Tissues</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Tissues</productName> <sku>16141352057</sku> <srp>1,25</srp> - <gross_weight>8,279999733</gross_weight> - <net_weight>5,2699999809</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>11,8999996185</shelf_width> - <shelf_height>22,8999996185</shelf_height> - <shelf_depth>11,3999996185</shelf_depth> + <grossWeight>8,279999733</grossWeight> + <netWeight>5,2699999809</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>11,8999996185</shelfWidth> + <shelfHeight>22,8999996185</shelfHeight> + <shelfDepth>11,3999996185</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Scented Toilet Tissue</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Scented Toilet Tissue</productName> <sku>41454463601</sku> <srp>3,5599999428</srp> - <gross_weight>15,6000003815</gross_weight> - <net_weight>14,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>7,2800002098</shelf_width> - <shelf_height>21,1000003815</shelf_height> - <shelf_depth>14,1000003815</shelf_depth> + <grossWeight>15,6000003815</grossWeight> + <netWeight>14,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>7,2800002098</shelfWidth> + <shelfHeight>21,1000003815</shelfHeight> + <shelfDepth>14,1000003815</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Paper Towels</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Paper Towels</productName> <sku>95024550557</sku> <srp>2,5299999714</srp> - <gross_weight>10,5</gross_weight> - <net_weight>7,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>5,4899997711</shelf_width> - <shelf_height>9,1999998093</shelf_height> - <shelf_depth>18,2999992371</shelf_depth> + <grossWeight>10,5</grossWeight> + <netWeight>7,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>5,4899997711</shelfWidth> + <shelfHeight>9,1999998093</shelfHeight> + <shelfDepth>18,2999992371</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Soft Napkins</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Soft Napkins</productName> <sku>52362417578</sku> <srp>1,6599999666</srp> - <gross_weight>7,2600002289</gross_weight> - <net_weight>5,2600002289</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>6,7800002098</shelf_width> - <shelf_height>12</shelf_height> - <shelf_depth>19,7999992371</shelf_depth> + <grossWeight>7,2600002289</grossWeight> + <netWeight>5,2600002289</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>6,7800002098</shelfWidth> + <shelfHeight>12</shelfHeight> + <shelfDepth>19,7999992371</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Scented Tissue</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Scented Tissue</productName> <sku>88892570137</sku> <srp>3,3199999332</srp> - <gross_weight>19,7000007629</gross_weight> - <net_weight>16,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>6,6399998665</shelf_width> - <shelf_height>22,7999992371</shelf_height> - <shelf_depth>5,9499998093</shelf_depth> + <grossWeight>19,7000007629</grossWeight> + <netWeight>16,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>6,6399998665</shelfWidth> + <shelfHeight>22,7999992371</shelfHeight> + <shelfDepth>5,9499998093</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Toilet Paper</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Toilet Paper</productName> <sku>81566073298</sku> <srp>2,4700000286</srp> - <gross_weight>7,3600001335</gross_weight> - <net_weight>5,3600001335</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>4,9299998283</shelf_width> - <shelf_height>3,1400001049</shelf_height> - <shelf_depth>9,8000001907</shelf_depth> + <grossWeight>7,3600001335</grossWeight> + <netWeight>5,3600001335</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>4,9299998283</shelfWidth> + <shelfHeight>3,1400001049</shelfHeight> + <shelfDepth>9,8000001907</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Tissues</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Tissues</productName> <sku>76116951107</sku> <srp>2,1500000954</srp> - <gross_weight>7,8800001144</gross_weight> - <net_weight>4,8800001144</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>6,0399999619</shelf_width> - <shelf_height>6,5</shelf_height> - <shelf_depth>9,6599998474</shelf_depth> + <grossWeight>7,8800001144</grossWeight> + <netWeight>4,8800001144</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>6,0399999619</shelfWidth> + <shelfHeight>6,5</shelfHeight> + <shelfDepth>9,6599998474</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Scented Toilet Tissue</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Scented Toilet Tissue</productName> <sku>38028220534</sku> <srp>3,5599999428</srp> - <gross_weight>11,5</gross_weight> - <net_weight>9,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>4,3299999237</shelf_width> - <shelf_height>6,75</shelf_height> - <shelf_depth>13,5</shelf_depth> + <grossWeight>11,5</grossWeight> + <netWeight>9,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>4,3299999237</shelfWidth> + <shelfHeight>6,75</shelfHeight> + <shelfDepth>13,5</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Paper Towels</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Paper Towels</productName> <sku>45586578249</sku> <srp>1,4299999475</srp> - <gross_weight>10,1999998093</gross_weight> - <net_weight>7,1900000572</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>17,1000003815</shelf_width> - <shelf_height>18,1000003815</shelf_height> - <shelf_depth>21,1000003815</shelf_depth> + <grossWeight>10,1999998093</grossWeight> + <netWeight>7,1900000572</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>17,1000003815</shelfWidth> + <shelfHeight>18,1000003815</shelfHeight> + <shelfDepth>21,1000003815</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Soft Napkins</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Soft Napkins</productName> <sku>79830029606</sku> <srp>3,1500000954</srp> - <gross_weight>9,3800001144</gross_weight> - <net_weight>8,3800001144</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>11,3999996185</shelf_width> - <shelf_height>22,3999996185</shelf_height> - <shelf_depth>16,3999996185</shelf_depth> + <grossWeight>9,3800001144</grossWeight> + <netWeight>8,3800001144</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>11,3999996185</shelfWidth> + <shelfHeight>22,3999996185</shelfHeight> + <shelfDepth>16,3999996185</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Scented Tissue</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Scented Tissue</productName> <sku>70216831564</sku> <srp>1,7799999714</srp> - <gross_weight>11,6000003815</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>22,7999992371</shelf_width> - <shelf_height>3,7599999905</shelf_height> - <shelf_depth>15,6000003815</shelf_depth> + <grossWeight>11,6000003815</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>22,7999992371</shelfWidth> + <shelfHeight>3,7599999905</shelfHeight> + <shelfDepth>15,6000003815</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Toilet Paper</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Toilet Paper</productName> <sku>49795919060</sku> <srp>0,8600000143</srp> - <gross_weight>8</gross_weight> - <net_weight>7</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>15,8000001907</shelf_width> - <shelf_height>15,8000001907</shelf_height> - <shelf_depth>16,7000007629</shelf_depth> + <grossWeight>8</grossWeight> + <netWeight>7</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>15,8000001907</shelfWidth> + <shelfHeight>15,8000001907</shelfHeight> + <shelfDepth>16,7000007629</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Tissues</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Tissues</productName> <sku>99420487284</sku> <srp>1,5900000334</srp> - <gross_weight>10,1999998093</gross_weight> - <net_weight>8,1899995804</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>7,3200001717</shelf_width> - <shelf_height>17</shelf_height> - <shelf_depth>16</shelf_depth> + <grossWeight>10,1999998093</grossWeight> + <netWeight>8,1899995804</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>7,3200001717</shelfWidth> + <shelfHeight>17</shelfHeight> + <shelfDepth>16</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Scented Toilet Tissue</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Scented Toilet Tissue</productName> <sku>72139471173</sku> <srp>2,5899999142</srp> - <gross_weight>9,4300003052</gross_weight> - <net_weight>7,4299998283</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>21,5</shelf_width> - <shelf_height>21,3999996185</shelf_height> - <shelf_depth>11,1999998093</shelf_depth> + <grossWeight>9,4300003052</grossWeight> + <netWeight>7,4299998283</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>21,5</shelfWidth> + <shelfHeight>21,3999996185</shelfHeight> + <shelfDepth>11,1999998093</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Soda</product_subcategory> <product_category>Carbonated Beverages</product_category> <product_department>Beverages</product_department> - <product_family>Drink</product_family> + <productFamily>Drink</productFamily> <Product> - <brand_name>Excellent</brand_name> - <product_name>Excellent Cream Soda</product_name> + <brandName>Excellent</brandName> + <productName>Excellent Cream Soda</productName> <sku>69255055785</sku> <srp>0,9599999785</srp> - <gross_weight>15,5</gross_weight> - <net_weight>14,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>18</shelf_width> - <shelf_height>7,0599999428</shelf_height> - <shelf_depth>4,0900001526</shelf_depth> + <grossWeight>15,5</grossWeight> + <netWeight>14,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>18</shelfWidth> + <shelfHeight>7,0599999428</shelfHeight> + <shelfDepth>4,0900001526</shelfDepth> </Product> <Product> - <brand_name>Excellent</brand_name> - <product_name>Excellent Diet Soda</product_name> + <brandName>Excellent</brandName> + <productName>Excellent Diet Soda</productName> <sku>77309675812</sku> <srp>1,3099999428</srp> - <gross_weight>7,2800002098</gross_weight> - <net_weight>5,2800002098</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>16,7999992371</shelf_width> - <shelf_height>4,2699999809</shelf_height> - <shelf_depth>21,6000003815</shelf_depth> + <grossWeight>7,2800002098</grossWeight> + <netWeight>5,2800002098</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>16,7999992371</shelfWidth> + <shelfHeight>4,2699999809</shelfHeight> + <shelfDepth>21,6000003815</shelfDepth> </Product> <Product> - <brand_name>Excellent</brand_name> - <product_name>Excellent Cola</product_name> + <brandName>Excellent</brandName> + <productName>Excellent Cola</productName> <sku>65409776568</sku> <srp>2,1800000668</srp> - <gross_weight>13,1000003815</gross_weight> - <net_weight>11,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>7,5599999428</shelf_width> - <shelf_height>10,1999998093</shelf_height> - <shelf_depth>19,7999992371</shelf_depth> + <grossWeight>13,1000003815</grossWeight> + <netWeight>11,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>7,5599999428</shelfWidth> + <shelfHeight>10,1999998093</shelfHeight> + <shelfDepth>19,7999992371</shelfDepth> </Product> <Product> - <brand_name>Excellent</brand_name> - <product_name>Excellent Diet Cola</product_name> + <brandName>Excellent</brandName> + <productName>Excellent Diet Cola</productName> <sku>42702162861</sku> <srp>2,4700000286</srp> - <gross_weight>17,7999992371</gross_weight> - <net_weight>16,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>9,1700000763</shelf_width> - <shelf_height>10,5</shelf_height> - <shelf_depth>13,3000001907</shelf_depth> + <grossWeight>17,7999992371</grossWeight> + <netWeight>16,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>9,1700000763</shelfWidth> + <shelfHeight>10,5</shelfHeight> + <shelfDepth>13,3000001907</shelfDepth> </Product> <Product> - <brand_name>Washington</brand_name> - <product_name>Washington Cream Soda</product_name> + <brandName>Washington</brandName> + <productName>Washington Cream Soda</productName> <sku>64412155747</sku> <srp>3,6400001049</srp> - <gross_weight>10,6000003815</gross_weight> - <net_weight>9,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>22,8999996185</shelf_width> - <shelf_height>18,8999996185</shelf_height> - <shelf_depth>7,9299998283</shelf_depth> + <grossWeight>10,6000003815</grossWeight> + <netWeight>9,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>22,8999996185</shelfWidth> + <shelfHeight>18,8999996185</shelfHeight> + <shelfDepth>7,9299998283</shelfDepth> </Product> <Product> - <brand_name>Washington</brand_name> - <product_name>Washington Diet Soda</product_name> + <brandName>Washington</brandName> + <productName>Washington Diet Soda</productName> <sku>85561191439</sku> <srp>2,1900000572</srp> - <gross_weight>6,6599998474</gross_weight> - <net_weight>4,6500000954</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>20,7000007629</shelf_width> - <shelf_height>21,8999996185</shelf_height> - <shelf_depth>19,2000007629</shelf_depth> + <grossWeight>6,6599998474</grossWeight> + <netWeight>4,6500000954</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>20,7000007629</shelfWidth> + <shelfHeight>21,8999996185</shelfHeight> + <shelfDepth>19,2000007629</shelfDepth> </Product> <Product> - <brand_name>Washington</brand_name> - <product_name>Washington Cola</product_name> + <brandName>Washington</brandName> + <productName>Washington Cola</productName> <sku>29804642796</sku> <srp>1,1499999762</srp> - <gross_weight>15,8000001907</gross_weight> - <net_weight>13,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>6,4200000763</shelf_width> - <shelf_height>18,1000003815</shelf_height> - <shelf_depth>21,2999992371</shelf_depth> + <grossWeight>15,8000001907</grossWeight> + <netWeight>13,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>6,4200000763</shelfWidth> + <shelfHeight>18,1000003815</shelfHeight> + <shelfDepth>21,2999992371</shelfDepth> </Product> <Product> - <brand_name>Washington</brand_name> - <product_name>Washington Diet Cola</product_name> + <brandName>Washington</brandName> + <productName>Washington Diet Cola</productName> <sku>20191444754</sku> <srp>2,6099998951</srp> - <gross_weight>18</gross_weight> - <net_weight>17</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>15</shelf_width> - <shelf_height>16,8999996185</shelf_height> - <shelf_depth>21</shelf_depth> + <grossWeight>18</grossWeight> + <netWeight>17</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>15</shelfWidth> + <shelfHeight>16,8999996185</shelfHeight> + <shelfDepth>21</shelfDepth> </Product> <Product> - <brand_name>Token</brand_name> - <product_name>Token Cream Soda</product_name> + <brandName>Token</brandName> + <productName>Token Cream Soda</productName> <sku>21094501614</sku> <srp>1,2899999619</srp> - <gross_weight>6,7300000191</gross_weight> - <net_weight>4,7300000191</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>9,7899999619</shelf_width> - <shelf_height>12</shelf_height> - <shelf_depth>15,3000001907</shelf_depth> + <grossWeight>6,7300000191</grossWeight> + <netWeight>4,7300000191</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>9,7899999619</shelfWidth> + <shelfHeight>12</shelfHeight> + <shelfDepth>15,3000001907</shelfDepth> </Product> <Product> - <brand_name>Token</brand_name> - <product_name>Token Diet Soda</product_name> + <brandName>Token</brandName> + <productName>Token Diet Soda</productName> <sku>73005771040</sku> <srp>1,7000000477</srp> - <gross_weight>7,6399998665</gross_weight> - <net_weight>4,6300001144</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>14,3999996185</shelf_width> - <shelf_height>14,1999998093</shelf_height> - <shelf_depth>10,1000003815</shelf_depth> + <grossWeight>7,6399998665</grossWeight> + <netWeight>4,6300001144</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>14,3999996185</shelfWidth> + <shelfHeight>14,1999998093</shelfHeight> + <shelfDepth>10,1000003815</shelfDepth> </Product> <Product> - <brand_name>Token</brand_name> - <product_name>Token Cola</product_name> + <brandName>Token</brandName> + <productName>Token Cola</productName> <sku>48011456131</sku> <srp>1,3999999762</srp> - <gross_weight>16,3999996185</gross_weight> - <net_weight>14,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>16,5</shelf_width> - <shelf_height>11,5</shelf_height> - <shelf_depth>17,2999992371</shelf_depth> + <grossWeight>16,3999996185</grossWeight> + <netWeight>14,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>16,5</shelfWidth> + <shelfHeight>11,5</shelfHeight> + <shelfDepth>17,2999992371</shelfDepth> </Product> <Product> - <brand_name>Token</brand_name> - <product_name>Token Diet Cola</product_name> + <brandName>Token</brandName> + <productName>Token Diet Cola</productName> <sku>69160491824</sku> <srp>0,5500000119</srp> - <gross_weight>10</gross_weight> - <net_weight>8</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>22,7000007629</shelf_width> - <shelf_height>4,4400000572</shelf_height> - <shelf_depth>14,3000001907</shelf_depth> + <grossWeight>10</grossWeight> + <netWeight>8</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>22,7000007629</shelfWidth> + <shelfHeight>4,4400000572</shelfHeight> + <shelfDepth>14,3000001907</shelfDepth> </Product> <Product> - <brand_name>Fabulous</brand_name> - <product_name>Fabulous Cream Soda</product_name> + <brandName>Fabulous</brandName> + <productName>Fabulous Cream Soda</productName> <sku>79714244008</sku> <srp>2,3399999142</srp> - <gross_weight>17,7000007629</gross_weight> - <net_weight>14,6999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>7,8400001526</shelf_width> - <shelf_height>6,4000000954</shelf_height> - <shelf_depth>16,3999996185</shelf_depth> + <grossWeight>17,7000007629</grossWeight> + <netWeight>14,6999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>7,8400001526</shelfWidth> + <shelfHeight>6,4000000954</shelfHeight> + <shelfDepth>16,3999996185</shelfDepth> </Product> <Product> - <brand_name>Fabulous</brand_name> - <product_name>Fabulous Diet Soda</product_name> + <brandName>Fabulous</brandName> + <productName>Fabulous Diet Soda</productName> <sku>37052111029</sku> <srp>2,4700000286</srp> - <gross_weight>18,6000003815</gross_weight> - <net_weight>16,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>12,3999996185</shelf_width> - <shelf_height>8,6899995804</shelf_height> - <shelf_depth>11,1999998093</shelf_depth> + <grossWeight>18,6000003815</grossWeight> + <netWeight>16,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>12,3999996185</shelfWidth> + <shelfHeight>8,6899995804</shelfHeight> + <shelfDepth>11,1999998093</shelfDepth> </Product> <Product> - <brand_name>Fabulous</brand_name> - <product_name>Fabulous Cola</product_name> + <brandName>Fabulous</brandName> + <productName>Fabulous Cola</productName> <sku>73582263588</sku> <srp>0,8799999952</srp> - <gross_weight>16,3999996185</gross_weight> - <net_weight>15,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>19,8999996185</shelf_width> - <shelf_height>14</shelf_height> - <shelf_depth>21,8999996185</shelf_depth> + <grossWeight>16,3999996185</grossWeight> + <netWeight>15,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>19,8999996185</shelfWidth> + <shelfHeight>14</shelfHeight> + <shelfDepth>21,8999996185</shelfDepth> </Product> <Product> - <brand_name>Fabulous</brand_name> - <product_name>Fabulous Diet Cola</product_name> + <brandName>Fabulous</brandName> + <productName>Fabulous Diet Cola</productName> <sku>66255766749</sku> <srp>2,2799999714</srp> - <gross_weight>12,3000001907</gross_weight> - <net_weight>9,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>19,2000007629</shelf_width> - <shelf_height>8,2399997711</shelf_height> - <shelf_depth>13,1999998093</shelf_depth> + <grossWeight>12,3000001907</grossWeight> + <netWeight>9,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>19,2000007629</shelfWidth> + <shelfHeight>8,2399997711</shelfHeight> + <shelfDepth>13,1999998093</shelfDepth> </Product> <Product> - <brand_name>Skinner</brand_name> - <product_name>Skinner Cream Soda</product_name> + <brandName>Skinner</brandName> + <productName>Skinner Cream Soda</productName> <sku>88506557345</sku> <srp>1,7100000381</srp> - <gross_weight>8,7700004578</gross_weight> - <net_weight>5,7699999809</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>10,6999998093</shelf_width> - <shelf_height>17,2000007629</shelf_height> - <shelf_depth>16,3999996185</shelf_depth> + <grossWeight>8,7700004578</grossWeight> + <netWeight>5,7699999809</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>10,6999998093</shelfWidth> + <shelfHeight>17,2000007629</shelfHeight> + <shelfDepth>16,3999996185</shelfDepth> </Product> <Product> - <brand_name>Skinner</brand_name> - <product_name>Skinner Diet Soda</product_name> + <brandName>Skinner</brandName> + <productName>Skinner Diet Soda</productName> <sku>32750008702</sku> <srp>3,6700000763</srp> - <gross_weight>8,3100004196</gross_weight> - <net_weight>7,3099999428</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>8,5200004578</shelf_width> - <shelf_height>20,5</shelf_height> - <shelf_depth>6,5599999428</shelf_depth> + <grossWeight>8,3100004196</grossWeight> + <netWeight>7,3099999428</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>8,5200004578</shelfWidth> + <shelfHeight>20,5</shelfHeight> + <shelfDepth>6,5599999428</shelfDepth> </Product> <Product> - <brand_name>Skinner</brand_name> - <product_name>Skinner Cola</product_name> + <brandName>Skinner</brandName> + <productName>Skinner Cola</productName> <sku>23136810660</sku> <srp>1,2400000095</srp> - <gross_weight>20,7000007629</gross_weight> - <net_weight>18,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>9,1199998856</shelf_width> - <shelf_height>7</shelf_height> - <shelf_depth>12,6000003815</shelf_depth> + <grossWeight>20,7000007629</grossWeight> + <netWeight>18,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>9,1199998856</shelfWidth> + <shelfHeight>7</shelfHeight> + <shelfDepth>12,6000003815</shelfDepth> </Product> <Product> - <brand_name>Skinner</brand_name> - <product_name>Skinner Diet Cola</product_name> + <brandName>Skinner</brandName> + <productName>Skinner Diet Cola</productName> <sku>26618028283</sku> <srp>1,2200000286</srp> - <gross_weight>15,1999998093</gross_weight> - <net_weight>13,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>21,5</shelf_width> - <shelf_height>22,1000003815</shelf_height> - <shelf_depth>19,3999996185</shelf_depth> + <grossWeight>15,1999998093</grossWeight> + <netWeight>13,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>21,5</shelfWidth> + <shelfHeight>22,1000003815</shelfHeight> + <shelfDepth>19,3999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Deodorizers</product_subcategory> <product_category>Cleaning Supplies</product_category> <product_department>Household</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Room Freshener</product_name> + <brandName>Denny</brandName> + <productName>Denny Room Freshener</productName> <sku>69194105267</sku> <srp>1,9600000381</srp> - <gross_weight>16,7999992371</gross_weight> - <net_weight>13,6999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>16,1000003815</shelf_width> - <shelf_height>9,8400001526</shelf_height> - <shelf_depth>21,5</shelf_depth> + <grossWeight>16,7999992371</grossWeight> + <netWeight>13,6999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>16,1000003815</shelfWidth> + <shelfHeight>9,8400001526</shelfHeight> + <shelfDepth>21,5</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Room Freshener</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Room Freshener</productName> <sku>30449853539</sku> <srp>3,8900001049</srp> - <gross_weight>6,2100000381</gross_weight> - <net_weight>4,2100000381</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>3,4100000858</shelf_width> - <shelf_height>8,3599996567</shelf_height> - <shelf_depth>12,1999998093</shelf_depth> + <grossWeight>6,2100000381</grossWeight> + <netWeight>4,2100000381</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>3,4100000858</shelfWidth> + <shelfHeight>8,3599996567</shelfHeight> + <shelfDepth>12,1999998093</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Room Freshener</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Room Freshener</productName> <sku>34127966761</sku> <srp>2,9500000477</srp> - <gross_weight>15,1999998093</gross_weight> - <net_weight>13,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>5,0599999428</shelf_width> - <shelf_height>4,5</shelf_height> - <shelf_depth>4,2600002289</shelf_depth> + <grossWeight>15,1999998093</grossWeight> + <netWeight>13,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>5,0599999428</shelfWidth> + <shelfHeight>4,5</shelfHeight> + <shelfDepth>4,2600002289</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Room Freshener</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Room Freshener</productName> <sku>13033905625</sku> <srp>2,3800001144</srp> - <gross_weight>7,9699997902</gross_weight> - <net_weight>5,9600000381</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>4,1999998093</shelf_width> - <shelf_height>17,6000003815</shelf_height> - <shelf_depth>19,6000003815</shelf_depth> + <grossWeight>7,9699997902</grossWeight> + <netWeight>5,9600000381</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>4,1999998093</shelfWidth> + <shelfHeight>17,6000003815</shelfHeight> + <shelfDepth>19,6000003815</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Room Freshener</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Room Freshener</productName> <sku>67099675536</sku> <srp>2,4400000572</srp> - <gross_weight>15,6999998093</gross_weight> - <net_weight>13,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>14,1999998093</shelf_width> - <shelf_height>15,1999998093</shelf_height> - <shelf_depth>4,2899999619</shelf_depth> + <grossWeight>15,6999998093</grossWeight> + <netWeight>13,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>14,1999998093</shelfWidth> + <shelfHeight>15,1999998093</shelfHeight> + <shelfDepth>4,2899999619</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Cleaners</product_subcategory> <product_category>Cleaning Supplies</product_category> <product_department>Household</product_department> - <product_family>Non-Consumable</product_family> - </Product_class> - <Product_class> + <productFamily>Non-Consumable</productFamily> + </ProductClass> + <ProductClass> <product_subcategory>Cleaners</product_subcategory> <product_category>Cleaning Supplies</product_category> <product_department>Household</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Toilet Bowl Cleaner</product_name> + <brandName>Denny</brandName> + <productName>Denny Toilet Bowl Cleaner</productName> <sku>97874301075</sku> <srp>2,3199999332</srp> - <gross_weight>8,4799995422</gross_weight> - <net_weight>6,4699997902</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>11,3999996185</shelf_width> - <shelf_height>17,2000007629</shelf_height> - <shelf_depth>18,7000007629</shelf_depth> + <grossWeight>8,4799995422</grossWeight> + <netWeight>6,4699997902</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>11,3999996185</shelfWidth> + <shelfHeight>17,2000007629</shelfHeight> + <shelfDepth>18,7000007629</shelfDepth> </Product> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Counter Cleaner</product_name> + <brandName>Denny</brandName> + <productName>Denny Counter Cleaner</productName> <sku>31310037970</sku> <srp>2,4600000381</srp> - <gross_weight>9,3900003433</gross_weight> - <net_weight>7,3899998665</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>16</shelf_width> - <shelf_height>19,5</shelf_height> - <shelf_depth>13,3999996185</shelf_depth> + <grossWeight>9,3900003433</grossWeight> + <netWeight>7,3899998665</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>16</shelfWidth> + <shelfHeight>19,5</shelfHeight> + <shelfDepth>13,3999996185</shelfDepth> </Product> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Glass Cleaner</product_name> + <brandName>Denny</brandName> + <productName>Denny Glass Cleaner</productName> <sku>67840190529</sku> <srp>0,5099999905</srp> - <gross_weight>20,2999992371</gross_weight> - <net_weight>18,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>22,2000007629</shelf_width> - <shelf_height>12,6000003815</shelf_height> - <shelf_depth>9,9600000381</shelf_depth> + <grossWeight>20,2999992371</grossWeight> + <netWeight>18,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>22,2000007629</shelfWidth> + <shelfHeight>12,6000003815</shelfHeight> + <shelfDepth>9,9600000381</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Toilet Bowl Cleaner</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Toilet Bowl Cleaner</productName> <sku>50860906243</sku> <srp>2,1900000572</srp> - <gross_weight>21,7999992371</gross_weight> - <net_weight>20,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>4,8000001907</shelf_width> - <shelf_height>13,3000001907</shelf_height> - <shelf_depth>19,7999992371</shelf_depth> + <grossWeight>21,7999992371</grossWeight> + <netWeight>20,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>4,8000001907</shelfWidth> + <shelfHeight>13,3000001907</shelfHeight> + <shelfDepth>19,7999992371</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Counter Cleaner</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Counter Cleaner</productName> <sku>63898255228</sku> <srp>2,9100000858</srp> - <gross_weight>9,5100002289</gross_weight> - <net_weight>7,5100002289</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>3,0899999142</shelf_width> - <shelf_height>13,5</shelf_height> - <shelf_depth>3,6700000763</shelf_depth> + <grossWeight>9,5100002289</grossWeight> + <netWeight>7,5100002289</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>3,0899999142</shelfWidth> + <shelfHeight>13,5</shelfHeight> + <shelfDepth>3,6700000763</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Glass Cleaner</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Glass Cleaner</productName> <sku>12715108990</sku> <srp>1,9099999666</srp> - <gross_weight>21,8999996185</gross_weight> - <net_weight>18,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>22,8999996185</shelf_width> - <shelf_height>4,4400000572</shelf_height> - <shelf_depth>9,8100004196</shelf_depth> + <grossWeight>21,8999996185</grossWeight> + <netWeight>18,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>22,8999996185</shelfWidth> + <shelfHeight>4,4400000572</shelfHeight> + <shelfDepth>9,8100004196</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Toilet Bowl Cleaner</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Toilet Bowl Cleaner</productName> <sku>89919920563</sku> <srp>3,8099999428</srp> - <gross_weight>15,8999996185</gross_weight> - <net_weight>13,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>8,3100004196</shelf_width> - <shelf_height>19</shelf_height> - <shelf_depth>4,1999998093</shelf_depth> + <grossWeight>15,8999996185</grossWeight> + <netWeight>13,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>8,3100004196</shelfWidth> + <shelfHeight>19</shelfHeight> + <shelfDepth>4,1999998093</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Counter Cleaner</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Counter Cleaner</productName> <sku>18998720049</sku> <srp>1,9199999571</srp> - <gross_weight>19,6000003815</gross_weight> - <net_weight>16,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>36</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>6,5999999046</shelf_width> - <shelf_height>19,2000007629</shelf_height> - <shelf_depth>8,0600004196</shelf_depth> + <grossWeight>19,6000003815</grossWeight> + <netWeight>16,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>36</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>6,5999999046</shelfWidth> + <shelfHeight>19,2000007629</shelfHeight> + <shelfDepth>8,0600004196</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Glass Cleaner</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Glass Cleaner</productName> <sku>20193236470</sku> <srp>0,6200000048</srp> - <gross_weight>20,1000003815</gross_weight> - <net_weight>18,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>7,7100000381</shelf_width> - <shelf_height>22,6000003815</shelf_height> - <shelf_depth>7,9099998474</shelf_depth> + <grossWeight>20,1000003815</grossWeight> + <netWeight>18,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>7,7100000381</shelfWidth> + <shelfHeight>22,6000003815</shelfHeight> + <shelfDepth>7,9099998474</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Toilet Bowl Cleaner</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Toilet Bowl Cleaner</productName> <sku>74269306063</sku> <srp>2,9200000763</srp> - <gross_weight>19,3999996185</gross_weight> - <net_weight>18,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>22,6000003815</shelf_width> - <shelf_height>19,2000007629</shelf_height> - <shelf_depth>17,8999996185</shelf_depth> + <grossWeight>19,3999996185</grossWeight> + <netWeight>18,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>22,6000003815</shelfWidth> + <shelfHeight>19,2000007629</shelfHeight> + <shelfDepth>17,8999996185</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Counter Cleaner</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Counter Cleaner</productName> <sku>18512757420</sku> <srp>0,9300000072</srp> - <gross_weight>14</gross_weight> - <net_weight>12</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>15</shelf_width> - <shelf_height>14,3000001907</shelf_height> - <shelf_depth>4,6799998283</shelf_depth> + <grossWeight>14</grossWeight> + <netWeight>12</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>15</shelfWidth> + <shelfHeight>14,3000001907</shelfHeight> + <shelfDepth>4,6799998283</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Glass Cleaner</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Glass Cleaner</productName> <sku>64571403861</sku> <srp>1,6799999475</srp> - <gross_weight>10,3999996185</gross_weight> - <net_weight>7,3899998665</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>15,6000003815</shelf_width> - <shelf_height>20,7000007629</shelf_height> - <shelf_depth>10,8000001907</shelf_depth> + <grossWeight>10,3999996185</grossWeight> + <netWeight>7,3899998665</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>15,6000003815</shelfWidth> + <shelfHeight>20,7000007629</shelfHeight> + <shelfDepth>10,8000001907</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Toilet Bowl Cleaner</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Toilet Bowl Cleaner</productName> <sku>63766054511</sku> <srp>1,1599999666</srp> - <gross_weight>20,8999996185</gross_weight> - <net_weight>19,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>5,0199999809</shelf_width> - <shelf_height>11</shelf_height> - <shelf_depth>12,8000001907</shelf_depth> + <grossWeight>20,8999996185</grossWeight> + <netWeight>19,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>5,0199999809</shelfWidth> + <shelfHeight>11</shelfHeight> + <shelfDepth>12,8000001907</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Counter Cleaner</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Counter Cleaner</productName> <sku>10296207070</sku> <srp>0,8299999833</srp> - <gross_weight>21</gross_weight> - <net_weight>18</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>3,3599998951</shelf_width> - <shelf_height>11</shelf_height> - <shelf_depth>17,7999992371</shelf_depth> + <grossWeight>21</grossWeight> + <netWeight>18</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>3,3599998951</shelfWidth> + <shelfHeight>11</shelfHeight> + <shelfDepth>17,7999992371</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Glass Cleaner</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Glass Cleaner</productName> <sku>26871840357</sku> <srp>1,8500000238</srp> - <gross_weight>16,3999996185</gross_weight> - <net_weight>14,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>12,1999998093</shelf_width> - <shelf_height>7,4600000381</shelf_height> - <shelf_depth>9,1300001144</shelf_depth> + <grossWeight>16,3999996185</grossWeight> + <netWeight>14,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>12,1999998093</shelfWidth> + <shelfHeight>7,4600000381</shelfHeight> + <shelfDepth>9,1300001144</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Shower Soap</product_subcategory> <product_category>Cleaning Supplies</product_category> <product_department>Household</product_department> - <product_family>Non-Consumable</product_family> - </Product_class> - <Product_class> + <productFamily>Non-Consumable</productFamily> + </ProductClass> + <ProductClass> <product_subcategory>Fresh Fish</product_subcategory> <product_category>Seafood</product_category> <product_department>Seafood</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Tip Top</brand_name> - <product_name>Tip Top Lox</product_name> + <brandName>Tip Top</brandName> + <productName>Tip Top Lox</productName> <sku>80295071005</sku> <srp>0,7900000215</srp> - <gross_weight>14,1000003815</gross_weight> - <net_weight>11,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>12,1000003815</shelf_width> - <shelf_height>12</shelf_height> - <shelf_depth>11,6000003815</shelf_depth> + <grossWeight>14,1000003815</grossWeight> + <netWeight>11,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>12,1000003815</shelfWidth> + <shelfHeight>12</shelfHeight> + <shelfDepth>11,6000003815</shelfDepth> </Product> <Product> - <brand_name>Curlew</brand_name> - <product_name>Curlew Lox</product_name> + <brandName>Curlew</brandName> + <productName>Curlew Lox</productName> <sku>15625659823</sku> <srp>1,6200000048</srp> - <gross_weight>8,970000267</gross_weight> - <net_weight>6,9699997902</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>6,3800001144</shelf_width> - <shelf_height>8,7399997711</shelf_height> - <shelf_depth>10,6000003815</shelf_depth> + <grossWeight>8,970000267</grossWeight> + <netWeight>6,9699997902</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>6,3800001144</shelfWidth> + <shelfHeight>8,7399997711</shelfHeight> + <shelfDepth>10,6000003815</shelfDepth> </Product> <Product> - <brand_name>Kiwi</brand_name> - <product_name>Kiwi Lox</product_name> + <brandName>Kiwi</brandName> + <productName>Kiwi Lox</productName> <sku>36971591114</sku> <srp>2,2899999619</srp> - <gross_weight>18,3999996185</gross_weight> - <net_weight>16,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>20,7000007629</shelf_width> - <shelf_height>18,2999992371</shelf_height> - <shelf_depth>17,3999996185</shelf_depth> + <grossWeight>18,3999996185</grossWeight> + <netWeight>16,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>20,7000007629</shelfWidth> + <shelfHeight>18,2999992371</shelfHeight> + <shelfDepth>17,3999996185</shelfDepth> </Product> <Product> - <brand_name>Dual City</brand_name> - <product_name>Dual City Lox</product_name> + <brandName>Dual City</brandName> + <productName>Dual City Lox</productName> <sku>43650195002</sku> <srp>0,5199999809</srp> - <gross_weight>18,7999992371</gross_weight> - <net_weight>16,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>22</shelf_width> - <shelf_height>8,6400003433</shelf_height> - <shelf_depth>20,3999996185</shelf_depth> + <grossWeight>18,7999992371</grossWeight> + <netWeight>16,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>22</shelfWidth> + <shelfHeight>8,6400003433</shelfHeight> + <shelfDepth>20,3999996185</shelfDepth> </Product> <Product> - <brand_name>Amigo</brand_name> - <product_name>Amigo Lox</product_name> + <brandName>Amigo</brandName> + <productName>Amigo Lox</productName> <sku>63874211907</sku> <srp>2,9600000381</srp> - <gross_weight>21,3999996185</gross_weight> - <net_weight>18,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>8,9099998474</shelf_width> - <shelf_height>15,6999998093</shelf_height> - <shelf_depth>6,8499999046</shelf_depth> + <grossWeight>21,3999996185</grossWeight> + <netWeight>18,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>8,9099998474</shelfWidth> + <shelfHeight>15,6999998093</shelfHeight> + <shelfDepth>6,8499999046</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Bagels</product_subcategory> <product_category>Bread</product_category> <product_department>Baked Goods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Great</brand_name> - <product_name>Great Bagels</product_name> + <brandName>Great</brandName> + <productName>Great Bagels</productName> <sku>73161435723</sku> <srp>1,8099999428</srp> - <gross_weight>6,2899999619</gross_weight> - <net_weight>3,2799999714</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>17,5</shelf_width> - <shelf_height>13,6999998093</shelf_height> - <shelf_depth>11,3999996185</shelf_depth> + <grossWeight>6,2899999619</grossWeight> + <netWeight>3,2799999714</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>17,5</shelfWidth> + <shelfHeight>13,6999998093</shelfHeight> + <shelfDepth>11,3999996185</shelfDepth> </Product> <Product> - <brand_name>Colony</brand_name> - <product_name>Colony Bagels</product_name> + <brandName>Colony</brandName> + <productName>Colony Bagels</productName> <sku>97333063483</sku> <srp>1,1699999571</srp> - <gross_weight>8,720000267</gross_weight> - <net_weight>6,7199997902</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>12,8999996185</shelf_width> - <shelf_height>15</shelf_height> - <shelf_depth>20,7999992371</shelf_depth> + <grossWeight>8,720000267</grossWeight> + <netWeight>6,7199997902</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>12,8999996185</shelfWidth> + <shelfHeight>15</shelfHeight> + <shelfDepth>20,7999992371</shelfDepth> </Product> <Product> - <brand_name>Fantastic</brand_name> - <product_name>Fantastic Bagels</product_name> + <brandName>Fantastic</brandName> + <productName>Fantastic Bagels</productName> <sku>15043191313</sku> <srp>3,4200000763</srp> - <gross_weight>6,0399999619</gross_weight> - <net_weight>4,0300002098</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>17,1000003815</shelf_width> - <shelf_height>12,1000003815</shelf_height> - <shelf_depth>10,6000003815</shelf_depth> + <grossWeight>6,0399999619</grossWeight> + <netWeight>4,0300002098</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>17,1000003815</shelfWidth> + <shelfHeight>12,1000003815</shelfHeight> + <shelfDepth>10,6000003815</shelfDepth> </Product> <Product> - <brand_name>Sphinx</brand_name> - <product_name>Sphinx Bagels</product_name> + <brandName>Sphinx</brandName> + <productName>Sphinx Bagels</productName> <sku>40007637143</sku> <srp>1,8300000429</srp> - <gross_weight>16</gross_weight> - <net_weight>14</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>12,6000003815</shelf_width> - <shelf_height>9,529999733</shelf_height> - <shelf_depth>8,6300001144</shelf_depth> + <grossWeight>16</grossWeight> + <netWeight>14</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>12,6000003815</shelfWidth> + <shelfHeight>9,529999733</shelfHeight> + <shelfDepth>8,6300001144</shelfDepth> </Product> <Product> - <brand_name>Modell</brand_name> - <product_name>Modell Bagels</product_name> + <brandName>Modell</brandName> + <productName>Modell Bagels</productName> <sku>67764756083</sku> <srp>3,2699999809</srp> - <gross_weight>13,8999996185</gross_weight> - <net_weight>12,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>13,3000001907</shelf_width> - <shelf_height>9,3500003815</shelf_height> - <shelf_depth>9,5399999619</shelf_depth> + <grossWeight>13,8999996185</grossWeight> + <netWeight>12,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>13,3000001907</shelfWidth> + <shelfHeight>9,3500003815</shelfHeight> + <shelfDepth>9,5399999619</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Muffins</product_subcategory> <product_category>Bread</product_category> <product_department>Baked Goods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Great</brand_name> - <product_name>Great English Muffins</product_name> + <brandName>Great</brandName> + <productName>Great English Muffins</productName> <sku>68952094912</sku> <srp>2,4100000858</srp> - <gross_weight>11,5</gross_weight> - <net_weight>9,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>16,7000007629</shelf_width> - <shelf_height>22,1000003815</shelf_height> - <shelf_depth>16,6000003815</shelf_depth> + <grossWeight>11,5</grossWeight> + <netWeight>9,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>16,7000007629</shelfWidth> + <shelfHeight>22,1000003815</shelfHeight> + <shelfDepth>16,6000003815</shelfDepth> </Product> <Product> - <brand_name>Great</brand_name> - <product_name>Great Cranberry Muffins</product_name> + <brandName>Great</brandName> + <productName>Great Cranberry Muffins</productName> <sku>13195546269</sku> <srp>3,3599998951</srp> - <gross_weight>8,5500001907</gross_weight> - <net_weight>5,5500001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>14,3999996185</shelf_width> - <shelf_height>9,9899997711</shelf_height> - <shelf_depth>9,4899997711</shelf_depth> + <grossWeight>8,5500001907</grossWeight> + <netWeight>5,5500001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>14,3999996185</shelfWidth> + <shelfHeight>9,9899997711</shelfHeight> + <shelfDepth>9,4899997711</shelfDepth> </Product> <Product> - <brand_name>Great</brand_name> - <product_name>Great Muffins</product_name> + <brandName>Great</brandName> + <productName>Great Muffins</productName> <sku>93582348227</sku> <srp>2,8199999332</srp> - <gross_weight>6,4400000572</gross_weight> - <net_weight>5,4400000572</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>7,5300002098</shelf_width> - <shelf_height>10,1000003815</shelf_height> - <shelf_depth>14,5</shelf_depth> + <grossWeight>6,4400000572</grossWeight> + <netWeight>5,4400000572</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>7,5300002098</shelfWidth> + <shelfHeight>10,1000003815</shelfHeight> + <shelfDepth>14,5</shelfDepth> </Product> <Product> - <brand_name>Great</brand_name> - <product_name>Great Blueberry Muffins</product_name> + <brandName>Great</brandName> + <productName>Great Blueberry Muffins</productName> <sku>32786003947</sku> <srp>2,6300001144</srp> - <gross_weight>10,1000003815</gross_weight> - <net_weight>8,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>19,3999996185</shelf_width> - <shelf_height>10,8999996185</shelf_height> - <shelf_depth>4,6100001335</shelf_depth> + <grossWeight>10,1000003815</grossWeight> + <netWeight>8,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>19,3999996185</shelfWidth> + <shelfHeight>10,8999996185</shelfHeight> + <shelfDepth>4,6100001335</shelfDepth> </Product> <Product> - <brand_name>Colony</brand_name> - <product_name>Colony Blueberry Muffins</product_name> + <brandName>Colony</brandName> + <productName>Colony Blueberry Muffins</productName> <sku>43863216042</sku> <srp>2,4800000191</srp> - <gross_weight>12,6999998093</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>3,1600000858</shelf_width> - <shelf_height>17,7999992371</shelf_height> - <shelf_depth>21,3999996185</shelf_depth> + <grossWeight>12,6999998093</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>3,1600000858</shelfWidth> + <shelfHeight>17,7999992371</shelfHeight> + <shelfDepth>21,3999996185</shelfDepth> </Product> <Product> - <brand_name>Fantastic</brand_name> - <product_name>Fantastic English Muffins</product_name> + <brandName>Fantastic</brandName> + <productName>Fantastic English Muffins</productName> <sku>56760736107</sku> <srp>1,5</srp> - <gross_weight>7,9400000572</gross_weight> - <net_weight>4,9400000572</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>12,8999996185</shelf_width> - <shelf_height>15,8999996185</shelf_height> - <shelf_depth>9,4399995804</shelf_depth> + <grossWeight>7,9400000572</grossWeight> + <netWeight>4,9400000572</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>12,8999996185</shelfWidth> + <shelfHeight>15,8999996185</shelfHeight> + <shelfDepth>9,4399995804</shelfDepth> </Product> <Product> - <brand_name>Fantastic</brand_name> - <product_name>Fantastic Cranberry Muffins</product_name> + <brandName>Fantastic</brandName> + <productName>Fantastic Cranberry Muffins</productName> <sku>16385304331</sku> <srp>2,3299999237</srp> - <gross_weight>20,5</gross_weight> - <net_weight>18,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>17,2000007629</shelf_width> - <shelf_height>19,2999992371</shelf_height> - <shelf_depth>4,8800001144</shelf_depth> + <grossWeight>20,5</grossWeight> + <netWeight>18,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>17,2000007629</shelfWidth> + <shelfHeight>19,2999992371</shelfHeight> + <shelfDepth>4,8800001144</shelfDepth> </Product> <Product> - <brand_name>Fantastic</brand_name> - <product_name>Fantastic Muffins</product_name> + <brandName>Fantastic</brandName> + <productName>Fantastic Muffins</productName> <sku>79104288220</sku> <srp>0,6299999952</srp> - <gross_weight>11,6000003815</gross_weight> - <net_weight>9,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>5,0999999046</shelf_width> - <shelf_height>5,6300001144</shelf_height> - <shelf_depth>14,5</shelf_depth> + <grossWeight>11,6000003815</grossWeight> + <netWeight>9,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>5,0999999046</shelfWidth> + <shelfHeight>5,6300001144</shelfHeight> + <shelfDepth>14,5</shelfDepth> </Product> <Product> - <brand_name>Fantastic</brand_name> - <product_name>Fantastic Blueberry Muffins</product_name> + <brandName>Fantastic</brandName> + <productName>Fantastic Blueberry Muffins</productName> <sku>46999941468</sku> <srp>0,6899999976</srp> - <gross_weight>18,6000003815</gross_weight> - <net_weight>16,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>12,5</shelf_width> - <shelf_height>3,3199999332</shelf_height> - <shelf_depth>13,6000003815</shelf_depth> + <grossWeight>18,6000003815</grossWeight> + <netWeight>16,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>12,5</shelfWidth> + <shelfHeight>3,3199999332</shelfHeight> + <shelfDepth>13,6000003815</shelfDepth> </Product> <Product> - <brand_name>Colony</brand_name> - <product_name>Colony English Muffins</product_name> + <brandName>Colony</brandName> + <productName>Colony English Muffins</productName> <sku>95819750428</sku> <srp>1,5399999619</srp> - <gross_weight>7,5500001907</gross_weight> - <net_weight>5,5500001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>14,3999996185</shelf_width> - <shelf_height>4,4099998474</shelf_height> - <shelf_depth>15,1000003815</shelf_depth> + <grossWeight>7,5500001907</grossWeight> + <netWeight>5,5500001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>14,3999996185</shelfWidth> + <shelfHeight>4,4099998474</shelfHeight> + <shelfDepth>15,1000003815</shelfDepth> </Product> <Product> - <brand_name>Colony</brand_name> - <product_name>Colony Cranberry Muffins</product_name> + <brandName>Colony</brandName> + <productName>Colony Cranberry Muffins</productName> <sku>72702810168</sku> <srp>2,6500000954</srp> - <gross_weight>16,3999996185</gross_weight> - <net_weight>15,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>18,1000003815</shelf_width> - <shelf_height>11,6999998093</shelf_height> - <shelf_depth>12,1000003815</shelf_depth> + <grossWeight>16,3999996185</grossWeight> + <netWeight>15,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>18,1000003815</shelfWidth> + <shelfHeight>11,6999998093</shelfHeight> + <shelfDepth>12,1000003815</shelfDepth> </Product> <Product> - <brand_name>Colony</brand_name> - <product_name>Colony Muffins</product_name> + <brandName>Colony</brandName> + <productName>Colony Muffins</productName> <sku>49995196461</sku> <srp>1,9299999475</srp> - <gross_weight>6,1399998665</gross_weight> - <net_weight>3,1300001144</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>19,2000007629</shelf_width> - <shelf_height>19</shelf_height> - <shelf_depth>17,2000007629</shelf_depth> + <grossWeight>6,1399998665</grossWeight> + <netWeight>3,1300001144</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>19,2000007629</shelfWidth> + <shelfHeight>19</shelfHeight> + <shelfDepth>17,2000007629</shelfDepth> </Product> <Product> - <brand_name>Sphinx</brand_name> - <product_name>Sphinx English Muffins</product_name> + <brandName>Sphinx</brandName> + <productName>Sphinx English Muffins</productName> <sku>95036062598</sku> <srp>1,4600000381</srp> - <gross_weight>6,2600002289</gross_weight> - <net_weight>4,2600002289</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>3,3399999142</shelf_width> - <shelf_height>19</shelf_height> - <shelf_depth>13,6000003815</shelf_depth> + <grossWeight>6,2600002289</grossWeight> + <netWeight>4,2600002289</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>3,3399999142</shelfWidth> + <shelfHeight>19</shelfHeight> + <shelfDepth>13,6000003815</shelfDepth> </Product> <Product> - <brand_name>Sphinx</brand_name> - <product_name>Sphinx Cranberry Muffins</product_name> + <brandName>Sphinx</brandName> + <productName>Sphinx Cranberry Muffins</productName> <sku>41566215157</sku> <srp>2,1099998951</srp> - <gross_weight>13,8000001907</gross_weight> - <net_weight>11,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>13,3999996185</shelf_width> - <shelf_height>22</shelf_height> - <shelf_depth>13,1000003815</shelf_depth> + <grossWeight>13,8000001907</grossWeight> + <netWeight>11,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>13,3999996185</shelfWidth> + <shelfHeight>22</shelfHeight> + <shelfDepth>13,1000003815</shelfDepth> </Product> <Product> - <brand_name>Sphinx</brand_name> - <product_name>Sphinx Muffins</product_name> + <brandName>Sphinx</brandName> + <productName>Sphinx Muffins</productName> <sku>34239718317</sku> <srp>1,2699999809</srp> - <gross_weight>18,1000003815</gross_weight> - <net_weight>16,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>9,4200000763</shelf_width> - <shelf_height>14,8999996185</shelf_height> - <shelf_depth>6,0999999046</shelf_depth> + <grossWeight>18,1000003815</grossWeight> + <netWeight>16,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>9,4200000763</shelfWidth> + <shelfHeight>14,8999996185</shelfHeight> + <shelfDepth>6,0999999046</shelfDepth> </Product> <Product> - <brand_name>Sphinx</brand_name> - <product_name>Sphinx Blueberry Muffins</product_name> + <brandName>Sphinx</brandName> + <productName>Sphinx Blueberry Muffins</productName> <sku>91918906569</sku> <srp>2,3599998951</srp> - <gross_weight>7,5500001907</gross_weight> - <net_weight>5,5500001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>12,8000001907</shelf_width> - <shelf_height>7</shelf_height> - <shelf_depth>5,6399998665</shelf_depth> + <grossWeight>7,5500001907</grossWeight> + <netWeight>5,5500001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>12,8000001907</shelfWidth> + <shelfHeight>7</shelfHeight> + <shelfDepth>5,6399998665</shelfDepth> </Product> <Product> - <brand_name>Modell</brand_name> - <product_name>Modell English Muffins</product_name> + <brandName>Modell</brandName> + <productName>Modell English Muffins</productName> <sku>17195599675</sku> <srp>1,6499999762</srp> - <gross_weight>15,3000001907</gross_weight> - <net_weight>14,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>6,9299998283</shelf_width> - <shelf_height>16,3999996185</shelf_height> - <shelf_depth>18,3999996185</shelf_depth> + <grossWeight>15,3000001907</grossWeight> + <netWeight>14,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>6,9299998283</shelfWidth> + <shelfHeight>16,3999996185</shelfHeight> + <shelfDepth>18,3999996185</shelfDepth> </Product> <Product> - <brand_name>Modell</brand_name> - <product_name>Modell Cranberry Muffins</product_name> + <brandName>Modell</brandName> + <productName>Modell Cranberry Muffins</productName> <sku>97582401633</sku> <srp>3,4600000381</srp> - <gross_weight>14,6999998093</gross_weight> - <net_weight>12,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>36</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>4,6500000954</shelf_width> - <shelf_height>8,8599996567</shelf_height> - <shelf_depth>8,0200004578</shelf_depth> + <grossWeight>14,6999998093</grossWeight> + <netWeight>12,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>36</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>4,6500000954</shelfWidth> + <shelfHeight>8,8599996567</shelfHeight> + <shelfDepth>8,0200004578</shelfDepth> </Product> <Product> - <brand_name>Modell</brand_name> - <product_name>Modell Muffins</product_name> + <brandName>Modell</brandName> + <productName>Modell Muffins</productName> <sku>77161489129</sku> <srp>2,4400000572</srp> - <gross_weight>7,2800002098</gross_weight> - <net_weight>4,2800002098</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>17,7000007629</shelf_width> - <shelf_height>14,1000003815</shelf_height> - <shelf_depth>7,2399997711</shelf_depth> + <grossWeight>7,2800002098</grossWeight> + <netWeight>4,2800002098</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>17,7000007629</shelfWidth> + <shelfHeight>14,1000003815</shelfHeight> + <shelfDepth>7,2399997711</shelfDepth> </Product> <Product> - <brand_name>Modell</brand_name> - <product_name>Modell Blueberry Muffins</product_name> + <brandName>Modell</brandName> + <productName>Modell Blueberry Muffins</productName> <sku>40483739972</sku> <srp>1,2699999809</srp> - <gross_weight>14,1999998093</gross_weight> - <net_weight>12,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>5,5700001717</shelf_width> - <shelf_height>9,6300001144</shelf_height> - <shelf_depth>16,2999992371</shelf_depth> + <grossWeight>14,1999998093</grossWeight> + <netWeight>12,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>5,5700001717</shelfWidth> + <shelfHeight>9,6300001144</shelfHeight> + <shelfDepth>16,2999992371</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Sliced Bread</product_subcategory> <product_category>Bread</product_category> <product_department>Baked Goods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Great</brand_name> - <product_name>Great Pumpernickel Bread</product_name> + <brandName>Great</brandName> + <productName>Great Pumpernickel Bread</productName> <sku>57473323941</sku> <srp>3,7400000095</srp> - <gross_weight>8,5</gross_weight> - <net_weight>7,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>14,3000001907</shelf_width> - <shelf_height>5,4800000191</shelf_height> - <shelf_depth>12,1000003815</shelf_depth> + <grossWeight>8,5</grossWeight> + <netWeight>7,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>14,3000001907</shelfWidth> + <shelfHeight>5,4800000191</shelfHeight> + <shelfDepth>12,1000003815</shelfDepth> </Product> <Product> - <brand_name>Great</brand_name> - <product_name>Great White Bread</product_name> + <brandName>Great</brandName> + <productName>Great White Bread</productName> <sku>19384593367</sku> <srp>3,2699999809</srp> - <gross_weight>17,3999996185</gross_weight> - <net_weight>14,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>12,6000003815</shelf_width> - <shelf_height>14,1999998093</shelf_height> - <shelf_depth>18,5</shelf_depth> + <grossWeight>17,3999996185</grossWeight> + <netWeight>14,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>12,6000003815</shelfWidth> + <shelfHeight>14,1999998093</shelfHeight> + <shelfDepth>18,5</shelfDepth> </Product> <Product> - <brand_name>Great</brand_name> - <product_name>Great Rye Bread</product_name> + <brandName>Great</brandName> + <productName>Great Rye Bread</productName> <sku>84390278458</sku> <srp>3,8599998951</srp> - <gross_weight>6,1999998093</gross_weight> - <net_weight>5,1900000572</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>9,1300001144</shelf_width> - <shelf_height>19,2000007629</shelf_height> - <shelf_depth>8,9600000381</shelf_depth> + <grossWeight>6,1999998093</grossWeight> + <netWeight>5,1900000572</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>9,1300001144</shelfWidth> + <shelfHeight>19,2000007629</shelfHeight> + <shelfDepth>8,9600000381</shelfDepth> </Product> <Product> - <brand_name>Great</brand_name> - <product_name>Great Wheat Bread</product_name> + <brandName>Great</brandName> + <productName>Great Wheat Bread</productName> <sku>95504987835</sku> <srp>0,9300000072</srp> - <gross_weight>13,6000003815</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>7,4299998283</shelf_width> - <shelf_height>17</shelf_height> - <shelf_depth>15,3999996185</shelf_depth> + <grossWeight>13,6000003815</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>7,4299998283</shelfWidth> + <shelfHeight>17</shelfHeight> + <shelfDepth>15,3999996185</shelfDepth> </Product> <Product> - <brand_name>Colony</brand_name> - <product_name>Colony Wheat Bread</product_name> + <brandName>Colony</brandName> + <productName>Colony Wheat Bread</productName> <sku>36536719202</sku> <srp>1,8700000048</srp> - <gross_weight>12</gross_weight> - <net_weight>10</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>22,1000003815</shelf_width> - <shelf_height>12,3999996185</shelf_height> - <shelf_depth>16</shelf_depth> + <grossWeight>12</grossWeight> + <netWeight>10</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>22,1000003815</shelfWidth> + <shelfHeight>12,3999996185</shelfHeight> + <shelfDepth>16</shelfDepth> </Product> <Product> - <brand_name>Fantastic</brand_name> - <product_name>Fantastic Pumpernickel Bread</product_name> + <brandName>Fantastic</brandName> + <productName>Fantastic Pumpernickel Bread</productName> <sku>52551395297</sku> <srp>2,9900000095</srp> - <gross_weight>13,5</gross_weight> - <net_weight>11,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>4,0599999428</shelf_width> - <shelf_height>13,1999998093</shelf_height> - <shelf_depth>14,6000003815</shelf_depth> + <grossWeight>13,5</grossWeight> + <netWeight>11,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>4,0599999428</shelfWidth> + <shelfHeight>13,1999998093</shelfHeight> + <shelfDepth>14,6000003815</shelfDepth> </Product> <Product> - <brand_name>Fantastic</brand_name> - <product_name>Fantastic White Bread</product_name> + <brandName>Fantastic</brandName> + <productName>Fantastic White Bread</productName> <sku>86794846653</sku> <srp>0,9700000286</srp> - <gross_weight>9,8000001907</gross_weight> - <net_weight>8,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>15,3999996185</shelf_width> - <shelf_height>18,7000007629</shelf_height> - <shelf_depth>17,7000007629</shelf_depth> + <grossWeight>9,8000001907</grossWeight> + <netWeight>8,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>15,3999996185</shelfWidth> + <shelfHeight>18,7000007629</shelfHeight> + <shelfDepth>17,7000007629</shelfDepth> </Product> <Product> - <brand_name>Fantastic</brand_name> - <product_name>Fantastic Rye Bread</product_name> + <brandName>Fantastic</brandName> + <productName>Fantastic Rye Bread</productName> <sku>77181648612</sku> <srp>2,5199999809</srp> - <gross_weight>21,3999996185</gross_weight> - <net_weight>18,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>16,1000003815</shelf_width> - <shelf_height>13,1000003815</shelf_height> - <shelf_depth>8,4499998093</shelf_depth> + <grossWeight>21,3999996185</grossWeight> + <netWeight>18,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>16,1000003815</shelfWidth> + <shelfHeight>13,1000003815</shelfHeight> + <shelfDepth>8,4499998093</shelfDepth> </Product> <Product> - <brand_name>Fantastic</brand_name> - <product_name>Fantastic Wheat Bread</product_name> + <brandName>Fantastic</brandName> + <productName>Fantastic Wheat Bread</productName> <sku>11197912096</sku> <srp>1,5499999523</srp> - <gross_weight>10,6000003815</gross_weight> - <net_weight>8,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>13,8999996185</shelf_width> - <shelf_height>4,1500000954</shelf_height> - <shelf_depth>10,5</shelf_depth> + <grossWeight>10,6000003815</grossWeight> + <netWeight>8,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>13,8999996185</shelfWidth> + <shelfHeight>4,1500000954</shelfHeight> + <shelfDepth>10,5</shelfDepth> </Product> <Product> - <brand_name>Colony</brand_name> - <product_name>Colony Pumpernickel Bread</product_name> + <brandName>Colony</brandName> + <productName>Colony Pumpernickel Bread</productName> <sku>30085942149</sku> <srp>2,1800000668</srp> - <gross_weight>8,0799999237</gross_weight> - <net_weight>5,0700001717</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>13,3000001907</shelf_width> - <shelf_height>14,6999998093</shelf_height> - <shelf_depth>11,8000001907</shelf_depth> + <grossWeight>8,0799999237</grossWeight> + <netWeight>5,0700001717</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>13,3000001907</shelfWidth> + <shelfHeight>14,6999998093</shelfHeight> + <shelfDepth>11,8000001907</shelfDepth> </Product> <Product> - <brand_name>Colony</brand_name> - <product_name>Colony White Bread</product_name> + <brandName>Colony</brandName> + <productName>Colony White Bread</productName> <sku>68902795910</sku> <srp>1,4199999571</srp> - <gross_weight>18,8999996185</gross_weight> - <net_weight>16,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>17,7999992371</shelf_width> - <shelf_height>21,2999992371</shelf_height> - <shelf_depth>10,3000001907</shelf_depth> + <grossWeight>18,8999996185</grossWeight> + <netWeight>16,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>17,7999992371</shelfWidth> + <shelfHeight>21,2999992371</shelfHeight> + <shelfDepth>10,3000001907</shelfDepth> </Product> <Product> - <brand_name>Colony</brand_name> - <product_name>Colony Rye Bread</product_name> + <brandName>Colony</brandName> + <productName>Colony Rye Bread</productName> <sku>87765130400</sku> <srp>3,2699999809</srp> - <gross_weight>7,7100000381</gross_weight> - <net_weight>5,7100000381</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>4,4299998283</shelf_width> - <shelf_height>20,7999992371</shelf_height> - <shelf_depth>18,2000007629</shelf_depth> + <grossWeight>7,7100000381</grossWeight> + <netWeight>5,7100000381</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>4,4299998283</shelfWidth> + <shelfHeight>20,7999992371</shelfHeight> + <shelfDepth>18,2000007629</shelfDepth> </Product> <Product> - <brand_name>Sphinx</brand_name> - <product_name>Sphinx Pumpernickel Bread</product_name> + <brandName>Sphinx</brandName> + <productName>Sphinx Pumpernickel Bread</productName> <sku>27688551545</sku> <srp>0,5299999714</srp> - <gross_weight>8,1599998474</gross_weight> - <net_weight>6,1500000954</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>19,1000003815</shelf_width> - <shelf_height>22,7999992371</shelf_height> - <shelf_depth>12,3999996185</shelf_depth> + <grossWeight>8,1599998474</grossWeight> + <netWeight>6,1500000954</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>19,1000003815</shelfWidth> + <shelfHeight>22,7999992371</shelfHeight> + <shelfDepth>12,3999996185</shelfDepth> </Product> <Product> - <brand_name>Sphinx</brand_name> - <product_name>Sphinx White Bread</product_name> + <brandName>Sphinx</brandName> + <productName>Sphinx White Bread</productName> <sku>15788652300</sku> <srp>2,9300000668</srp> - <gross_weight>18,8999996185</gross_weight> - <net_weight>16,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>15,1999998093</shelf_width> - <shelf_height>14,8999996185</shelf_height> - <shelf_depth>8,4399995804</shelf_depth> + <grossWeight>18,8999996185</grossWeight> + <netWeight>16,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>15,1999998093</shelfWidth> + <shelfHeight>14,8999996185</shelfHeight> + <shelfDepth>8,4399995804</shelfDepth> </Product> <Product> - <brand_name>Sphinx</brand_name> - <product_name>Sphinx Rye Bread</product_name> + <brandName>Sphinx</brandName> + <productName>Sphinx Rye Bread</productName> <sku>47698195576</sku> <srp>1,3200000525</srp> - <gross_weight>17,7999992371</gross_weight> - <net_weight>15,6999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>20,6000003815</shelf_width> - <shelf_height>16,2000007629</shelf_height> - <shelf_depth>10,6000003815</shelf_depth> + <grossWeight>17,7999992371</grossWeight> + <netWeight>15,6999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>20,6000003815</shelfWidth> + <shelfHeight>16,2000007629</shelfHeight> + <shelfDepth>10,6000003815</shelfDepth> </Product> <Product> - <brand_name>Sphinx</brand_name> - <product_name>Sphinx Wheat Bread</product_name> + <brandName>Sphinx</brandName> + <productName>Sphinx Wheat Bread</productName> <sku>66924591660</sku> <srp>1,9500000477</srp> - <gross_weight>10,1000003815</gross_weight> - <net_weight>7,0999999046</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>16,5</shelf_width> - <shelf_height>8,5500001907</shelf_height> - <shelf_depth>11,6999998093</shelf_depth> + <grossWeight>10,1000003815</grossWeight> + <netWeight>7,0999999046</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>16,5</shelfWidth> + <shelfHeight>8,5500001907</shelfHeight> + <shelfDepth>11,6999998093</shelfDepth> </Product> <Product> - <brand_name>Modell</brand_name> - <product_name>Modell Pumpernickel Bread</product_name> + <brandName>Modell</brandName> + <productName>Modell Pumpernickel Bread</productName> <sku>76797427535</sku> <srp>1,5599999428</srp> - <gross_weight>21,8999996185</gross_weight> - <net_weight>19,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>17,1000003815</shelf_width> - <shelf_height>8,5500001907</shelf_height> - <shelf_depth>12,8000001907</shelf_depth> + <grossWeight>21,8999996185</grossWeight> + <netWeight>19,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>17,1000003815</shelfWidth> + <shelfHeight>8,5500001907</shelfHeight> + <shelfDepth>12,8000001907</shelfDepth> </Product> <Product> - <brand_name>Modell</brand_name> - <product_name>Modell White Bread</product_name> + <brandName>Modell</brandName> + <productName>Modell White Bread</productName> <sku>51803112626</sku> <srp>1,2599999905</srp> - <gross_weight>10,3000001907</gross_weight> - <net_weight>9,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>10</shelf_width> - <shelf_height>14,6000003815</shelf_height> - <shelf_depth>8,3199996948</shelf_depth> + <grossWeight>10,3000001907</grossWeight> + <netWeight>9,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>10</shelfWidth> + <shelfHeight>14,6000003815</shelfHeight> + <shelfDepth>8,3199996948</shelfDepth> </Product> <Product> - <brand_name>Modell</brand_name> - <product_name>Modell Rye Bread</product_name> + <brandName>Modell</brandName> + <productName>Modell Rye Bread</productName> <sku>72952148318</sku> <srp>3,9300000668</srp> - <gross_weight>15,5</gross_weight> - <net_weight>13,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>15,6000003815</shelf_width> - <shelf_height>10,6000003815</shelf_height> - <shelf_depth>16,3999996185</shelf_depth> + <grossWeight>15,5</grossWeight> + <netWeight>13,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>15,6000003815</shelfWidth> + <shelfHeight>10,6000003815</shelfHeight> + <shelfDepth>16,3999996185</shelfDepth> </Product> <Product> - <brand_name>Modell</brand_name> - <product_name>Modell Wheat Bread</product_name> + <brandName>Modell</brandName> + <productName>Modell Wheat Bread</productName> <sku>35443944334</sku> <srp>0,5099999905</srp> - <gross_weight>11,6999998093</gross_weight> - <net_weight>8,6899995804</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>15,5</shelf_width> - <shelf_height>8,6300001144</shelf_height> - <shelf_depth>16,5</shelf_depth> + <grossWeight>11,6999998093</grossWeight> + <netWeight>8,6899995804</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>15,5</shelfWidth> + <shelfHeight>8,6300001144</shelfHeight> + <shelfDepth>16,5</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Pancake Mix</product_subcategory> <product_category>Breakfast Foods</product_category> <product_department>Frozen Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Pancake Mix</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Pancake Mix</productName> <sku>10436475872</sku> <srp>1,2599999905</srp> - <gross_weight>19,7999992371</gross_weight> - <net_weight>18,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>7,9000000954</shelf_width> - <shelf_height>19,1000003815</shelf_height> - <shelf_depth>13,3999996185</shelf_depth> + <grossWeight>19,7999992371</grossWeight> + <netWeight>18,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>7,9000000954</shelfWidth> + <shelfHeight>19,1000003815</shelfHeight> + <shelfDepth>13,3999996185</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Pancake Mix</product_name> + <brandName>Golden</brandName> + <productName>Golden Pancake Mix</productName> <sku>25284423232</sku> <srp>2,3599998951</srp> - <gross_weight>8,8299999237</gross_weight> - <net_weight>6,8200001717</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>21,7000007629</shelf_width> - <shelf_height>17,8999996185</shelf_height> - <shelf_depth>14,6999998093</shelf_depth> + <grossWeight>8,8299999237</grossWeight> + <netWeight>6,8200001717</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>21,7000007629</shelfWidth> + <shelfHeight>17,8999996185</shelfHeight> + <shelfDepth>14,6999998093</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Pancake Mix</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Pancake Mix</productName> <sku>38563482165</sku> <srp>0,5799999833</srp> - <gross_weight>13,8999996185</gross_weight> - <net_weight>11,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>14,3999996185</shelf_width> - <shelf_height>17,7999992371</shelf_height> - <shelf_depth>18,2999992371</shelf_depth> + <grossWeight>13,8999996185</grossWeight> + <netWeight>11,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>14,3999996185</shelfWidth> + <shelfHeight>17,7999992371</shelfHeight> + <shelfDepth>18,2999992371</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Pancake Mix</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Pancake Mix</productName> <sku>41468207240</sku> <srp>2,2599999905</srp> - <gross_weight>14,8000001907</gross_weight> - <net_weight>11,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>15,1000003815</shelf_width> - <shelf_height>10,8999996185</shelf_height> - <shelf_depth>3,5699999332</shelf_depth> + <grossWeight>14,8000001907</grossWeight> + <netWeight>11,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>15,1000003815</shelfWidth> + <shelfHeight>10,8999996185</shelfHeight> + <shelfDepth>3,5699999332</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Pancake Mix</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Pancake Mix</productName> <sku>35268860459</sku> <srp>2,4700000286</srp> - <gross_weight>14,5</gross_weight> - <net_weight>13,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>10,6999998093</shelf_width> - <shelf_height>9,0799999237</shelf_height> - <shelf_depth>15,8000001907</shelf_depth> + <grossWeight>14,5</grossWeight> + <netWeight>13,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>10,6999998093</shelfWidth> + <shelfHeight>9,0799999237</shelfHeight> + <shelfDepth>15,8000001907</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Pancakes</product_subcategory> <product_category>Breakfast Foods</product_category> <product_department>Frozen Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Frozen Pancakes</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Frozen Pancakes</productName> <sku>13234835267</sku> <srp>3,2400000095</srp> - <gross_weight>16,2999992371</gross_weight> - <net_weight>14,1999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>11,3999996185</shelf_width> - <shelf_height>20,3999996185</shelf_height> - <shelf_depth>5,9200000763</shelf_depth> + <grossWeight>16,2999992371</grossWeight> + <netWeight>14,1999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>11,3999996185</shelfWidth> + <shelfHeight>20,3999996185</shelfHeight> + <shelfDepth>5,9200000763</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Frozen Pancakes</product_name> + <brandName>Golden</brandName> + <productName>Golden Frozen Pancakes</productName> <sku>32703391909</sku> <srp>1,3600000143</srp> - <gross_weight>7,1199998856</gross_weight> - <net_weight>5,1100001335</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>9,529999733</shelf_width> - <shelf_height>3,0899999142</shelf_height> - <shelf_depth>16,1000003815</shelf_depth> + <grossWeight>7,1199998856</grossWeight> + <netWeight>5,1100001335</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>9,529999733</shelfWidth> + <shelfHeight>3,0899999142</shelfHeight> + <shelfDepth>16,1000003815</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Frozen Pancakes</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Frozen Pancakes</productName> <sku>39075140357</sku> <srp>1,6399999857</srp> - <gross_weight>14,1000003815</gross_weight> - <net_weight>13,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>10,6999998093</shelf_width> - <shelf_height>12</shelf_height> - <shelf_depth>9,1999998093</shelf_depth> + <grossWeight>14,1000003815</grossWeight> + <netWeight>13,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>10,6999998093</shelfWidth> + <shelfHeight>12</shelfHeight> + <shelfDepth>9,1999998093</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Frozen Pancakes</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Frozen Pancakes</productName> <sku>51126670241</sku> <srp>1,8700000048</srp> - <gross_weight>16,7000007629</gross_weight> - <net_weight>14,6999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>6,5799999237</shelf_width> - <shelf_height>14,8999996185</shelf_height> - <shelf_depth>19,2999992371</shelf_depth> + <grossWeight>16,7000007629</grossWeight> + <netWeight>14,6999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>6,5799999237</shelfWidth> + <shelfHeight>14,8999996185</shelfHeight> + <shelfDepth>19,2999992371</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Frozen Pancakes</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Frozen Pancakes</productName> <sku>11925595402</sku> <srp>1,8400000334</srp> - <gross_weight>19,7000007629</gross_weight> - <net_weight>17,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>12,1000003815</shelf_width> - <shelf_height>22,3999996185</shelf_height> - <shelf_depth>15</shelf_depth> + <grossWeight>19,7000007629</grossWeight> + <netWeight>17,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>12,1000003815</shelfWidth> + <shelfHeight>22,3999996185</shelfHeight> + <shelfDepth>15</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Juice</product_subcategory> <product_category>Pure Juice Beverages</product_category> <product_department>Beverages</product_department> - <product_family>Drink</product_family> + <productFamily>Drink</productFamily> <Product> - <brand_name>Excellent</brand_name> - <product_name>Excellent Berry Juice</product_name> + <brandName>Excellent</brandName> + <productName>Excellent Berry Juice</productName> <sku>20972600579</sku> <srp>2,1300001144</srp> - <gross_weight>12,6000003815</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>12,3999996185</shelf_width> - <shelf_height>8,5500001907</shelf_height> - <shelf_depth>3,7100000381</shelf_depth> + <grossWeight>12,6000003815</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>12,3999996185</shelfWidth> + <shelfHeight>8,5500001907</shelfHeight> + <shelfDepth>3,7100000381</shelfDepth> </Product> <Product> - <brand_name>Excellent</brand_name> - <product_name>Excellent Orange Juice</product_name> + <brandName>Excellent</brandName> + <productName>Excellent Orange Juice</productName> <sku>90040029883</sku> <srp>1,6000000238</srp> - <gross_weight>9,5799999237</gross_weight> - <net_weight>7,5700001717</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>7,9699997902</shelf_width> - <shelf_height>7,7600002289</shelf_height> - <shelf_depth>10,8999996185</shelf_depth> + <grossWeight>9,5799999237</grossWeight> + <netWeight>7,5700001717</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>7,9699997902</shelfWidth> + <shelfHeight>7,7600002289</shelfHeight> + <shelfDepth>10,8999996185</shelfDepth> </Product> <Product> - <brand_name>Excellent</brand_name> - <product_name>Excellent Cranberry Juice</product_name> + <brandName>Excellent</brandName> + <productName>Excellent Cranberry Juice</productName> <sku>36570182442</sku> <srp>3,2599999905</srp> - <gross_weight>16,3999996185</gross_weight> - <net_weight>14,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>13,6000003815</shelf_width> - <shelf_height>3,8699998856</shelf_height> - <shelf_depth>13,6999998093</shelf_depth> + <grossWeight>16,3999996185</grossWeight> + <netWeight>14,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>13,6000003815</shelfWidth> + <shelfHeight>3,8699998856</shelfHeight> + <shelfDepth>13,6999998093</shelfDepth> </Product> <Product> - <brand_name>Excellent</brand_name> - <product_name>Excellent Apple Juice</product_name> + <brandName>Excellent</brandName> + <productName>Excellent Apple Juice</productName> <sku>29243685603</sku> <srp>2,4100000858</srp> - <gross_weight>13,1999998093</gross_weight> - <net_weight>12,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>17,7000007629</shelf_width> - <shelf_height>9,1999998093</shelf_height> - <shelf_depth>14,6999998093</shelf_depth> + <grossWeight>13,1999998093</grossWeight> + <netWeight>12,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>17,7000007629</shelfWidth> + <shelfHeight>9,1999998093</shelfHeight> + <shelfDepth>14,6999998093</shelfDepth> </Product> <Product> - <brand_name>Washington</brand_name> - <product_name>Washington Berry Juice</product_name> + <brandName>Washington</brandName> + <productName>Washington Berry Juice</productName> <sku>90748583674</sku> <srp>2,8499999046</srp> - <gross_weight>8,3900003433</gross_weight> - <net_weight>6,3899998665</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>16,8999996185</shelf_width> - <shelf_height>12,6000003815</shelf_height> - <shelf_depth>7,4000000954</shelf_depth> + <grossWeight>8,3900003433</grossWeight> + <netWeight>6,3899998665</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>16,8999996185</shelfWidth> + <shelfHeight>12,6000003815</shelfHeight> + <shelfDepth>7,4000000954</shelfDepth> </Product> <Product> - <brand_name>Washington</brand_name> - <product_name>Washington Orange Juice</product_name> + <brandName>Washington</brandName> + <productName>Washington Orange Juice</productName> <sku>89770532250</sku> <srp>2,5899999142</srp> - <gross_weight>8,970000267</gross_weight> - <net_weight>6,9699997902</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>7,5599999428</shelf_width> - <shelf_height>11,8000001907</shelf_height> - <shelf_depth>8,9200000763</shelf_depth> + <grossWeight>8,970000267</grossWeight> + <netWeight>6,9699997902</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>7,5599999428</shelfWidth> + <shelfHeight>11,8000001907</shelfHeight> + <shelfDepth>8,9200000763</shelfDepth> </Product> <Product> - <brand_name>Washington</brand_name> - <product_name>Washington Cranberry Juice</product_name> + <brandName>Washington</brandName> + <productName>Washington Cranberry Juice</productName> <sku>49395100474</sku> <srp>2,4200000763</srp> - <gross_weight>7,1399998665</gross_weight> - <net_weight>5,1300001144</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>18,5</shelf_width> - <shelf_height>16,1000003815</shelf_height> - <shelf_depth>14,3999996185</shelf_depth> + <grossWeight>7,1399998665</grossWeight> + <netWeight>5,1300001144</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>18,5</shelfWidth> + <shelfHeight>16,1000003815</shelfHeight> + <shelfDepth>14,3999996185</shelfDepth> </Product> <Product> - <brand_name>Washington</brand_name> - <product_name>Washington Apple Juice</product_name> + <brandName>Washington</brandName> + <productName>Washington Apple Juice</productName> <sku>22114084362</sku> <srp>1,4199999571</srp> - <gross_weight>8,1300001144</gross_weight> - <net_weight>7,1300001144</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>21,6000003815</shelf_width> - <shelf_height>7,3200001717</shelf_height> - <shelf_depth>9,1999998093</shelf_depth> + <grossWeight>8,1300001144</grossWeight> + <netWeight>7,1300001144</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>21,6000003815</shelfWidth> + <shelfHeight>7,3200001717</shelfHeight> + <shelfDepth>9,1999998093</shelfDepth> </Product> <Product> - <brand_name>Token</brand_name> - <product_name>Token Berry Juice</product_name> + <brandName>Token</brandName> + <productName>Token Berry Juice</productName> <sku>87339968085</sku> <srp>1,7999999523</srp> - <gross_weight>8,0399999619</gross_weight> - <net_weight>7,0300002098</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>11,6999998093</shelf_width> - <shelf_height>18,1000003815</shelf_height> - <shelf_depth>8,8199996948</shelf_depth> + <grossWeight>8,0399999619</grossWeight> + <netWeight>7,0300002098</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>11,6999998093</shelfWidth> + <shelfHeight>18,1000003815</shelfHeight> + <shelfDepth>8,8199996948</shelfDepth> </Product> <Product> - <brand_name>Token</brand_name> - <product_name>Token Orange Juice</product_name> + <brandName>Token</brandName> + <productName>Token Orange Juice</productName> <sku>13403943181</sku> <srp>2,7999999523</srp> - <gross_weight>11</gross_weight> - <net_weight>10</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>7,3400001526</shelf_width> - <shelf_height>6,7199997902</shelf_height> - <shelf_depth>9,0900001526</shelf_depth> + <grossWeight>11</grossWeight> + <netWeight>10</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>7,3400001526</shelfWidth> + <shelfHeight>6,7199997902</shelfHeight> + <shelfDepth>9,0900001526</shelfDepth> </Product> <Product> - <brand_name>Token</brand_name> - <product_name>Token Cranberry Juice</product_name> + <brandName>Token</brandName> + <productName>Token Cranberry Juice</productName> <sku>93790745139</sku> <srp>0,7799999714</srp> - <gross_weight>19,7000007629</gross_weight> - <net_weight>17,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>9,470000267</shelf_width> - <shelf_height>3,9900000095</shelf_height> - <shelf_depth>16,2999992371</shelf_depth> + <grossWeight>19,7000007629</grossWeight> + <netWeight>17,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>9,470000267</shelfWidth> + <shelfHeight>3,9900000095</shelfHeight> + <shelfDepth>16,2999992371</shelfDepth> </Product> <Product> - <brand_name>Token</brand_name> - <product_name>Token Apple Juice</product_name> + <brandName>Token</brandName> + <productName>Token Apple Juice</productName> <sku>73369832634</sku> <srp>0,8299999833</srp> - <gross_weight>20,6000003815</gross_weight> - <net_weight>18,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>14</shelf_width> - <shelf_height>6,2699999809</shelf_height> - <shelf_depth>11</shelf_depth> + <grossWeight>20,6000003815</grossWeight> + <netWeight>18,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>14</shelfWidth> + <shelfHeight>6,2699999809</shelfHeight> + <shelfDepth>11</shelfDepth> </Product> <Product> - <brand_name>Fabulous</brand_name> - <product_name>Fabulous Berry Juice</product_name> + <brandName>Fabulous</brandName> + <productName>Fabulous Berry Juice</productName> <sku>52854356169</sku> <srp>0,6999999881</srp> - <gross_weight>10,8000001907</gross_weight> - <net_weight>8,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>3,2000000477</shelf_width> - <shelf_height>11,1999998093</shelf_height> - <shelf_depth>16,8999996185</shelf_depth> + <grossWeight>10,8000001907</grossWeight> + <netWeight>8,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>3,2000000477</shelfWidth> + <shelfHeight>11,1999998093</shelfHeight> + <shelfDepth>16,8999996185</shelfDepth> </Product> <Product> - <brand_name>Fabulous</brand_name> - <product_name>Fabulous Orange Juice</product_name> + <brandName>Fabulous</brandName> + <productName>Fabulous Orange Juice</productName> <sku>72023685574</sku> <srp>2,8499999046</srp> - <gross_weight>6</gross_weight> - <net_weight>4</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>5,4000000954</shelf_width> - <shelf_height>21,1000003815</shelf_height> - <shelf_depth>10,1999998093</shelf_depth> + <grossWeight>6</grossWeight> + <netWeight>4</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>5,4000000954</shelfWidth> + <shelfHeight>21,1000003815</shelfHeight> + <shelfDepth>10,1999998093</shelfDepth> </Product> <Product> - <brand_name>Fabulous</brand_name> - <product_name>Fabulous Cranberry Juice</product_name> + <brandName>Fabulous</brandName> + <productName>Fabulous Cranberry Juice</productName> <sku>57837085127</sku> <srp>0,6499999762</srp> - <gross_weight>16</gross_weight> - <net_weight>15</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>7,4699997902</shelf_width> - <shelf_height>18,5</shelf_height> - <shelf_depth>16,8999996185</shelf_depth> + <grossWeight>16</grossWeight> + <netWeight>15</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>7,4699997902</shelfWidth> + <shelfHeight>18,5</shelfHeight> + <shelfDepth>16,8999996185</shelfDepth> </Product> <Product> - <brand_name>Fabulous</brand_name> - <product_name>Fabulous Apple Juice</product_name> + <brandName>Fabulous</brandName> + <productName>Fabulous Apple Juice</productName> <sku>98940640091</sku> <srp>2,9600000381</srp> - <gross_weight>16,8999996185</gross_weight> - <net_weight>13,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>12</shelf_width> - <shelf_height>20,7999992371</shelf_height> - <shelf_depth>11,6000003815</shelf_depth> + <grossWeight>16,8999996185</grossWeight> + <netWeight>13,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>12</shelfWidth> + <shelfHeight>20,7999992371</shelfHeight> + <shelfDepth>11,6000003815</shelfDepth> </Product> <Product> - <brand_name>Skinner</brand_name> - <product_name>Skinner Berry Juice</product_name> + <brandName>Skinner</brandName> + <productName>Skinner Berry Juice</productName> <sku>40440567135</sku> <srp>2,1600000858</srp> - <gross_weight>9,1700000763</gross_weight> - <net_weight>8,1700000763</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>8,029999733</shelf_width> - <shelf_height>21,1000003815</shelf_height> - <shelf_depth>15,1000003815</shelf_depth> + <grossWeight>9,1700000763</grossWeight> + <netWeight>8,1700000763</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>8,029999733</shelfWidth> + <shelfHeight>21,1000003815</shelfHeight> + <shelfDepth>15,1000003815</shelfDepth> </Product> <Product> - <brand_name>Skinner</brand_name> - <product_name>Skinner Orange Juice</product_name> + <brandName>Skinner</brandName> + <productName>Skinner Orange Juice</productName> <sku>52340466380</sku> <srp>1,9400000572</srp> - <gross_weight>7,8699998856</gross_weight> - <net_weight>5,8600001335</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>5,9299998283</shelf_width> - <shelf_height>6,1100001335</shelf_height> - <shelf_depth>6,6999998093</shelf_depth> + <grossWeight>7,8699998856</grossWeight> + <netWeight>5,8600001335</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>5,9299998283</shelfWidth> + <shelfHeight>6,1100001335</shelfHeight> + <shelfDepth>6,6999998093</shelfDepth> </Product> <Product> - <brand_name>Skinner</brand_name> - <product_name>Skinner Cranberry Juice</product_name> + <brandName>Skinner</brandName> + <productName>Skinner Cranberry Juice</productName> <sku>80731294751</sku> <srp>0,6100000143</srp> - <gross_weight>15,1999998093</gross_weight> - <net_weight>13,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>21,2000007629</shelf_width> - <shelf_height>4,3899998665</shelf_height> - <shelf_depth>9,4099998474</shelf_depth> + <grossWeight>15,1999998093</grossWeight> + <netWeight>13,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>21,2000007629</shelfWidth> + <shelfHeight>4,3899998665</shelfHeight> + <shelfDepth>9,4099998474</shelfDepth> </Product> <Product> - <brand_name>Skinner</brand_name> - <product_name>Skinner Apple Juice</product_name> + <brandName>Skinner</brandName> + <productName>Skinner Apple Juice</productName> <sku>99593629240</sku> <srp>2,1400001049</srp> - <gross_weight>14,6999998093</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>19</shelf_width> - <shelf_height>7,6900000572</shelf_height> - <shelf_depth>19,5</shelf_depth> + <grossWeight>14,6999998093</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>19</shelfWidth> + <shelfHeight>7,6900000572</shelfHeight> + <shelfDepth>19,5</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Jelly</product_subcategory> <product_category>Jams and Jellies</product_category> <product_department>Baking Goods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Super</brand_name> - <product_name>Super Strawberry Jelly</product_name> + <brandName>Super</brandName> + <productName>Super Strawberry Jelly</productName> <sku>22576443552</sku> <srp>0,8999999762</srp> - <gross_weight>17,3999996185</gross_weight> - <net_weight>14,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>17,3999996185</shelf_width> - <shelf_height>18,1000003815</shelf_height> - <shelf_depth>14,6999998093</shelf_depth> + <grossWeight>17,3999996185</grossWeight> + <netWeight>14,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>17,3999996185</shelfWidth> + <shelfHeight>18,1000003815</shelfHeight> + <shelfDepth>14,6999998093</shelfDepth> </Product> <Product> - <brand_name>Super</brand_name> - <product_name>Super Apple Jelly</product_name> + <brandName>Super</brandName> + <productName>Super Apple Jelly</productName> <sku>11040605902</sku> <srp>2,5799999237</srp> - <gross_weight>13,6000003815</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>5,9600000381</shelf_width> - <shelf_height>13,6999998093</shelf_height> - <shelf_depth>11,6999998093</shelf_depth> + <grossWeight>13,6000003815</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>5,9600000381</shelfWidth> + <shelfHeight>13,6999998093</shelfHeight> + <shelfDepth>11,6999998093</shelfDepth> </Product> <Product> - <brand_name>Super</brand_name> - <product_name>Super Grape Jelly</product_name> + <brandName>Super</brandName> + <productName>Super Grape Jelly</productName> <sku>17491382956</sku> <srp>2,1500000954</srp> - <gross_weight>9,6700000763</gross_weight> - <net_weight>8,6700000763</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>13,1999998093</shelf_width> - <shelf_height>20,2000007629</shelf_height> - <shelf_depth>17,7999992371</shelf_depth> + <grossWeight>9,6700000763</grossWeight> + <netWeight>8,6700000763</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>13,1999998093</shelfWidth> + <shelfHeight>20,2000007629</shelfHeight> + <shelfDepth>17,7999992371</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Strawberry Jelly</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Strawberry Jelly</productName> <sku>32862640023</sku> <srp>0,6800000072</srp> - <gross_weight>10,1999998093</gross_weight> - <net_weight>8,1899995804</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>15,8000001907</shelf_width> - <shelf_height>16,6000003815</shelf_height> - <shelf_depth>9,6099996567</shelf_depth> + <grossWeight>10,1999998093</grossWeight> + <netWeight>8,1899995804</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>15,8000001907</shelfWidth> + <shelfHeight>16,6000003815</shelfHeight> + <shelfDepth>9,6099996567</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Apple Jelly</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Apple Jelly</productName> <sku>23613503575</sku> <srp>3,7799999714</srp> - <gross_weight>16,7000007629</gross_weight> - <net_weight>14,6999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>21,7000007629</shelf_width> - <shelf_height>8,7899999619</shelf_height> - <shelf_depth>21,2000007629</shelf_depth> + <grossWeight>16,7000007629</grossWeight> + <netWeight>14,6999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>21,7000007629</shelfWidth> + <shelfHeight>8,7899999619</shelfHeight> + <shelfDepth>21,2000007629</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Grape Jelly</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Grape Jelly</productName> <sku>63904231190</sku> <srp>0,8100000024</srp> - <gross_weight>6,3800001144</gross_weight> - <net_weight>3,3800001144</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>22,2999992371</shelf_width> - <shelf_height>15,5</shelf_height> - <shelf_depth>4,9499998093</shelf_depth> + <grossWeight>6,3800001144</grossWeight> + <netWeight>3,3800001144</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>22,2999992371</shelfWidth> + <shelfHeight>15,5</shelfHeight> + <shelfDepth>4,9499998093</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Strawberry Jelly</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Strawberry Jelly</productName> <sku>35999365448</sku> <srp>2,7000000477</srp> - <gross_weight>21,2000007629</gross_weight> - <net_weight>18,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>13,1000003815</shelf_width> - <shelf_height>15,3999996185</shelf_height> - <shelf_depth>10,6999998093</shelf_depth> + <grossWeight>21,2000007629</grossWeight> + <netWeight>18,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>13,1000003815</shelfWidth> + <shelfHeight>15,3999996185</shelfHeight> + <shelfDepth>10,6999998093</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Apple Jelly</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Apple Jelly</productName> <sku>59799163937</sku> <srp>1,4800000191</srp> - <gross_weight>7,6500000954</gross_weight> - <net_weight>4,6500000954</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>19,2000007629</shelf_width> - <shelf_height>6,2399997711</shelf_height> - <shelf_depth>8,6400003433</shelf_depth> + <grossWeight>7,6500000954</grossWeight> + <netWeight>4,6500000954</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>19,2000007629</shelfWidth> + <shelfHeight>6,2399997711</shelfHeight> + <shelfDepth>8,6400003433</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Grape Jelly</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Grape Jelly</productName> <sku>33992021679</sku> <srp>1,6100000143</srp> - <gross_weight>17</gross_weight> - <net_weight>14</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>10,6000003815</shelf_width> - <shelf_height>8,029999733</shelf_height> - <shelf_depth>5,6500000954</shelf_depth> + <grossWeight>17</grossWeight> + <netWeight>14</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>10,6000003815</shelfWidth> + <shelfHeight>8,029999733</shelfHeight> + <shelfDepth>5,6500000954</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Strawberry Jelly</product_name> + <brandName>Plato</brandName> + <productName>Plato Strawberry Jelly</productName> <sku>13352412581</sku> <srp>1,3799999952</srp> - <gross_weight>14,8999996185</gross_weight> - <net_weight>11,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>7,75</shelf_width> - <shelf_height>21,7000007629</shelf_height> - <shelf_depth>17,7999992371</shelf_depth> + <grossWeight>14,8999996185</grossWeight> + <netWeight>11,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>7,75</shelfWidth> + <shelfHeight>21,7000007629</shelfHeight> + <shelfDepth>17,7999992371</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Apple Jelly</product_name> + <brandName>Plato</brandName> + <productName>Plato Apple Jelly</productName> <sku>28221871256</sku> <srp>2,9800000191</srp> - <gross_weight>6,4200000763</gross_weight> - <net_weight>3,4200000763</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>16,2999992371</shelf_width> - <shelf_height>7,3000001907</shelf_height> - <shelf_depth>14,1000003815</shelf_depth> + <grossWeight>6,4200000763</grossWeight> + <netWeight>3,4200000763</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>16,2999992371</shelfWidth> + <shelfHeight>7,3000001907</shelfHeight> + <shelfDepth>14,1000003815</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Grape Jelly</product_name> + <brandName>Plato</brandName> + <productName>Plato Grape Jelly</productName> <sku>34672648310</sku> <srp>1,4800000191</srp> - <gross_weight>9,3000001907</gross_weight> - <net_weight>7,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>18,5</shelf_width> - <shelf_height>4,2199997902</shelf_height> - <shelf_depth>3,1900000572</shelf_depth> + <grossWeight>9,3000001907</grossWeight> + <netWeight>7,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>18,5</shelfWidth> + <shelfHeight>4,2199997902</shelfHeight> + <shelfDepth>3,1900000572</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Strawberry Jelly</product_name> + <brandName>CDR</brandName> + <productName>CDR Strawberry Jelly</productName> <sku>88240793347</sku> <srp>0,6100000143</srp> - <gross_weight>11,3000001907</gross_weight> - <net_weight>10,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>6,3600001335</shelf_width> - <shelf_height>19,6000003815</shelf_height> - <shelf_depth>4,5</shelf_depth> + <grossWeight>11,3000001907</grossWeight> + <netWeight>10,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>6,3600001335</shelfWidth> + <shelfHeight>19,6000003815</shelfHeight> + <shelfDepth>4,5</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Apple Jelly</product_name> + <brandName>CDR</brandName> + <productName>CDR Apple Jelly</productName> <sku>15396953225</sku> <srp>2,7000000477</srp> - <gross_weight>21,3999996185</gross_weight> - <net_weight>20,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>20,1000003815</shelf_width> - <shelf_height>4,1799998283</shelf_height> - <shelf_depth>10,1000003815</shelf_depth> + <grossWeight>21,3999996185</grossWeight> + <netWeight>20,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>20,1000003815</shelfWidth> + <shelfHeight>4,1799998283</shelfHeight> + <shelfDepth>10,1000003815</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Grape Jelly</product_name> + <brandName>CDR</brandName> + <productName>CDR Grape Jelly</productName> <sku>54896665215</sku> <srp>1,6000000238</srp> - <gross_weight>12,5</gross_weight> - <net_weight>10,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>5,4400000572</shelf_width> - <shelf_height>3,2400000095</shelf_height> - <shelf_depth>18,2999992371</shelf_depth> + <grossWeight>12,5</grossWeight> + <netWeight>10,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>5,4400000572</shelfWidth> + <shelfHeight>3,2400000095</shelfHeight> + <shelfDepth>18,2999992371</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Jam</product_subcategory> <product_category>Jams and Jellies</product_category> <product_department>Baking Goods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Super</brand_name> - <product_name>Super Grape Jam</product_name> + <brandName>Super</brandName> + <productName>Super Grape Jam</productName> <sku>47570758461</sku> <srp>1,8899999857</srp> - <gross_weight>10,1000003815</gross_weight> - <net_weight>8,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>22,1000003815</shelf_width> - <shelf_height>20,3999996185</shelf_height> - <shelf_depth>14,6000003815</shelf_depth> + <grossWeight>10,1000003815</grossWeight> + <netWeight>8,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>22,1000003815</shelfWidth> + <shelfHeight>20,3999996185</shelfHeight> + <shelfDepth>14,6000003815</shelfDepth> </Product> <Product> - <brand_name>Super</brand_name> - <product_name>Super Apple Jam</product_name> + <brandName>Super</brandName> + <productName>Super Apple Jam</productName> <sku>29027220606</sku> <srp>3,3900001049</srp> - <gross_weight>6,7199997902</gross_weight> - <net_weight>5,7100000381</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>7,4699997902</shelf_width> - <shelf_height>17,2000007629</shelf_height> - <shelf_depth>20,1000003815</shelf_depth> + <grossWeight>6,7199997902</grossWeight> + <netWeight>5,7100000381</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>7,4699997902</shelfWidth> + <shelfHeight>17,2000007629</shelfHeight> + <shelfDepth>20,1000003815</shelfDepth> </Product> <Product> - <brand_name>Super</brand_name> - <product_name>Super Strawberry Jam</product_name> + <brandName>Super</brandName> + <productName>Super Strawberry Jam</productName> <sku>34795139431</sku> <srp>3,9600000381</srp> - <gross_weight>16,5</gross_weight> - <net_weight>14,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>21</shelf_width> - <shelf_height>9,3400001526</shelf_height> - <shelf_depth>3,7999999523</shelf_depth> + <grossWeight>16,5</grossWeight> + <netWeight>14,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>21</shelfWidth> + <shelfHeight>9,3400001526</shelfHeight> + <shelfDepth>3,7999999523</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Grape Jam</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Grape Jam</productName> <sku>69672150015</sku> <srp>1,3500000238</srp> - <gross_weight>18,3999996185</gross_weight> - <net_weight>16,2999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>10,3000001907</shelf_width> - <shelf_height>15,8000001907</shelf_height> - <shelf_depth>5,1100001335</shelf_depth> + <grossWeight>18,3999996185</grossWeight> + <netWeight>16,2999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>10,3000001907</shelfWidth> + <shelfHeight>15,8000001907</shelfHeight> + <shelfDepth>5,1100001335</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Apple Jam</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Apple Jam</productName> <sku>73153367638</sku> <srp>1,3300000429</srp> - <gross_weight>21,8999996185</gross_weight> - <net_weight>19,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>18,7999992371</shelf_width> - <shelf_height>8,5699996948</shelf_height> - <shelf_depth>20,8999996185</shelf_depth> + <grossWeight>21,8999996185</grossWeight> + <netWeight>19,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>18,7999992371</shelfWidth> + <shelfHeight>8,5699996948</shelfHeight> + <shelfDepth>20,8999996185</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Strawberry Jam</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Strawberry Jam</productName> <sku>98875805735</sku> <srp>1,1599999666</srp> - <gross_weight>13,8999996185</gross_weight> - <net_weight>10,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>21,2000007629</shelf_width> - <shelf_height>22,7000007629</shelf_height> - <shelf_depth>7,7800002098</shelf_depth> + <grossWeight>13,8999996185</grossWeight> + <netWeight>10,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>21,2000007629</shelfWidth> + <shelfHeight>22,7000007629</shelfHeight> + <shelfDepth>7,7800002098</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Grape Jam</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Grape Jam</productName> <sku>45612563490</sku> <srp>1,8999999762</srp> - <gross_weight>20,2000007629</gross_weight> - <net_weight>17,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>3,2899999619</shelf_width> - <shelf_height>20,7000007629</shelf_height> - <shelf_depth>9,0799999237</shelf_depth> + <grossWeight>20,2000007629</grossWeight> + <netWeight>17,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>3,2899999619</shelfWidth> + <shelfHeight>20,7000007629</shelfHeight> + <shelfDepth>9,0799999237</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Apple Jam</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Apple Jam</productName> <sku>20618248581</sku> <srp>1,5900000334</srp> - <gross_weight>12,1999998093</gross_weight> - <net_weight>10,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>15,8000001907</shelf_width> - <shelf_height>9,3299999237</shelf_height> - <shelf_depth>13,3999996185</shelf_depth> + <grossWeight>12,1999998093</grossWeight> + <netWeight>10,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>15,8000001907</shelfWidth> + <shelfHeight>9,3299999237</shelfHeight> + <shelfDepth>13,3999996185</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Strawberry Jam</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Strawberry Jam</productName> <sku>31341258883</sku> <srp>3,3800001144</srp> - <gross_weight>10,1999998093</gross_weight> - <net_weight>9,1899995804</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>19,2000007629</shelf_width> - <shelf_height>17,2999992371</shelf_height> - <shelf_depth>8,3699998856</shelf_depth> + <grossWeight>10,1999998093</grossWeight> + <netWeight>9,1899995804</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>19,2000007629</shelfWidth> + <shelfHeight>17,2999992371</shelfHeight> + <shelfDepth>8,3699998856</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Grape Jam</product_name> + <brandName>Plato</brandName> + <productName>Plato Grape Jam</productName> <sku>90940855145</sku> <srp>1,9800000191</srp> - <gross_weight>19,8999996185</gross_weight> - <net_weight>17,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>14,8999996185</shelf_width> - <shelf_height>9,6199998856</shelf_height> - <shelf_depth>11,8000001907</shelf_depth> + <grossWeight>19,8999996185</grossWeight> + <netWeight>17,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>14,8999996185</shelfWidth> + <shelfHeight>9,6199998856</shelfHeight> + <shelfDepth>11,8000001907</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Apple Jam</product_name> + <brandName>Plato</brandName> + <productName>Plato Apple Jam</productName> <sku>19803189635</sku> <srp>1,1799999475</srp> - <gross_weight>9,6999998093</gross_weight> - <net_weight>8,6899995804</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>5,9400000572</shelf_width> - <shelf_height>22,5</shelf_height> - <shelf_depth>19,3999996185</shelf_depth> + <grossWeight>9,6999998093</grossWeight> + <netWeight>8,6899995804</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>5,9400000572</shelfWidth> + <shelfHeight>22,5</shelfHeight> + <shelfDepth>19,3999996185</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Strawberry Jam</product_name> + <brandName>Plato</brandName> + <productName>Plato Strawberry Jam</productName> <sku>27857809662</sku> <srp>1,2100000381</srp> - <gross_weight>19</gross_weight> - <net_weight>17</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>6,4099998474</shelf_width> - <shelf_height>3,4500000477</shelf_height> - <shelf_depth>18,2999992371</shelf_depth> + <grossWeight>19</grossWeight> + <netWeight>17</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>6,4099998474</shelfWidth> + <shelfHeight>3,4500000477</shelfHeight> + <shelfDepth>18,2999992371</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Grape Jam</product_name> + <brandName>CDR</brandName> + <productName>CDR Grape Jam</productName> <sku>31972586512</sku> <srp>1,8600000143</srp> - <gross_weight>13,5</gross_weight> - <net_weight>10,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>20,7000007629</shelf_width> - <shelf_height>9,4499998093</shelf_height> - <shelf_depth>6,9600000381</shelf_depth> + <grossWeight>13,5</grossWeight> + <netWeight>10,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>20,7000007629</shelfWidth> + <shelfHeight>9,4499998093</shelfHeight> + <shelfDepth>6,9600000381</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Apple Jam</product_name> + <brandName>CDR</brandName> + <productName>CDR Apple Jam</productName> <sku>37740505337</sku> <srp>2,5399999619</srp> - <gross_weight>21</gross_weight> - <net_weight>19</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>8,25</shelf_width> - <shelf_height>18,7999992371</shelf_height> - <shelf_depth>21,8999996185</shelf_depth> + <grossWeight>21</grossWeight> + <netWeight>19</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>8,25</shelfWidth> + <shelfHeight>18,7999992371</shelfHeight> + <shelfDepth>21,8999996185</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Strawberry Jam</product_name> + <brandName>CDR</brandName> + <productName>CDR Strawberry Jam</productName> <sku>89651774764</sku> <srp>2,9500000477</srp> - <gross_weight>21,7000007629</gross_weight> - <net_weight>18,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>14,1999998093</shelf_width> - <shelf_height>21,3999996185</shelf_height> - <shelf_depth>16</shelf_depth> + <grossWeight>21,7000007629</grossWeight> + <netWeight>18,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>14,1999998093</shelfWidth> + <shelfHeight>21,3999996185</shelfHeight> + <shelfDepth>16</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Preserves</product_subcategory> <product_category>Jams and Jellies</product_category> <product_department>Baking Goods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Super</brand_name> - <product_name>Super Grape Preserves</product_name> + <brandName>Super</brandName> + <productName>Super Grape Preserves</productName> <sku>27700943350</sku> <srp>3,1199998856</srp> - <gross_weight>9,3999996185</gross_weight> - <net_weight>8,3900003433</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>16,2000007629</shelf_width> - <shelf_height>6,2399997711</shelf_height> - <shelf_depth>12,8000001907</shelf_depth> + <grossWeight>9,3999996185</grossWeight> + <netWeight>8,3900003433</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>16,2000007629</shelfWidth> + <shelfHeight>6,2399997711</shelfHeight> + <shelfDepth>12,8000001907</shelfDepth> </Product> <Product> - <brand_name>Super</brand_name> - <product_name>Super Low Fat Apple Butter</product_name> + <brandName>Super</brandName> + <productName>Super Low Fat Apple Butter</productName> <sku>80255631804</sku> <srp>1,6799999475</srp> - <gross_weight>16,6000003815</gross_weight> - <net_weight>14,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>15</shelf_width> - <shelf_height>14</shelf_height> - <shelf_depth>3,2200000286</shelf_depth> + <grossWeight>16,6000003815</grossWeight> + <netWeight>14,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>15</shelfWidth> + <shelfHeight>14</shelfHeight> + <shelfDepth>3,2200000286</shelfDepth> </Product> <Product> - <brand_name>Super</brand_name> - <product_name>Super Apple Butter</product_name> + <brandName>Super</brandName> + <productName>Super Apple Butter</productName> <sku>76410352587</sku> <srp>0,5299999714</srp> - <gross_weight>10,8000001907</gross_weight> - <net_weight>8,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>18,3999996185</shelf_width> - <shelf_height>6,3699998856</shelf_height> - <shelf_depth>21,2999992371</shelf_depth> + <grossWeight>10,8000001907</grossWeight> + <netWeight>8,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>18,3999996185</shelfWidth> + <shelfHeight>6,3699998856</shelfHeight> + <shelfDepth>21,2999992371</shelfDepth> </Product> <Product> - <brand_name>Super</brand_name> - <product_name>Super Strawberry Preserves</product_name> + <brandName>Super</brandName> + <productName>Super Strawberry Preserves</productName> <sku>61712093949</sku> <srp>2,1800000668</srp> - <gross_weight>8,8199996948</gross_weight> - <net_weight>7,8099999428</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>15,3000001907</shelf_width> - <shelf_height>6,0199999809</shelf_height> - <shelf_depth>7,4699997902</shelf_depth> + <grossWeight>8,8199996948</grossWeight> + <netWeight>7,8099999428</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>15,3000001907</shelfWidth> + <shelfHeight>6,0199999809</shelfHeight> + <shelfDepth>7,4699997902</shelfDepth> </Product> <Product> - <brand_name>Super</brand_name> - <product_name>Super Apple Preserves</product_name> + <brandName>Super</brandName> + <productName>Super Apple Preserves</productName> <sku>27104580998</sku> <srp>0,7599999905</srp> - <gross_weight>10,8000001907</gross_weight> - <net_weight>8,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>16,3999996185</shelf_width> - <shelf_height>22,2000007629</shelf_height> - <shelf_depth>13,1000003815</shelf_depth> + <grossWeight>10,8000001907</grossWeight> + <netWeight>8,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>16,3999996185</shelfWidth> + <shelfHeight>22,2000007629</shelfHeight> + <shelfDepth>13,1000003815</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Grape Preserves</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Grape Preserves</productName> <sku>50211661458</sku> <srp>2,6500000954</srp> - <gross_weight>11,3000001907</gross_weight> - <net_weight>9,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>9,3100004196</shelf_width> - <shelf_height>21,8999996185</shelf_height> - <shelf_depth>17,2999992371</shelf_depth> + <grossWeight>11,3000001907</grossWeight> + <netWeight>9,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>9,3100004196</shelfWidth> + <shelfHeight>21,8999996185</shelfHeight> + <shelfDepth>17,2999992371</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Low Fat Apple Butter</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Low Fat Apple Butter</productName> <sku>31304062008</sku> <srp>2,2699999809</srp> - <gross_weight>7,1399998665</gross_weight> - <net_weight>5,1300001144</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>13</shelf_width> - <shelf_height>15,8000001907</shelf_height> - <shelf_depth>11,8000001907</shelf_depth> + <grossWeight>7,1399998665</grossWeight> + <netWeight>5,1300001144</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>13</shelfWidth> + <shelfHeight>15,8000001907</shelfHeight> + <shelfDepth>11,8000001907</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Apple Butter</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Apple Butter</productName> <sku>58221016526</sku> <srp>2,3800001144</srp> - <gross_weight>11,6000003815</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>22,7000007629</shelf_width> - <shelf_height>20,1000003815</shelf_height> - <shelf_depth>11,5</shelf_depth> + <grossWeight>11,6000003815</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>22,7000007629</shelfWidth> + <shelfHeight>20,1000003815</shelfHeight> + <shelfDepth>11,5</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Strawberry Preserves</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Strawberry Preserves</productName> <sku>90457124114</sku> <srp>2,25</srp> - <gross_weight>6,1399998665</gross_weight> - <net_weight>5,1300001144</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>14</shelf_width> - <shelf_height>19,1000003815</shelf_height> - <shelf_depth>16,7999992371</shelf_depth> + <grossWeight>6,1399998665</grossWeight> + <netWeight>5,1300001144</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>14</shelfWidth> + <shelfHeight>19,1000003815</shelfHeight> + <shelfDepth>16,7999992371</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Apple Preserves</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Apple Preserves</productName> <sku>86611844897</sku> <srp>1,3899999857</srp> - <gross_weight>9,3599996567</gross_weight> - <net_weight>7,3499999046</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>4,6900000572</shelf_width> - <shelf_height>7,6900000572</shelf_height> - <shelf_depth>12,1000003815</shelf_depth> + <grossWeight>9,3599996567</grossWeight> + <netWeight>7,3499999046</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>4,6900000572</shelfWidth> + <shelfHeight>7,6900000572</shelfHeight> + <shelfDepth>12,1000003815</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Grape Preserves</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Grape Preserves</productName> <sku>68103712201</sku> <srp>2,5899999142</srp> - <gross_weight>13,1999998093</gross_weight> - <net_weight>10,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>22,2000007629</shelf_width> - <shelf_height>6,8499999046</shelf_height> - <shelf_depth>21,2999992371</shelf_depth> + <grossWeight>13,1999998093</grossWeight> + <netWeight>10,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>22,2000007629</shelfWidth> + <shelfHeight>6,8499999046</shelfHeight> + <shelfDepth>21,2999992371</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Low Fat Apple Butter</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Low Fat Apple Butter</productName> <sku>67489722371</sku> <srp>0,5600000024</srp> - <gross_weight>8,8599996567</gross_weight> - <net_weight>6,8499999046</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>19,1000003815</shelf_width> - <shelf_height>21,8999996185</shelf_height> - <shelf_depth>10,6999998093</shelf_depth> + <grossWeight>8,8599996567</grossWeight> + <netWeight>6,8499999046</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>19,1000003815</shelfWidth> + <shelfHeight>21,8999996185</shelfHeight> + <shelfDepth>10,6999998093</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Apple Butter</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Apple Butter</productName> <sku>61357741951</sku> <srp>1,6499999762</srp> - <gross_weight>9,3800001144</gross_weight> - <net_weight>7,3800001144</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>15,1000003815</shelf_width> - <shelf_height>8,0399999619</shelf_height> - <shelf_depth>21,7999992371</shelf_depth> + <grossWeight>9,3800001144</grossWeight> + <netWeight>7,3800001144</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>15,1000003815</shelfWidth> + <shelfHeight>8,0399999619</shelfHeight> + <shelfDepth>21,7999992371</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Strawberry Preserves</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Strawberry Preserves</productName> <sku>32069382071</sku> <srp>2,7999999523</srp> - <gross_weight>7,5399999619</gross_weight> - <net_weight>4,5300002098</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>19,3999996185</shelf_width> - <shelf_height>8,779999733</shelf_height> - <shelf_depth>20,3999996185</shelf_depth> + <grossWeight>7,5399999619</grossWeight> + <netWeight>4,5300002098</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>19,3999996185</shelfWidth> + <shelfHeight>8,779999733</shelfHeight> + <shelfDepth>20,3999996185</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Apple Preserves</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Apple Preserves</productName> <sku>85175167918</sku> <srp>3,6099998951</srp> - <gross_weight>21,7999992371</gross_weight> - <net_weight>18,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>3,2999999523</shelf_width> - <shelf_height>18</shelf_height> - <shelf_depth>12,1999998093</shelf_depth> + <grossWeight>21,7999992371</grossWeight> + <netWeight>18,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>3,2999999523</shelfWidth> + <shelfHeight>18</shelfHeight> + <shelfDepth>12,1999998093</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Grape Preserves</product_name> + <brandName>Plato</brandName> + <productName>Plato Grape Preserves</productName> <sku>45673224329</sku> <srp>0,7300000191</srp> - <gross_weight>20,8999996185</gross_weight> - <net_weight>17,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>17,8999996185</shelf_width> - <shelf_height>11,8999996185</shelf_height> - <shelf_depth>11,5</shelf_depth> + <grossWeight>20,8999996185</grossWeight> + <netWeight>17,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>17,8999996185</shelfWidth> + <shelfHeight>11,8999996185</shelfHeight> + <shelfDepth>11,5</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Low Fat Apple Butter</product_name> + <brandName>Plato</brandName> + <productName>Plato Low Fat Apple Butter</productName> <sku>99507133364</sku> <srp>2,75</srp> - <gross_weight>9,0200004578</gross_weight> - <net_weight>6,0199999809</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>11,8000001907</shelf_width> - <shelf_height>9,6599998474</shelf_height> - <shelf_depth>15,8999996185</shelf_depth> + <grossWeight>9,0200004578</grossWeight> + <netWeight>6,0199999809</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>11,8000001907</shelfWidth> + <shelfHeight>9,6599998474</shelfHeight> + <shelfDepth>15,8999996185</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Apple Butter</product_name> + <brandName>Plato</brandName> + <productName>Plato Apple Butter</productName> <sku>34137386679</sku> <srp>2,2799999714</srp> - <gross_weight>12,6999998093</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>15</shelf_width> - <shelf_height>22,7000007629</shelf_height> - <shelf_depth>10,8999996185</shelf_depth> + <grossWeight>12,6999998093</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>15</shelfWidth> + <shelfHeight>22,7000007629</shelfHeight> + <shelfDepth>10,8999996185</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Strawberry Preserves</product_name> + <brandName>Plato</brandName> + <productName>Plato Strawberry Preserves</productName> <sku>83250296711</sku> <srp>1,5399999619</srp> - <gross_weight>14,5</gross_weight> - <net_weight>13,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>16,7000007629</shelf_width> - <shelf_height>3,6800000668</shelf_height> - <shelf_depth>16</shelf_depth> + <grossWeight>14,5</grossWeight> + <netWeight>13,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>16,7000007629</shelfWidth> + <shelfHeight>3,6800000668</shelfHeight> + <shelfDepth>16</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Apple Preserves</product_name> + <brandName>Plato</brandName> + <productName>Plato Apple Preserves</productName> <sku>77118316292</sku> <srp>3,3299999237</srp> - <gross_weight>12,6000003815</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>14,3000001907</shelf_width> - <shelf_height>20,7999992371</shelf_height> - <shelf_depth>7,75</shelf_depth> + <grossWeight>12,6000003815</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>14,3000001907</shelfWidth> + <shelfHeight>20,7999992371</shelfHeight> + <shelfDepth>7,75</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Grape Preserves</product_name> + <brandName>CDR</brandName> + <productName>CDR Grape Preserves</productName> <sku>65897241234</sku> <srp>1,4600000381</srp> - <gross_weight>17</gross_weight> - <net_weight>16</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>12,3999996185</shelf_width> - <shelf_height>19,6000003815</shelf_height> - <shelf_depth>20,8999996185</shelf_depth> + <grossWeight>17</grossWeight> + <netWeight>16</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>12,3999996185</shelfWidth> + <shelfHeight>19,6000003815</shelfHeight> + <shelfDepth>20,8999996185</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Low Fat Apple Butter</product_name> + <brandName>CDR</brandName> + <productName>CDR Low Fat Apple Butter</productName> <sku>80038576722</sku> <srp>0,6700000167</srp> - <gross_weight>21</gross_weight> - <net_weight>19</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>8,2399997711</shelf_width> - <shelf_height>10,8000001907</shelf_height> - <shelf_depth>12,6999998093</shelf_depth> + <grossWeight>21</grossWeight> + <netWeight>19</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>8,2399997711</shelfWidth> + <shelfHeight>10,8000001907</shelfHeight> + <shelfDepth>12,6999998093</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Apple Butter</product_name> + <brandName>CDR</brandName> + <productName>CDR Apple Butter</productName> <sku>45431063771</sku> <srp>1,8099999428</srp> - <gross_weight>7,6999998093</gross_weight> - <net_weight>4,6900000572</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>17,7000007629</shelf_width> - <shelf_height>16</shelf_height> - <shelf_depth>8,1400003433</shelf_depth> + <grossWeight>7,6999998093</grossWeight> + <netWeight>4,6900000572</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>17,7000007629</shelfWidth> + <shelfHeight>16</shelfHeight> + <shelfDepth>8,1400003433</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Strawberry Preserves</product_name> + <brandName>CDR</brandName> + <productName>CDR Strawberry Preserves</productName> <sku>50687324404</sku> <srp>1,2000000477</srp> - <gross_weight>15,3999996185</gross_weight> - <net_weight>13,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>14,1000003815</shelf_width> - <shelf_height>14,8000001907</shelf_height> - <shelf_depth>19,2999992371</shelf_depth> + <grossWeight>15,3999996185</grossWeight> + <netWeight>13,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>14,1000003815</shelfWidth> + <shelfHeight>14,8000001907</shelfHeight> + <shelfDepth>19,2999992371</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Apple Preserves</product_name> + <brandName>CDR</brandName> + <productName>CDR Apple Preserves</productName> <sku>75317577719</sku> <srp>1,6200000048</srp> - <gross_weight>21</gross_weight> - <net_weight>20</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>15,3000001907</shelf_width> - <shelf_height>20,2000007629</shelf_height> - <shelf_depth>18,7999992371</shelf_depth> + <grossWeight>21</grossWeight> + <netWeight>20</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>15,3000001907</shelfWidth> + <shelfHeight>20,2000007629</shelfHeight> + <shelfDepth>18,7999992371</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Waffles</product_subcategory> <product_category>Breakfast Foods</product_category> <product_department>Frozen Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Low Fat Waffles</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Low Fat Waffles</productName> <sku>48718068003</sku> <srp>1,1200000048</srp> - <gross_weight>21,5</gross_weight> - <net_weight>19,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>10,6000003815</shelf_width> - <shelf_height>8,8800001144</shelf_height> - <shelf_depth>11,1000003815</shelf_depth> + <grossWeight>21,5</grossWeight> + <netWeight>19,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>10,6000003815</shelfWidth> + <shelfHeight>8,8800001144</shelfHeight> + <shelfDepth>11,1000003815</shelfDepth> </Product> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Blueberry Waffles</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Blueberry Waffles</productName> <sku>92063059210</sku> <srp>0,8700000048</srp> - <gross_weight>10,1999998093</gross_weight> - <net_weight>8,1899995804</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>15,1000003815</shelf_width> - <shelf_height>19,7000007629</shelf_height> - <shelf_depth>13,3999996185</shelf_depth> + <grossWeight>10,1999998093</grossWeight> + <netWeight>8,1899995804</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>15,1000003815</shelfWidth> + <shelfHeight>19,7000007629</shelfHeight> + <shelfDepth>13,3999996185</shelfDepth> </Product> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Waffles</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Waffles</productName> <sku>55168845057</sku> <srp>0,6999999881</srp> - <gross_weight>13,8999996185</gross_weight> - <net_weight>11,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>20,1000003815</shelf_width> - <shelf_height>21,7000007629</shelf_height> - <shelf_depth>18,3999996185</shelf_depth> + <grossWeight>13,8999996185</grossWeight> + <netWeight>11,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>20,1000003815</shelfWidth> + <shelfHeight>21,7000007629</shelfHeight> + <shelfDepth>18,3999996185</shelfDepth> </Product> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Apple Cinnamon Waffles</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Apple Cinnamon Waffles</productName> <sku>73883582949</sku> <srp>3,6900000572</srp> - <gross_weight>19,6000003815</gross_weight> - <net_weight>17,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>13,3000001907</shelf_width> - <shelf_height>7,6500000954</shelf_height> - <shelf_depth>9,2399997711</shelf_depth> + <grossWeight>19,6000003815</grossWeight> + <netWeight>17,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>13,3000001907</shelfWidth> + <shelfHeight>7,6500000954</shelfHeight> + <shelfDepth>9,2399997711</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Low Fat Waffles</product_name> + <brandName>Golden</brandName> + <productName>Golden Low Fat Waffles</productName> <sku>74637401700</sku> <srp>2,7000000477</srp> - <gross_weight>21,2999992371</gross_weight> - <net_weight>18,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>7,0599999428</shelf_width> - <shelf_height>6,6100001335</shelf_height> - <shelf_depth>11</shelf_depth> + <grossWeight>21,2999992371</grossWeight> + <netWeight>18,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>7,0599999428</shelfWidth> + <shelfHeight>6,6100001335</shelfHeight> + <shelfDepth>11</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Blueberry Waffles</product_name> + <brandName>Golden</brandName> + <productName>Golden Blueberry Waffles</productName> <sku>25695691704</sku> <srp>0,8600000143</srp> - <gross_weight>7,8600001335</gross_weight> - <net_weight>6,8600001335</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>10,5</shelf_width> - <shelf_height>12,8999996185</shelf_height> - <shelf_depth>18,8999996185</shelf_depth> + <grossWeight>7,8600001335</grossWeight> + <netWeight>6,8600001335</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>10,5</shelfWidth> + <shelfHeight>12,8999996185</shelfHeight> + <shelfDepth>18,8999996185</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Waffles</product_name> + <brandName>Golden</brandName> + <productName>Golden Waffles</productName> <sku>24137113690</sku> <srp>0,7699999809</srp> - <gross_weight>10,1999998093</gross_weight> - <net_weight>8,1899995804</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>15,1000003815</shelf_width> - <shelf_height>8,0799999237</shelf_height> - <shelf_depth>19,5</shelf_depth> + <grossWeight>10,1999998093</grossWeight> + <netWeight>8,1899995804</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>15,1000003815</shelfWidth> + <shelfHeight>8,0799999237</shelfHeight> + <shelfDepth>19,5</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Apple Cinnamon Waffles</product_name> + <brandName>Golden</brandName> + <productName>Golden Apple Cinnamon Waffles</productName> <sku>16446555256</sku> <srp>0,6200000048</srp> - <gross_weight>7,9000000954</gross_weight> - <net_weight>4,9000000954</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>10,5</shelf_width> - <shelf_height>20,8999996185</shelf_height> - <shelf_depth>8,1499996185</shelf_depth> + <grossWeight>7,9000000954</grossWeight> + <netWeight>4,9000000954</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>10,5</shelfWidth> + <shelfHeight>20,8999996185</shelfHeight> + <shelfDepth>8,1499996185</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Low Fat Waffles</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Low Fat Waffles</productName> <sku>50246916413</sku> <srp>0,5099999905</srp> - <gross_weight>14,6999998093</gross_weight> - <net_weight>12,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>6,6100001335</shelf_width> - <shelf_height>15,6000003815</shelf_height> - <shelf_depth>8,4799995422</shelf_depth> + <grossWeight>14,6999998093</grossWeight> + <netWeight>12,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>6,6100001335</shelfWidth> + <shelfHeight>15,6000003815</shelfHeight> + <shelfDepth>8,4799995422</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Blueberry Waffles</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Blueberry Waffles</productName> <sku>97948845028</sku> <srp>2,1300001144</srp> - <gross_weight>11,1999998093</gross_weight> - <net_weight>9,1899995804</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>20,2999992371</shelf_width> - <shelf_height>20,3999996185</shelf_height> - <shelf_depth>13,1999998093</shelf_depth> + <grossWeight>11,1999998093</grossWeight> + <netWeight>9,1899995804</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>20,2999992371</shelfWidth> + <shelfHeight>20,3999996185</shelfHeight> + <shelfDepth>13,1999998093</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Waffles</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Waffles</productName> <sku>34865799546</sku> <srp>2,2400000095</srp> - <gross_weight>17,6000003815</gross_weight> - <net_weight>16,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>4,4699997902</shelf_width> - <shelf_height>18,8999996185</shelf_height> - <shelf_depth>17,8999996185</shelf_depth> + <grossWeight>17,6000003815</grossWeight> + <netWeight>16,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>4,4699997902</shelfWidth> + <shelfHeight>18,8999996185</shelfHeight> + <shelfDepth>17,8999996185</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Apple Cinnamon Waffles</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Apple Cinnamon Waffles</productName> <sku>25105004906</sku> <srp>0,5500000119</srp> - <gross_weight>15,8999996185</gross_weight> - <net_weight>14,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>3,2999999523</shelf_width> - <shelf_height>11</shelf_height> - <shelf_depth>20,8999996185</shelf_depth> + <grossWeight>15,8999996185</grossWeight> + <netWeight>14,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>3,2999999523</shelfWidth> + <shelfHeight>11</shelfHeight> + <shelfDepth>20,8999996185</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Low Fat Waffles</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Low Fat Waffles</productName> <sku>90773978829</sku> <srp>1,6299999952</srp> - <gross_weight>8,4099998474</gross_weight> - <net_weight>7,4000000954</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>9,6199998856</shelf_width> - <shelf_height>14,8000001907</shelf_height> - <shelf_depth>15,8999996185</shelf_depth> + <grossWeight>8,4099998474</grossWeight> + <netWeight>7,4000000954</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>9,6199998856</shelfWidth> + <shelfHeight>14,8000001907</shelfHeight> + <shelfDepth>15,8999996185</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Blueberry Waffles</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Blueberry Waffles</productName> <sku>81524842381</sku> <srp>1,1900000572</srp> - <gross_weight>15,3000001907</gross_weight> - <net_weight>13,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>3,0699999332</shelf_width> - <shelf_height>22,2000007629</shelf_height> - <shelf_depth>7,9600000381</shelf_depth> + <grossWeight>15,3000001907</grossWeight> + <netWeight>13,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>3,0699999332</shelfWidth> + <shelfHeight>22,2000007629</shelfHeight> + <shelfDepth>7,9600000381</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Waffles</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Waffles</productName> <sku>75392861962</sku> <srp>3,8699998856</srp> - <gross_weight>7,1999998093</gross_weight> - <net_weight>4,1900000572</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>15,3000001907</shelf_width> - <shelf_height>11,1000003815</shelf_height> - <shelf_depth>16,7000007629</shelf_depth> + <grossWeight>7,1999998093</grossWeight> + <netWeight>4,1900000572</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>15,3000001907</shelfWidth> + <shelfHeight>11,1000003815</shelfHeight> + <shelfDepth>16,7000007629</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Apple Cinnamon Waffles</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Apple Cinnamon Waffles</productName> <sku>89534197449</sku> <srp>1,8099999428</srp> - <gross_weight>6,2699999809</gross_weight> - <net_weight>5,2600002289</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>12</shelf_width> - <shelf_height>15,6000003815</shelf_height> - <shelf_depth>4,4499998093</shelf_depth> + <grossWeight>6,2699999809</grossWeight> + <netWeight>5,2600002289</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>12</shelfWidth> + <shelfHeight>15,6000003815</shelfHeight> + <shelfDepth>4,4499998093</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Low Fat Waffles</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Low Fat Waffles</productName> <sku>95429553389</sku> <srp>2,7400000095</srp> - <gross_weight>10,3000001907</gross_weight> - <net_weight>8,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>7,8600001335</shelf_width> - <shelf_height>22</shelf_height> - <shelf_depth>15</shelf_depth> + <grossWeight>10,3000001907</grossWeight> + <netWeight>8,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>7,8600001335</shelfWidth> + <shelfHeight>22</shelfHeight> + <shelfDepth>15</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Blueberry Waffles</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Blueberry Waffles</productName> <sku>20035340189</sku> <srp>0,5699999928</srp> - <gross_weight>7,6399998665</gross_weight> - <net_weight>5,6300001144</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>8,8400001526</shelf_width> - <shelf_height>13,5</shelf_height> - <shelf_depth>4,5</shelf_depth> + <grossWeight>7,6399998665</grossWeight> + <netWeight>5,6300001144</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>8,8400001526</shelfWidth> + <shelfHeight>13,5</shelfHeight> + <shelfDepth>4,5</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Waffles</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Waffles</productName> <sku>77714528441</sku> <srp>1,3099999428</srp> - <gross_weight>10,3999996185</gross_weight> - <net_weight>8,3900003433</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>16,2999992371</shelf_width> - <shelf_height>20,8999996185</shelf_height> - <shelf_depth>14,8000001907</shelf_depth> + <grossWeight>10,3999996185</grossWeight> + <netWeight>8,3900003433</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>16,2999992371</shelfWidth> + <shelfHeight>20,8999996185</shelfHeight> + <shelfDepth>14,8000001907</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Apple Cinnamon Waffles</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Apple Cinnamon Waffles</productName> <sku>98499502539</sku> <srp>2,8699998856</srp> - <gross_weight>13,6999998093</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>36</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>11</shelf_width> - <shelf_height>17,8999996185</shelf_height> - <shelf_depth>6,2699999809</shelf_depth> + <grossWeight>13,6999998093</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>36</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>11</shelfWidth> + <shelfHeight>17,8999996185</shelfHeight> + <shelfDepth>6,2699999809</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Cereal</product_subcategory> <product_category>Breakfast Foods</product_category> <product_department>Breakfast Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Best</brand_name> - <product_name>Best Oatmeal</product_name> + <brandName>Best</brandName> + <productName>Best Oatmeal</productName> <sku>75705832839</sku> <srp>3,5</srp> - <gross_weight>15,3999996185</gross_weight> - <net_weight>12,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>7,4400000572</shelf_width> - <shelf_height>19,6000003815</shelf_height> - <shelf_depth>18,3999996185</shelf_depth> + <grossWeight>15,3999996185</grossWeight> + <netWeight>12,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>7,4400000572</shelfWidth> + <shelfHeight>19,6000003815</shelfHeight> + <shelfDepth>18,3999996185</shelfDepth> </Product> <Product> - <brand_name>Best</brand_name> - <product_name>Best Corn Puffs</product_name> + <brandName>Best</brandName> + <productName>Best Corn Puffs</productName> <sku>50711517930</sku> <srp>1,9700000286</srp> - <gross_weight>7,4299998283</gross_weight> - <net_weight>5,4200000763</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>19,8999996185</shelf_width> - <shelf_height>8,220000267</shelf_height> - <shelf_depth>22,7999992371</shelf_depth> + <grossWeight>7,4299998283</grossWeight> + <netWeight>5,4200000763</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>19,8999996185</shelfWidth> + <shelfHeight>8,220000267</shelfHeight> + <shelfDepth>22,7999992371</shelfDepth> </Product> <Product> - <brand_name>Best</brand_name> - <product_name>Best Wheat Puffs</product_name> + <brandName>Best</brandName> + <productName>Best Wheat Puffs</productName> <sku>71860553622</sku> <srp>1,5099999905</srp> - <gross_weight>19,1000003815</gross_weight> - <net_weight>18,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>19,2999992371</shelf_width> - <shelf_height>20,3999996185</shelf_height> - <shelf_depth>8,5200004578</shelf_depth> + <grossWeight>19,1000003815</grossWeight> + <netWeight>18,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>19,2999992371</shelfWidth> + <shelfHeight>20,3999996185</shelfHeight> + <shelfDepth>8,5200004578</shelfDepth> </Product> <Product> - <brand_name>Best</brand_name> - <product_name>Best Grits</product_name> + <brandName>Best</brandName> + <productName>Best Grits</productName> <sku>16104004979</sku> <srp>2,4700000286</srp> - <gross_weight>8,8699998856</gross_weight> - <net_weight>6,8600001335</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>20,3999996185</shelf_width> - <shelf_height>7,75</shelf_height> - <shelf_depth>13,6000003815</shelf_depth> + <grossWeight>8,8699998856</grossWeight> + <netWeight>6,8600001335</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>20,3999996185</shelfWidth> + <shelfHeight>7,75</shelfHeight> + <shelfDepth>13,6000003815</shelfDepth> </Product> <Product> - <brand_name>Jeffers</brand_name> - <product_name>Jeffers Oatmeal</product_name> + <brandName>Jeffers</brandName> + <productName>Jeffers Oatmeal</productName> <sku>49031038880</sku> <srp>1,5399999619</srp> - <gross_weight>8,8999996185</gross_weight> - <net_weight>6,8899998665</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>15,8999996185</shelf_width> - <shelf_height>15,3999996185</shelf_height> - <shelf_depth>10,8000001907</shelf_depth> + <grossWeight>8,8999996185</grossWeight> + <netWeight>6,8899998665</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>15,8999996185</shelfWidth> + <shelfHeight>15,3999996185</shelfHeight> + <shelfDepth>10,8000001907</shelfDepth> </Product> <Product> - <brand_name>Jeffers</brand_name> - <product_name>Jeffers Corn Puffs</product_name> + <brandName>Jeffers</brandName> + <productName>Jeffers Corn Puffs</productName> <sku>13229009509</sku> <srp>2,6500000954</srp> - <gross_weight>10,3999996185</gross_weight> - <net_weight>7,3899998665</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>18,2000007629</shelf_width> - <shelf_height>10,3000001907</shelf_height> - <shelf_depth>14,6000003815</shelf_depth> + <grossWeight>10,3999996185</grossWeight> + <netWeight>7,3899998665</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>18,2000007629</shelfWidth> + <shelfHeight>10,3000001907</shelfHeight> + <shelfDepth>14,6000003815</shelfDepth> </Product> <Product> - <brand_name>Jeffers</brand_name> - <product_name>Jeffers Wheat Puffs</product_name> + <brandName>Jeffers</brandName> + <productName>Jeffers Wheat Puffs</productName> <sku>92942813038</sku> <srp>1,9299999475</srp> - <gross_weight>21,6000003815</gross_weight> - <net_weight>20,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>7,7300000191</shelf_width> - <shelf_height>6,9400000572</shelf_height> - <shelf_depth>8,0100002289</shelf_depth> + <grossWeight>21,6000003815</grossWeight> + <netWeight>20,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>7,7300000191</shelfWidth> + <shelfHeight>6,9400000572</shelfHeight> + <shelfDepth>8,0100002289</shelfDepth> </Product> <Product> - <brand_name>Jeffers</brand_name> - <product_name>Jeffers Grits</product_name> + <brandName>Jeffers</brandName> + <productName>Jeffers Grits</productName> <sku>26378549933</sku> <srp>2,2899999619</srp> - <gross_weight>21,2999992371</gross_weight> - <net_weight>20,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>8,9600000381</shelf_width> - <shelf_height>18,2999992371</shelf_height> - <shelf_depth>12,3999996185</shelf_depth> + <grossWeight>21,2999992371</grossWeight> + <netWeight>20,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>8,9600000381</shelfWidth> + <shelfHeight>18,2999992371</shelfHeight> + <shelfDepth>12,3999996185</shelfDepth> </Product> <Product> - <brand_name>Radius</brand_name> - <product_name>Radius Oatmeal</product_name> + <brandName>Radius</brandName> + <productName>Radius Oatmeal</productName> <sku>60594213604</sku> <srp>2,5299999714</srp> - <gross_weight>13,1000003815</gross_weight> - <net_weight>10,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>18,7999992371</shelf_width> - <shelf_height>21,6000003815</shelf_height> - <shelf_depth>5,1999998093</shelf_depth> + <grossWeight>13,1000003815</grossWeight> + <netWeight>10,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>18,7999992371</shelfWidth> + <shelfHeight>21,6000003815</shelfHeight> + <shelfDepth>5,1999998093</shelfDepth> </Product> <Product> - <brand_name>Radius</brand_name> - <product_name>Radius Corn Puffs</product_name> + <brandName>Radius</brandName> + <productName>Radius Corn Puffs</productName> <sku>55554417967</sku> <srp>1,3799999952</srp> - <gross_weight>7,9200000763</gross_weight> - <net_weight>5,9200000763</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>15</shelf_width> - <shelf_height>22,6000003815</shelf_height> - <shelf_depth>16,2000007629</shelf_depth> + <grossWeight>7,9200000763</grossWeight> + <netWeight>5,9200000763</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>15</shelfWidth> + <shelfHeight>22,6000003815</shelfHeight> + <shelfDepth>16,2000007629</shelfDepth> </Product> <Product> - <brand_name>Radius</brand_name> - <product_name>Radius Wheat Puffs</product_name> + <brandName>Radius</brandName> + <productName>Radius Wheat Puffs</productName> <sku>87511168122</sku> <srp>2,6400001049</srp> - <gross_weight>12,1999998093</gross_weight> - <net_weight>9,1899995804</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>10,1999998093</shelf_width> - <shelf_height>15,3999996185</shelf_height> - <shelf_depth>11,6999998093</shelf_depth> + <grossWeight>12,1999998093</grossWeight> + <netWeight>9,1899995804</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>10,1999998093</shelfWidth> + <shelfHeight>15,3999996185</shelfHeight> + <shelfDepth>11,6999998093</shelfDepth> </Product> <Product> - <brand_name>Radius</brand_name> - <product_name>Radius Grits</product_name> + <brandName>Radius</brandName> + <productName>Radius Grits</productName> <sku>51709138751</sku> <srp>0,8600000143</srp> - <gross_weight>8,3999996185</gross_weight> - <net_weight>7,3899998665</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>12</shelf_width> - <shelf_height>13,1999998093</shelf_height> - <shelf_depth>22,2999992371</shelf_depth> + <grossWeight>8,3999996185</grossWeight> + <netWeight>7,3899998665</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>12</shelfWidth> + <shelfHeight>13,1999998093</shelfHeight> + <shelfDepth>22,2999992371</shelfDepth> </Product> <Product> - <brand_name>Special</brand_name> - <product_name>Special Oatmeal</product_name> + <brandName>Special</brandName> + <productName>Special Oatmeal</productName> <sku>64333127140</sku> <srp>3,4700000286</srp> - <gross_weight>9,5600004196</gross_weight> - <net_weight>6,5599999428</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>3,6900000572</shelf_width> - <shelf_height>15</shelf_height> - <shelf_depth>10,8000001907</shelf_depth> + <grossWeight>9,5600004196</grossWeight> + <netWeight>6,5599999428</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>3,6900000572</shelfWidth> + <shelfHeight>15</shelfHeight> + <shelfDepth>10,8000001907</shelfDepth> </Product> <Product> - <brand_name>Special</brand_name> - <product_name>Special Corn Puffs</product_name> + <brandName>Special</brandName> + <productName>Special Corn Puffs</productName> <sku>43502888083</sku> <srp>1,9299999475</srp> - <gross_weight>16,1000003815</gross_weight> - <net_weight>15,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>19,3999996185</shelf_width> - <shelf_height>19,1000003815</shelf_height> - <shelf_depth>8,1899995804</shelf_depth> + <grossWeight>16,1000003815</grossWeight> + <netWeight>15,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>19,3999996185</shelfWidth> + <shelfHeight>19,1000003815</shelfHeight> + <shelfDepth>8,1899995804</shelfDepth> </Product> <Product> - <brand_name>Special</brand_name> - <product_name>Special Wheat Puffs</product_name> + <brandName>Special</brandName> + <productName>Special Wheat Puffs</productName> <sku>46984105706</sku> <srp>2,9100000858</srp> - <gross_weight>21,7999992371</gross_weight> - <net_weight>19,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>21,3999996185</shelf_width> - <shelf_height>10,8000001907</shelf_height> - <shelf_depth>8,279999733</shelf_depth> + <grossWeight>21,7999992371</grossWeight> + <netWeight>19,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>21,3999996185</shelfWidth> + <shelfHeight>10,8000001907</shelfHeight> + <shelfDepth>8,279999733</shelfDepth> </Product> <Product> - <brand_name>Special</brand_name> - <product_name>Special Grits</product_name> + <brandName>Special</brandName> + <productName>Special Grits</productName> <sku>96608673930</sku> <srp>2,7400000095</srp> - <gross_weight>17</gross_weight> - <net_weight>16</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>19,8999996185</shelf_width> - <shelf_height>8,6199998856</shelf_height> - <shelf_depth>9,1499996185</shelf_depth> + <grossWeight>17</grossWeight> + <netWeight>16</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>19,8999996185</shelfWidth> + <shelfHeight>8,6199998856</shelfHeight> + <shelfDepth>9,1499996185</shelfDepth> </Product> <Product> - <brand_name>Johnson</brand_name> - <product_name>Johnson Oatmeal</product_name> + <brandName>Johnson</brandName> + <productName>Johnson Oatmeal</productName> <sku>95748350024</sku> <srp>0,6000000238</srp> - <gross_weight>18,2999992371</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>16,7999992371</shelf_width> - <shelf_height>19,2999992371</shelf_height> - <shelf_depth>12,8000001907</shelf_depth> + <grossWeight>18,2999992371</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>16,7999992371</shelfWidth> + <shelfHeight>19,2999992371</shelfHeight> + <shelfDepth>12,8000001907</shelfDepth> </Product> <Product> - <brand_name>Johnson</brand_name> - <product_name>Johnson Corn Puffs</product_name> + <brandName>Johnson</brandName> + <productName>Johnson Corn Puffs</productName> <sku>73040736317</sku> <srp>0,7599999905</srp> - <gross_weight>11,1000003815</gross_weight> - <net_weight>10,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>11,1000003815</shelf_width> - <shelf_height>7,7100000381</shelf_height> - <shelf_depth>12,3000001907</shelf_depth> + <grossWeight>11,1000003815</grossWeight> + <netWeight>10,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>11,1000003815</shelfWidth> + <shelfHeight>7,7100000381</shelfHeight> + <shelfDepth>12,3000001907</shelfDepth> </Product> <Product> - <brand_name>Johnson</brand_name> - <product_name>Johnson Wheat Puffs</product_name> + <brandName>Johnson</brandName> + <productName>Johnson Wheat Puffs</productName> <sku>96476473212</sku> <srp>0,8299999833</srp> - <gross_weight>10,5</gross_weight> - <net_weight>7,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>8,8999996185</shelf_width> - <shelf_height>20,1000003815</shelf_height> - <shelf_depth>21,8999996185</shelf_depth> + <grossWeight>10,5</grossWeight> + <netWeight>7,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>8,8999996185</shelfWidth> + <shelfHeight>20,1000003815</shelfHeight> + <shelfDepth>21,8999996185</shelfDepth> </Product> <Product> - <brand_name>Johnson</brand_name> - <product_name>Johnson Grits</product_name> + <brandName>Johnson</brandName> + <productName>Johnson Grits</productName> <sku>43006625771</sku> <srp>2,3499999046</srp> - <gross_weight>21,2000007629</gross_weight> - <net_weight>19,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>15,1000003815</shelf_width> - <shelf_height>6,7300000191</shelf_height> - <shelf_depth>15,3999996185</shelf_depth> + <grossWeight>21,2000007629</grossWeight> + <netWeight>19,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>15,1000003815</shelfWidth> + <shelfHeight>6,7300000191</shelfHeight> + <shelfDepth>15,3999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Chocolate Candy</product_subcategory> <product_category>Candy</product_category> <product_department>Snacks</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Choice</brand_name> - <product_name>Choice Tasty Candy Bar</product_name> + <brandName>Choice</brandName> + <productName>Choice Tasty Candy Bar</productName> <sku>74969941973</sku> <srp>0,8899999857</srp> - <gross_weight>18,2000007629</gross_weight> - <net_weight>15,1999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>15,3000001907</shelf_width> - <shelf_height>10,5</shelf_height> - <shelf_depth>19,2999992371</shelf_depth> + <grossWeight>18,2000007629</grossWeight> + <netWeight>15,1999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>15,3000001907</shelfWidth> + <shelfHeight>10,5</shelfHeight> + <shelfDepth>19,2999992371</shelfDepth> </Product> <Product> - <brand_name>Choice</brand_name> - <product_name>Choice Mint Chocolate Bar</product_name> + <brandName>Choice</brandName> + <productName>Choice Mint Chocolate Bar</productName> <sku>76164458394</sku> <srp>0,5600000024</srp> - <gross_weight>11,6000003815</gross_weight> - <net_weight>8,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>6,1300001144</shelf_width> - <shelf_height>19,2999992371</shelf_height> - <shelf_depth>8,1800003052</shelf_depth> + <grossWeight>11,6000003815</grossWeight> + <netWeight>8,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>6,1300001144</shelfWidth> + <shelfHeight>19,2999992371</shelfHeight> + <shelfDepth>8,1800003052</shelfDepth> </Product> <Product> - <brand_name>Choice</brand_name> - <product_name>Choice Malted Milk Balls</product_name> + <brandName>Choice</brandName> + <productName>Choice Malted Milk Balls</productName> <sku>99600195288</sku> <srp>0,6399999857</srp> - <gross_weight>8,6499996185</gross_weight> - <net_weight>6,6399998665</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>13,6000003815</shelf_width> - <shelf_height>12,6999998093</shelf_height> - <shelf_depth>3,4800000191</shelf_depth> + <grossWeight>8,6499996185</grossWeight> + <netWeight>6,6399998665</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>13,6000003815</shelfWidth> + <shelfHeight>12,6999998093</shelfHeight> + <shelfDepth>3,4800000191</shelfDepth> </Product> <Product> - <brand_name>Choice</brand_name> - <product_name>Choice Semi-Sweet Chocolate Bar</product_name> + <brandName>Choice</brandName> + <productName>Choice Semi-Sweet Chocolate Bar</productName> <sku>46130347847</sku> <srp>2,6500000954</srp> - <gross_weight>21,7000007629</gross_weight> - <net_weight>20,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>10</shelf_width> - <shelf_height>18,2999992371</shelf_height> - <shelf_depth>11,1999998093</shelf_depth> + <grossWeight>21,7000007629</grossWeight> + <netWeight>20,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>10</shelfWidth> + <shelfHeight>18,2999992371</shelfHeight> + <shelfDepth>11,1999998093</shelfDepth> </Product> <Product> - <brand_name>Choice</brand_name> - <product_name>Choice White Chocolate Bar</product_name> + <brandName>Choice</brandName> + <productName>Choice White Chocolate Bar</productName> <sku>36369553208</sku> <srp>1,8400000334</srp> - <gross_weight>21,8999996185</gross_weight> - <net_weight>18,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>17</shelf_width> - <shelf_height>21,6000003815</shelf_height> - <shelf_depth>13,6999998093</shelf_depth> + <grossWeight>21,8999996185</grossWeight> + <netWeight>18,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>17</shelfWidth> + <shelfHeight>21,6000003815</shelfHeight> + <shelfDepth>13,6999998093</shelfDepth> </Product> <Product> - <brand_name>Thresher</brand_name> - <product_name>Thresher Tasty Candy Bar</product_name> + <brandName>Thresher</brandName> + <productName>Thresher Tasty Candy Bar</productName> <sku>61210145354</sku> <srp>3,4400000572</srp> - <gross_weight>17,5</gross_weight> - <net_weight>16,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>6,3499999046</shelf_width> - <shelf_height>6,5100002289</shelf_height> - <shelf_depth>11,8000001907</shelf_depth> + <grossWeight>17,5</grossWeight> + <netWeight>16,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>6,3499999046</shelfWidth> + <shelfHeight>6,5100002289</shelfHeight> + <shelfDepth>11,8000001907</shelfDepth> </Product> <Product> - <brand_name>Thresher</brand_name> - <product_name>Thresher Mint Chocolate Bar</product_name> + <brandName>Thresher</brandName> + <productName>Thresher Mint Chocolate Bar</productName> <sku>69264765381</sku> <srp>1,7100000381</srp> - <gross_weight>20,8999996185</gross_weight> - <net_weight>17,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>15,8999996185</shelf_width> - <shelf_height>12,5</shelf_height> - <shelf_depth>17,6000003815</shelf_depth> + <grossWeight>20,8999996185</grossWeight> + <netWeight>17,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>15,8999996185</shelfWidth> + <shelfHeight>12,5</shelfHeight> + <shelfDepth>17,6000003815</shelfDepth> </Product> <Product> - <brand_name>Thresher</brand_name> - <product_name>Thresher Malted Milk Balls</product_name> + <brandName>Thresher</brandName> + <productName>Thresher Malted Milk Balls</productName> <sku>57364866137</sku> <srp>1,5800000429</srp> - <gross_weight>10,3000001907</gross_weight> - <net_weight>8,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>22,7999992371</shelf_width> - <shelf_height>19,7999992371</shelf_height> - <shelf_depth>5,3200001717</shelf_depth> + <grossWeight>10,3000001907</grossWeight> + <netWeight>8,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>22,7999992371</shelfWidth> + <shelfHeight>19,7999992371</shelfHeight> + <shelfDepth>5,3200001717</shelfDepth> </Product> <Product> - <brand_name>Thresher</brand_name> - <product_name>Thresher Semi-Sweet Chocolate Bar</product_name> + <brandName>Thresher</brandName> + <productName>Thresher Semi-Sweet Chocolate Bar</productName> <sku>34657252430</sku> <srp>1,8700000048</srp> - <gross_weight>18,7999992371</gross_weight> - <net_weight>17,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>16,5</shelf_width> - <shelf_height>11,8000001907</shelf_height> - <shelf_depth>9,5500001907</shelf_depth> + <grossWeight>18,7999992371</grossWeight> + <netWeight>17,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>16,5</shelfWidth> + <shelfHeight>11,8000001907</shelfHeight> + <shelfDepth>9,5500001907</shelfDepth> </Product> <Product> - <brand_name>Thresher</brand_name> - <product_name>Thresher White Chocolate Bar</product_name> + <brandName>Thresher</brandName> + <productName>Thresher White Chocolate Bar</productName> <sku>15749652981</sku> <srp>2,4900000095</srp> - <gross_weight>11,5</gross_weight> - <net_weight>9,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>5,1700000763</shelf_width> - <shelf_height>5,5</shelf_height> - <shelf_depth>14,6999998093</shelf_depth> + <grossWeight>11,5</grossWeight> + <netWeight>9,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>5,1700000763</shelfWidth> + <shelfHeight>5,5</shelfHeight> + <shelfDepth>14,6999998093</shelfDepth> </Product> <Product> - <brand_name>Atomic</brand_name> - <product_name>Atomic Tasty Candy Bar</product_name> + <brandName>Atomic</brandName> + <productName>Atomic Tasty Candy Bar</productName> <sku>10031033158</sku> <srp>0,6600000262</srp> - <gross_weight>17,8999996185</gross_weight> - <net_weight>15,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>7,1799998283</shelf_width> - <shelf_height>8,3500003815</shelf_height> - <shelf_depth>17</shelf_depth> + <grossWeight>17,8999996185</grossWeight> + <netWeight>15,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>7,1799998283</shelfWidth> + <shelfHeight>8,3500003815</shelfHeight> + <shelfDepth>17</shelfDepth> </Product> <Product> - <brand_name>Atomic</brand_name> - <product_name>Atomic Mint Chocolate Bar</product_name> + <brandName>Atomic</brandName> + <productName>Atomic Mint Chocolate Bar</productName> <sku>55082198977</sku> <srp>0,8999999762</srp> - <gross_weight>10,8999996185</gross_weight> - <net_weight>9,8900003433</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>12,8999996185</shelf_width> - <shelf_height>22,5</shelf_height> - <shelf_depth>13,6000003815</shelf_depth> + <grossWeight>10,8999996185</grossWeight> + <netWeight>9,8900003433</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>12,8999996185</shelfWidth> + <shelfHeight>22,5</shelfHeight> + <shelfDepth>13,6000003815</shelfDepth> </Product> <Product> - <brand_name>Atomic</brand_name> - <product_name>Atomic Malted Milk Balls</product_name> + <brandName>Atomic</brandName> + <productName>Atomic Malted Milk Balls</productName> <sku>65423520207</sku> <srp>1,7799999714</srp> - <gross_weight>13,8999996185</gross_weight> - <net_weight>10,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>20,2999992371</shelf_width> - <shelf_height>11,8999996185</shelf_height> - <shelf_depth>9,6099996567</shelf_depth> + <grossWeight>13,8999996185</grossWeight> + <netWeight>10,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>20,2999992371</shelfWidth> + <shelfHeight>11,8999996185</shelfHeight> + <shelfDepth>9,6099996567</shelfDepth> </Product> <Product> - <brand_name>Atomic</brand_name> - <product_name>Atomic Semi-Sweet Chocolate Bar</product_name> + <brandName>Atomic</brandName> + <productName>Atomic Semi-Sweet Chocolate Bar</productName> <sku>55810322165</sku> <srp>2,3499999046</srp> - <gross_weight>15,8999996185</gross_weight> - <net_weight>13,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>4,4600000381</shelf_width> - <shelf_height>5,7699999809</shelf_height> - <shelf_depth>13,1999998093</shelf_depth> + <grossWeight>15,8999996185</grossWeight> + <netWeight>13,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>4,4600000381</shelfWidth> + <shelfHeight>5,7699999809</shelfHeight> + <shelfDepth>13,1999998093</shelfDepth> </Product> <Product> - <brand_name>Atomic</brand_name> - <product_name>Atomic White Chocolate Bar</product_name> + <brandName>Atomic</brandName> + <productName>Atomic White Chocolate Bar</productName> <sku>65114583373</sku> <srp>1,25</srp> - <gross_weight>10,3999996185</gross_weight> - <net_weight>8,3900003433</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>6,6599998474</shelf_width> - <shelf_height>17,6000003815</shelf_height> - <shelf_depth>7,4499998093</shelf_depth> + <grossWeight>10,3999996185</grossWeight> + <netWeight>8,3900003433</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>6,6599998474</shelfWidth> + <shelfHeight>17,6000003815</shelfHeight> + <shelfDepth>7,4499998093</shelfDepth> </Product> <Product> - <brand_name>Musial</brand_name> - <product_name>Musial Tasty Candy Bar</product_name> + <brandName>Musial</brandName> + <productName>Musial Tasty Candy Bar</productName> <sku>99849533438</sku> <srp>2,0999999046</srp> - <gross_weight>19,7000007629</gross_weight> - <net_weight>16,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>9,1700000763</shelf_width> - <shelf_height>3,5599999428</shelf_height> - <shelf_depth>14</shelf_depth> + <grossWeight>19,7000007629</grossWeight> + <netWeight>16,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>9,1700000763</shelfWidth> + <shelfHeight>3,5599999428</shelfHeight> + <shelfDepth>14</shelfDepth> </Product> <Product> - <brand_name>Musial</brand_name> - <product_name>Musial Mint Chocolate Bar</product_name> + <brandName>Musial</brandName> + <productName>Musial Mint Chocolate Bar</productName> <sku>13330751061</sku> <srp>0,9800000191</srp> - <gross_weight>13,5</gross_weight> - <net_weight>12,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>10,8999996185</shelf_width> - <shelf_height>16,7000007629</shelf_height> - <shelf_depth>7,8899998665</shelf_depth> + <grossWeight>13,5</grossWeight> + <netWeight>12,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>10,8999996185</shelfWidth> + <shelfHeight>16,7000007629</shelfHeight> + <shelfDepth>7,8899998665</shelfDepth> </Product> <Product> - <brand_name>Musial</brand_name> - <product_name>Musial Malted Milk Balls</product_name> + <brandName>Musial</brandName> + <productName>Musial Malted Milk Balls</productName> <sku>62955319285</sku> <srp>0,8899999857</srp> - <gross_weight>13,8000001907</gross_weight> - <net_weight>10,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>13,1999998093</shelf_width> - <shelf_height>11,3999996185</shelf_height> - <shelf_depth>12,1000003815</shelf_depth> + <grossWeight>13,8000001907</grossWeight> + <netWeight>10,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>13,1999998093</shelfWidth> + <shelfHeight>11,3999996185</shelfHeight> + <shelfDepth>12,1000003815</shelfDepth> </Product> <Product> - <brand_name>Musial</brand_name> - <product_name>Musial Semi-Sweet Chocolate Bar</product_name> + <brandName>Musial</brandName> + <productName>Musial Semi-Sweet Chocolate Bar</productName> <sku>11772173047</sku> <srp>2,8099999428</srp> - <gross_weight>19,6000003815</gross_weight> - <net_weight>17,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>12,5</shelf_width> - <shelf_height>9,9200000763</shelf_height> - <shelf_depth>7,2699999809</shelf_depth> + <grossWeight>19,6000003815</grossWeight> + <netWeight>17,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>12,5</shelfWidth> + <shelfHeight>9,9200000763</shelfHeight> + <shelfDepth>7,2699999809</shelfDepth> </Product> <Product> - <brand_name>Musial</brand_name> - <product_name>Musial White Chocolate Bar</product_name> + <brandName>Musial</brandName> + <productName>Musial White Chocolate Bar</productName> <sku>58962443470</sku> <srp>3,4300000668</srp> - <gross_weight>16</gross_weight> - <net_weight>14</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>14,8000001907</shelf_width> - <shelf_height>20,7999992371</shelf_height> - <shelf_depth>5,8000001907</shelf_depth> + <grossWeight>16</grossWeight> + <netWeight>14</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>14,8000001907</shelfWidth> + <shelfHeight>20,7999992371</shelfHeight> + <shelfDepth>5,8000001907</shelfDepth> </Product> <Product> - <brand_name>Gulf Coast</brand_name> - <product_name>Gulf Coast Tasty Candy Bar</product_name> + <brandName>Gulf Coast</brandName> + <productName>Gulf Coast Tasty Candy Bar</productName> <sku>21143210530</sku> <srp>2,8099999428</srp> - <gross_weight>7,1100001335</gross_weight> - <net_weight>6,1100001335</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>8,0600004196</shelf_width> - <shelf_height>9,3199996948</shelf_height> - <shelf_depth>10,6999998093</shelf_depth> + <grossWeight>7,1100001335</grossWeight> + <netWeight>6,1100001335</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>8,0600004196</shelfWidth> + <shelfHeight>9,3199996948</shelfHeight> + <shelfDepth>10,6999998093</shelfDepth> </Product> <Product> - <brand_name>Gulf Coast</brand_name> - <product_name>Gulf Coast Mint Chocolate Bar</product_name> + <brandName>Gulf Coast</brandName> + <productName>Gulf Coast Mint Chocolate Bar</productName> <sku>44578947424</sku> <srp>2,9400000572</srp> - <gross_weight>21,8999996185</gross_weight> - <net_weight>19,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>16,1000003815</shelf_width> - <shelf_height>19,5</shelf_height> - <shelf_depth>20,3999996185</shelf_depth> + <grossWeight>21,8999996185</grossWeight> + <netWeight>19,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>16,1000003815</shelfWidth> + <shelfHeight>19,5</shelfHeight> + <shelfDepth>20,3999996185</shelfDepth> </Product> <Product> - <brand_name>Gulf Coast</brand_name> - <product_name>Gulf Coast Malted Milk Balls</product_name> + <brandName>Gulf Coast</brandName> + <productName>Gulf Coast Malted Milk Balls</productName> <sku>15011230111</sku> <srp>1,5900000334</srp> - <gross_weight>21,7999992371</gross_weight> - <net_weight>19,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>6,1500000954</shelf_width> - <shelf_height>3,1800000668</shelf_height> - <shelf_depth>17,2999992371</shelf_depth> + <grossWeight>21,7999992371</grossWeight> + <netWeight>19,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>6,1500000954</shelfWidth> + <shelfHeight>3,1800000668</shelfHeight> + <shelfDepth>17,2999992371</shelfDepth> </Product> <Product> - <brand_name>Gulf Coast</brand_name> - <product_name>Gulf Coast Semi-Sweet Chocolate Bar</product_name> + <brandName>Gulf Coast</brandName> + <productName>Gulf Coast Semi-Sweet Chocolate Bar</productName> <sku>97684733271</sku> <srp>2,75</srp> - <gross_weight>14,6999998093</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>13,3000001907</shelf_width> - <shelf_height>8,5200004578</shelf_height> - <shelf_depth>13,8999996185</shelf_depth> + <grossWeight>14,6999998093</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>13,3000001907</shelfWidth> + <shelfHeight>8,5200004578</shelfHeight> + <shelfDepth>13,8999996185</shelfDepth> </Product> <Product> - <brand_name>Gulf Coast</brand_name> - <product_name>Gulf Coast White Chocolate Bar</product_name> + <brandName>Gulf Coast</brandName> + <productName>Gulf Coast White Chocolate Bar</productName> <sku>61518642306</sku> <srp>2,9800000191</srp> - <gross_weight>19,2999992371</gross_weight> - <net_weight>17,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>3,9800000191</shelf_width> - <shelf_height>9,9399995804</shelf_height> - <shelf_depth>15</shelf_depth> + <grossWeight>19,2999992371</grossWeight> + <netWeight>17,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>3,9800000191</shelfWidth> + <shelfHeight>9,9399995804</shelfHeight> + <shelfDepth>15</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Gum</product_subcategory> <product_category>Candy</product_category> <product_department>Snacks</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Choice</brand_name> - <product_name>Choice Bubble Gum</product_name> + <brandName>Choice</brandName> + <productName>Choice Bubble Gum</productName> <sku>62705981135</sku> <srp>0,5299999714</srp> - <gross_weight>6,8899998665</gross_weight> - <net_weight>5,8800001144</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>18,2000007629</shelf_width> - <shelf_height>17,6000003815</shelf_height> - <shelf_depth>15,3000001907</shelf_depth> + <grossWeight>6,8899998665</grossWeight> + <netWeight>5,8800001144</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>18,2000007629</shelfWidth> + <shelfHeight>17,6000003815</shelfHeight> + <shelfDepth>15,3000001907</shelfDepth> </Product> <Product> - <brand_name>Thresher</brand_name> - <product_name>Thresher Bubble Gum</product_name> + <brandName>Thresher</brandName> + <productName>Thresher Bubble Gum</productName> <sku>58092989325</sku> <srp>1,1100000143</srp> - <gross_weight>11,6999998093</gross_weight> - <net_weight>9,6899995804</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>3,5599999428</shelf_width> - <shelf_height>8,3100004196</shelf_height> - <shelf_depth>11,1000003815</shelf_depth> + <grossWeight>11,6999998093</grossWeight> + <netWeight>9,6899995804</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>3,5599999428</shelfWidth> + <shelfHeight>8,3100004196</shelfHeight> + <shelfDepth>11,1000003815</shelfDepth> </Product> <Product> - <brand_name>Atomic</brand_name> - <product_name>Atomic Bubble Gum</product_name> + <brandName>Atomic</brandName> + <productName>Atomic Bubble Gum</productName> <sku>59291539788</sku> <srp>3,3299999237</srp> - <gross_weight>11,1999998093</gross_weight> - <net_weight>8,1899995804</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>11,5</shelf_width> - <shelf_height>6,8200001717</shelf_height> - <shelf_depth>11,6000003815</shelf_depth> + <grossWeight>11,1999998093</grossWeight> + <netWeight>8,1899995804</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>11,5</shelfWidth> + <shelfHeight>6,8200001717</shelfHeight> + <shelfDepth>11,6000003815</shelfDepth> </Product> <Product> - <brand_name>Musial</brand_name> - <product_name>Musial Bubble Gum</product_name> + <brandName>Musial</brandName> + <productName>Musial Bubble Gum</productName> <sku>30634507536</sku> <srp>1,6599999666</srp> - <gross_weight>8,4899997711</gross_weight> - <net_weight>6,4800000191</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>19</shelf_width> - <shelf_height>9,4200000763</shelf_height> - <shelf_depth>15,1000003815</shelf_depth> + <grossWeight>8,4899997711</grossWeight> + <netWeight>6,4800000191</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>19</shelfWidth> + <shelfHeight>9,4200000763</shelfHeight> + <shelfDepth>15,1000003815</shelfDepth> </Product> <Product> - <brand_name>Gulf Coast</brand_name> - <product_name>Gulf Coast Bubble Gum</product_name> + <brandName>Gulf Coast</brandName> + <productName>Gulf Coast Bubble Gum</productName> <sku>13452652096</sku> <srp>3,4300000668</srp> - <gross_weight>13,1999998093</gross_weight> - <net_weight>10,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>16</shelf_width> - <shelf_height>6,4600000381</shelf_height> - <shelf_depth>21,2999992371</shelf_depth> + <grossWeight>13,1999998093</grossWeight> + <netWeight>10,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>16</shelfWidth> + <shelfHeight>6,4600000381</shelfHeight> + <shelfDepth>21,2999992371</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Hard Candy</product_subcategory> <product_category>Candy</product_category> <product_department>Snacks</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Choice</brand_name> - <product_name>Choice Spicy Mints</product_name> + <brandName>Choice</brandName> + <productName>Choice Spicy Mints</productName> <sku>68473899960</sku> <srp>1,7200000286</srp> - <gross_weight>18,6000003815</gross_weight> - <net_weight>16,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>7,2600002289</shelf_width> - <shelf_height>17,5</shelf_height> - <shelf_depth>13,5</shelf_depth> + <grossWeight>18,6000003815</grossWeight> + <netWeight>16,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>7,2600002289</shelfWidth> + <shelfHeight>17,5</shelfHeight> + <shelfDepth>13,5</shelfDepth> </Product> <Product> - <brand_name>Choice</brand_name> - <product_name>Choice Mints</product_name> + <brandName>Choice</brandName> + <productName>Choice Mints</productName> <sku>61363868117</sku> <srp>1,8999999762</srp> - <gross_weight>18,3999996185</gross_weight> - <net_weight>17,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>7,3800001144</shelf_width> - <shelf_height>15,6000003815</shelf_height> - <shelf_depth>7,9600000381</shelf_depth> + <grossWeight>18,3999996185</grossWeight> + <netWeight>17,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>7,3800001144</shelfWidth> + <shelfHeight>15,6000003815</shelfHeight> + <shelfDepth>7,9600000381</shelfDepth> </Product> <Product> - <brand_name>Thresher</brand_name> - <product_name>Thresher Spicy Mints</product_name> + <brandName>Thresher</brandName> + <productName>Thresher Spicy Mints</productName> <sku>83406100869</sku> <srp>3,6500000954</srp> - <gross_weight>11,1000003815</gross_weight> - <net_weight>8,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>10,8000001907</shelf_width> - <shelf_height>8,529999733</shelf_height> - <shelf_depth>13,1999998093</shelf_depth> + <grossWeight>11,1000003815</grossWeight> + <netWeight>8,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>10,8000001907</shelfWidth> + <shelfHeight>8,529999733</shelfHeight> + <shelfDepth>13,1999998093</shelfDepth> </Product> <Product> - <brand_name>Thresher</brand_name> - <product_name>Thresher Mints</product_name> + <brandName>Thresher</brandName> + <productName>Thresher Mints</productName> <sku>99981734156</sku> <srp>1,8099999428</srp> - <gross_weight>7,1999998093</gross_weight> - <net_weight>5,1900000572</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>10,8999996185</shelf_width> - <shelf_height>17,1000003815</shelf_height> - <shelf_depth>14,1999998093</shelf_depth> + <grossWeight>7,1999998093</grossWeight> + <netWeight>5,1900000572</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>10,8999996185</shelfWidth> + <shelfHeight>17,1000003815</shelfHeight> + <shelfDepth>14,1999998093</shelfDepth> </Product> <Product> - <brand_name>Atomic</brand_name> - <product_name>Atomic Spicy Mints</product_name> + <brandName>Atomic</brandName> + <productName>Atomic Spicy Mints</productName> <sku>18916108012</sku> <srp>3,1600000858</srp> - <gross_weight>7,7899999619</gross_weight> - <net_weight>5,7800002098</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>16,8999996185</shelf_width> - <shelf_height>3,5199999809</shelf_height> - <shelf_depth>17</shelf_depth> + <grossWeight>7,7899999619</grossWeight> + <netWeight>5,7800002098</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>16,8999996185</shelfWidth> + <shelfHeight>3,5199999809</shelfHeight> + <shelfDepth>17</shelfDepth> </Product> <Product> - <brand_name>Atomic</brand_name> - <product_name>Atomic Mints</product_name> + <brandName>Atomic</brandName> + <productName>Atomic Mints</productName> <sku>57732961773</sku> <srp>2,1600000858</srp> - <gross_weight>17,5</gross_weight> - <net_weight>15,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>19,6000003815</shelf_width> - <shelf_height>21,1000003815</shelf_height> - <shelf_depth>5,8600001335</shelf_depth> + <grossWeight>17,5</grossWeight> + <netWeight>15,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>19,6000003815</shelfWidth> + <shelfHeight>21,1000003815</shelfHeight> + <shelfDepth>5,8600001335</shelfDepth> </Product> <Product> - <brand_name>Musial</brand_name> - <product_name>Musial Spicy Mints</product_name> + <brandName>Musial</brandName> + <productName>Musial Spicy Mints</productName> <sku>27472086548</sku> <srp>2,9200000763</srp> - <gross_weight>14,6000003815</gross_weight> - <net_weight>12,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>14,3000001907</shelf_width> - <shelf_height>21,2999992371</shelf_height> - <shelf_depth>14,8999996185</shelf_depth> + <grossWeight>14,6000003815</grossWeight> + <netWeight>12,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>14,3000001907</shelfWidth> + <shelfHeight>21,2999992371</shelfHeight> + <shelfDepth>14,8999996185</shelfDepth> </Product> <Product> - <brand_name>Musial</brand_name> - <product_name>Musial Mints</product_name> + <brandName>Musial</brandName> + <productName>Musial Mints</productName> <sku>81670057177</sku> <srp>3,1400001049</srp> - <gross_weight>10,3000001907</gross_weight> - <net_weight>7,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>13,6999998093</shelf_width> - <shelf_height>13,5</shelf_height> - <shelf_depth>20,7000007629</shelf_depth> + <grossWeight>10,3000001907</grossWeight> + <netWeight>7,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>13,6999998093</shelfWidth> + <shelfHeight>13,5</shelfHeight> + <shelfDepth>20,7000007629</shelfDepth> </Product> <Product> - <brand_name>Gulf Coast</brand_name> - <product_name>Gulf Coast Spicy Mints</product_name> + <brandName>Gulf Coast</brandName> + <productName>Gulf Coast Spicy Mints</productName> <sku>65363921523</sku> <srp>1,8400000334</srp> - <gross_weight>18,8999996185</gross_weight> - <net_weight>16,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>7</shelf_width> - <shelf_height>19,2999992371</shelf_height> - <shelf_depth>8,8999996185</shelf_depth> + <grossWeight>18,8999996185</grossWeight> + <netWeight>16,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>7</shelfWidth> + <shelfHeight>19,2999992371</shelfHeight> + <shelfDepth>8,8999996185</shelfDepth> </Product> <Product> - <brand_name>Gulf Coast</brand_name> - <product_name>Gulf Coast Mints</product_name> + <brandName>Gulf Coast</brandName> + <productName>Gulf Coast Mints</productName> <sku>40369606614</sku> <srp>3,5399999619</srp> - <gross_weight>10,8999996185</gross_weight> - <net_weight>7,8899998665</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>18,3999996185</shelf_width> - <shelf_height>14,6000003815</shelf_height> - <shelf_depth>3,2699999809</shelf_depth> + <grossWeight>10,8999996185</grossWeight> + <netWeight>7,8899998665</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>18,3999996185</shelfWidth> + <shelfHeight>14,6000003815</shelfHeight> + <shelfDepth>3,2699999809</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Personal Hygiene</product_subcategory> <product_category>Hygiene</product_category> <product_department>Health and Hygiene</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Faux Products</brand_name> - <product_name>Faux Products Tartar Control Toothpaste</product_name> + <brandName>Faux Products</brandName> + <productName>Faux Products Tartar Control Toothpaste</productName> <sku>21393879055</sku> <srp>0,9200000167</srp> - <gross_weight>20,6000003815</gross_weight> - <net_weight>19,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>19,1000003815</shelf_width> - <shelf_height>10,5</shelf_height> - <shelf_depth>9,7299995422</shelf_depth> + <grossWeight>20,6000003815</grossWeight> + <netWeight>19,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>19,1000003815</shelfWidth> + <shelfHeight>10,5</shelfHeight> + <shelfDepth>9,7299995422</shelfDepth> </Product> <Product> - <brand_name>Faux Products</brand_name> - <product_name>Faux Products Whitening Toothpast</product_name> + <brandName>Faux Products</brandName> + <productName>Faux Products Whitening Toothpast</productName> <sku>14283847212</sku> <srp>0,6499999762</srp> - <gross_weight>20,6000003815</gross_weight> - <net_weight>18,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>10,6000003815</shelf_width> - <shelf_height>11,6999998093</shelf_height> - <shelf_depth>9,6199998856</shelf_depth> + <grossWeight>20,6000003815</grossWeight> + <netWeight>18,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>10,6000003815</shelfWidth> + <shelfHeight>11,6999998093</shelfHeight> + <shelfDepth>9,6199998856</shelfDepth> </Product> <Product> - <brand_name>Faux Products</brand_name> - <product_name>Faux Products Toothpaste</product_name> + <brandName>Faux Products</brandName> + <productName>Faux Products Toothpaste</productName> <sku>79289532303</sku> <srp>3,9700000286</srp> - <gross_weight>8,3299999237</gross_weight> - <net_weight>5,3200001717</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>7,4499998093</shelf_width> - <shelf_height>20,7999992371</shelf_height> - <shelf_depth>13,3999996185</shelf_depth> + <grossWeight>8,3299999237</grossWeight> + <netWeight>5,3200001717</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>7,4499998093</shelfWidth> + <shelfHeight>20,7999992371</shelfHeight> + <shelfDepth>13,3999996185</shelfDepth> </Product> <Product> - <brand_name>Faux Products</brand_name> - <product_name>Faux Products Deodorant</product_name> + <brandName>Faux Products</brandName> + <productName>Faux Products Deodorant</productName> <sku>10438567996</sku> <srp>2,75</srp> - <gross_weight>9,2399997711</gross_weight> - <net_weight>7,2300000191</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>12</shelf_width> - <shelf_height>3,1199998856</shelf_height> - <shelf_depth>8,1899995804</shelf_depth> + <grossWeight>9,2399997711</grossWeight> + <netWeight>7,2300000191</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>12</shelfWidth> + <shelfHeight>3,1199998856</shelfHeight> + <shelfDepth>8,1899995804</shelfDepth> </Product> <Product> - <brand_name>Bird Call</brand_name> - <product_name>Bird Call Tartar Control Toothpaste</product_name> + <brandName>Bird Call</brandName> + <productName>Bird Call Tartar Control Toothpaste</productName> <sku>63364935517</sku> <srp>1,3999999762</srp> - <gross_weight>17</gross_weight> - <net_weight>16</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>8,470000267</shelf_width> - <shelf_height>10,8999996185</shelf_height> - <shelf_depth>21</shelf_depth> + <grossWeight>17</grossWeight> + <netWeight>16</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>8,470000267</shelfWidth> + <shelfHeight>10,8999996185</shelfHeight> + <shelfDepth>21</shelfDepth> </Product> <Product> - <brand_name>Bird Call</brand_name> - <product_name>Bird Call Whitening Toothpast</product_name> + <brandName>Bird Call</brandName> + <productName>Bird Call Whitening Toothpast</productName> <sku>27562906146</sku> <srp>1,8500000238</srp> - <gross_weight>18,5</gross_weight> - <net_weight>15,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>13,6000003815</shelf_width> - <shelf_height>9,9399995804</shelf_height> - <shelf_depth>10,6000003815</shelf_depth> + <grossWeight>18,5</grossWeight> + <netWeight>15,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>13,6000003815</shelfWidth> + <shelfHeight>9,9399995804</shelfHeight> + <shelfDepth>10,6000003815</shelfDepth> </Product> <Product> - <brand_name>Bird Call</brand_name> - <product_name>Bird Call Toothpaste</product_name> + <brandName>Bird Call</brandName> + <productName>Bird Call Toothpaste</productName> <sku>94855292439</sku> <srp>1,4800000191</srp> - <gross_weight>14</gross_weight> - <net_weight>11</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>9,4399995804</shelf_width> - <shelf_height>5,1700000763</shelf_height> - <shelf_depth>7,0300002098</shelf_depth> + <grossWeight>14</grossWeight> + <netWeight>11</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>9,4399995804</shelfWidth> + <shelfHeight>5,1700000763</shelfHeight> + <shelfDepth>7,0300002098</shelfDepth> </Product> <Product> - <brand_name>Bird Call</brand_name> - <product_name>Bird Call Deodorant</product_name> + <brandName>Bird Call</brandName> + <productName>Bird Call Deodorant</productName> <sku>40712446570</sku> <srp>1,6200000048</srp> - <gross_weight>17,6000003815</gross_weight> - <net_weight>15,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>7,7300000191</shelf_width> - <shelf_height>5,4299998283</shelf_height> - <shelf_depth>10,8000001907</shelf_depth> + <grossWeight>17,6000003815</grossWeight> + <netWeight>15,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>7,7300000191</shelfWidth> + <shelfHeight>5,4299998283</shelfHeight> + <shelfDepth>10,8000001907</shelfDepth> </Product> <Product> - <brand_name>Consolidated</brand_name> - <product_name>Consolidated Tartar Control Toothpaste</product_name> + <brandName>Consolidated</brandName> + <productName>Consolidated Tartar Control Toothpaste</productName> <sku>60228210091</sku> <srp>2,1300001144</srp> - <gross_weight>10,1000003815</gross_weight> - <net_weight>7,0999999046</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>15,6999998093</shelf_width> - <shelf_height>5,3800001144</shelf_height> - <shelf_depth>19,1000003815</shelf_depth> + <grossWeight>10,1000003815</grossWeight> + <netWeight>7,0999999046</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>15,6999998093</shelfWidth> + <shelfHeight>5,3800001144</shelfHeight> + <shelfDepth>19,1000003815</shelfDepth> </Product> <Product> - <brand_name>Consolidated</brand_name> - <product_name>Consolidated Whitening Toothpast</product_name> + <brandName>Consolidated</brandName> + <productName>Consolidated Whitening Toothpast</productName> <sku>52901713252</sku> <srp>1,2799999714</srp> - <gross_weight>11,6000003815</gross_weight> - <net_weight>9,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>20,8999996185</shelf_width> - <shelf_height>4,3600001335</shelf_height> - <shelf_depth>8,75</shelf_depth> + <grossWeight>11,6000003815</grossWeight> + <netWeight>9,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>20,8999996185</shelfWidth> + <shelfHeight>4,3600001335</shelfHeight> + <shelfDepth>8,75</shelfDepth> </Product> <Product> - <brand_name>Consolidated</brand_name> - <product_name>Consolidated Toothpaste</product_name> + <brandName>Consolidated</brandName> + <productName>Consolidated Toothpaste</productName> <sku>58669632077</sku> <srp>1,8500000238</srp> - <gross_weight>7,1199998856</gross_weight> - <net_weight>4,1100001335</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>16,7000007629</shelf_width> - <shelf_height>19,5</shelf_height> - <shelf_depth>5,1700000763</shelf_depth> + <grossWeight>7,1199998856</grossWeight> + <netWeight>4,1100001335</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>16,7000007629</shelfWidth> + <shelfHeight>19,5</shelfHeight> + <shelfDepth>5,1700000763</shelfDepth> </Product> <Product> - <brand_name>Consolidated</brand_name> - <product_name>Consolidated Deodorant</product_name> + <brandName>Consolidated</brandName> + <productName>Consolidated Deodorant</productName> <sku>51295928359</sku> <srp>2,3800001144</srp> - <gross_weight>10,6999998093</gross_weight> - <net_weight>8,6899995804</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>14,8999996185</shelf_width> - <shelf_height>19,7999992371</shelf_height> - <shelf_depth>9,029999733</shelf_depth> + <grossWeight>10,6999998093</grossWeight> + <netWeight>8,6899995804</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>14,8999996185</shelfWidth> + <shelfHeight>19,7999992371</shelfHeight> + <shelfDepth>9,029999733</shelfDepth> </Product> <Product> - <brand_name>Steady</brand_name> - <product_name>Steady Tartar Control Toothpaste</product_name> + <brandName>Steady</brandName> + <productName>Steady Tartar Control Toothpaste</productName> <sku>26453244090</sku> <srp>1,2799999714</srp> - <gross_weight>9,1800003052</gross_weight> - <net_weight>6,1799998283</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>18,8999996185</shelf_width> - <shelf_height>20,8999996185</shelf_height> - <shelf_depth>20,8999996185</shelf_depth> + <grossWeight>9,1800003052</grossWeight> + <netWeight>6,1799998283</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>18,8999996185</shelfWidth> + <shelfHeight>20,8999996185</shelfHeight> + <shelfDepth>20,8999996185</shelfDepth> </Product> <Product> - <brand_name>Steady</brand_name> - <product_name>Steady Whitening Toothpast</product_name> + <brandName>Steady</brandName> + <productName>Steady Whitening Toothpast</productName> <sku>65270097851</sku> <srp>0,6000000238</srp> - <gross_weight>11,5</gross_weight> - <net_weight>10,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>8,9200000763</shelf_width> - <shelf_height>11</shelf_height> - <shelf_depth>20,1000003815</shelf_depth> + <grossWeight>11,5</grossWeight> + <netWeight>10,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>8,9200000763</shelfWidth> + <shelfHeight>11</shelfHeight> + <shelfDepth>20,1000003815</shelfDepth> </Product> <Product> - <brand_name>Steady</brand_name> - <product_name>Steady Toothpaste</product_name> + <brandName>Steady</brandName> + <productName>Steady Toothpaste</productName> <sku>84132432341</sku> <srp>2,1400001049</srp> - <gross_weight>8,8900003433</gross_weight> - <net_weight>5,8899998665</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>13,5</shelf_width> - <shelf_height>13</shelf_height> - <shelf_depth>16</shelf_depth> + <grossWeight>8,8900003433</grossWeight> + <netWeight>5,8899998665</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>13,5</shelfWidth> + <shelfHeight>13</shelfHeight> + <shelfDepth>16</shelfDepth> </Product> <Product> - <brand_name>Steady</brand_name> - <product_name>Steady Deodorant</product_name> + <brandName>Steady</brandName> + <productName>Steady Deodorant</productName> <sku>26089182496</sku> <srp>0,6700000167</srp> - <gross_weight>8,4300003052</gross_weight> - <net_weight>7,4299998283</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>11,3000001907</shelf_width> - <shelf_height>16,2999992371</shelf_height> - <shelf_depth>6,1799998283</shelf_depth> + <grossWeight>8,4300003052</grossWeight> + <netWeight>7,4299998283</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>11,3000001907</shelfWidth> + <shelfHeight>16,2999992371</shelfHeight> + <shelfDepth>6,1799998283</shelfDepth> </Product> <Product> - <brand_name>Hilltop</brand_name> - <product_name>Hilltop Tartar Control Toothpaste</product_name> + <brandName>Hilltop</brandName> + <productName>Hilltop Tartar Control Toothpaste</productName> <sku>49262599349</sku> <srp>2,6600000858</srp> - <gross_weight>8,5</gross_weight> - <net_weight>6,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>8,2299995422</shelf_width> - <shelf_height>11,3999996185</shelf_height> - <shelf_depth>21,3999996185</shelf_depth> + <grossWeight>8,5</grossWeight> + <netWeight>6,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>8,2299995422</shelfWidth> + <shelfHeight>11,3999996185</shelfHeight> + <shelfDepth>21,3999996185</shelfDepth> </Product> <Product> - <brand_name>Hilltop</brand_name> - <product_name>Hilltop Whitening Toothpast</product_name> + <brandName>Hilltop</brandName> + <productName>Hilltop Whitening Toothpast</productName> <sku>24268284440</sku> <srp>1,6000000238</srp> - <gross_weight>19,7999992371</gross_weight> - <net_weight>17,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>17,1000003815</shelf_width> - <shelf_height>7,8800001144</shelf_height> - <shelf_depth>12,6999998093</shelf_depth> + <grossWeight>19,7999992371</grossWeight> + <netWeight>17,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>17,1000003815</shelfWidth> + <shelfHeight>7,8800001144</shelfHeight> + <shelfDepth>12,6999998093</shelfDepth> </Product> <Product> - <brand_name>Hilltop</brand_name> - <product_name>Hilltop Toothpaste</product_name> + <brandName>Hilltop</brandName> + <productName>Hilltop Toothpaste</productName> <sku>45417320132</sku> <srp>0,5299999714</srp> - <gross_weight>6,1799998283</gross_weight> - <net_weight>4,1700000763</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>8,5900001526</shelf_width> - <shelf_height>9,1499996185</shelf_height> - <shelf_depth>12</shelf_depth> + <grossWeight>6,1799998283</grossWeight> + <netWeight>4,1700000763</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>8,5900001526</shelfWidth> + <shelfHeight>9,1499996185</shelfHeight> + <shelfDepth>12</shelfDepth> </Product> <Product> - <brand_name>Hilltop</brand_name> - <product_name>Hilltop Deodorant</product_name> + <brandName>Hilltop</brandName> + <productName>Hilltop Deodorant</productName> <sku>79660771489</sku> <srp>2,7599999905</srp> - <gross_weight>17,2000007629</gross_weight> - <net_weight>15,1999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>21,6000003815</shelf_width> - <shelf_height>21</shelf_height> - <shelf_depth>13,6000003815</shelf_depth> + <grossWeight>17,2000007629</grossWeight> + <netWeight>15,1999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>21,6000003815</shelfWidth> + <shelfHeight>21</shelfHeight> + <shelfDepth>13,6000003815</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Pots and Pans</product_subcategory> <product_category>Kitchen Products</product_category> <product_department>Household</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Frying Pan</product_name> + <brandName>Denny</brandName> + <productName>Denny Frying Pan</productName> <sku>64154309630</sku> <srp>3,8099999428</srp> - <gross_weight>20,6000003815</gross_weight> - <net_weight>18,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>12,8999996185</shelf_width> - <shelf_height>18,8999996185</shelf_height> - <shelf_depth>5,3699998856</shelf_depth> + <grossWeight>20,6000003815</grossWeight> + <netWeight>18,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>12,8999996185</shelfWidth> + <shelfHeight>18,8999996185</shelfHeight> + <shelfDepth>5,3699998856</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Frying Pan</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Frying Pan</productName> <sku>80074421763</sku> <srp>3,7200000286</srp> - <gross_weight>17,7000007629</gross_weight> - <net_weight>15,6999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>19,2000007629</shelf_width> - <shelf_height>3,5899999142</shelf_height> - <shelf_depth>8,6400003433</shelf_depth> + <grossWeight>17,7000007629</grossWeight> + <netWeight>15,6999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>19,2000007629</shelfWidth> + <shelfHeight>3,5899999142</shelfHeight> + <shelfDepth>8,6400003433</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Frying Pan</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Frying Pan</productName> <sku>39895885586</sku> <srp>2,6300001144</srp> - <gross_weight>8,7899999619</gross_weight> - <net_weight>5,7800002098</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>4,3600001335</shelf_width> - <shelf_height>18,5</shelf_height> - <shelf_depth>16,1000003815</shelf_depth> + <grossWeight>8,7899999619</grossWeight> + <netWeight>5,7800002098</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>4,3600001335</shelfWidth> + <shelfHeight>18,5</shelfHeight> + <shelfDepth>16,1000003815</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Frying Pan</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Frying Pan</productName> <sku>34182941317</sku> <srp>2,8099999428</srp> - <gross_weight>20,7000007629</gross_weight> - <net_weight>19,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>19,8999996185</shelf_width> - <shelf_height>13</shelf_height> - <shelf_depth>15,5</shelf_depth> + <grossWeight>20,7000007629</grossWeight> + <netWeight>19,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>19,8999996185</shelfWidth> + <shelfHeight>13</shelfHeight> + <shelfDepth>15,5</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Frying Pan</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Frying Pan</productName> <sku>99056425690</sku> <srp>2,7100000381</srp> - <gross_weight>18</gross_weight> - <net_weight>15</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>5,75</shelf_width> - <shelf_height>16,5</shelf_height> - <shelf_depth>3,5799999237</shelf_depth> + <grossWeight>18</grossWeight> + <netWeight>15</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>5,75</shelfWidth> + <shelfHeight>16,5</shelfHeight> + <shelfDepth>3,5799999237</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Tools</product_subcategory> <product_category>Hardware</product_category> <product_department>Household</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Scissors</product_name> + <brandName>Denny</brandName> + <productName>Denny Scissors</productName> <sku>24142939448</sku> <srp>1,5199999809</srp> - <gross_weight>10</gross_weight> - <net_weight>8</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>11,5</shelf_width> - <shelf_height>7,2100000381</shelf_height> - <shelf_depth>8,5500001907</shelf_depth> + <grossWeight>10</grossWeight> + <netWeight>8</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>11,5</shelfWidth> + <shelfHeight>7,2100000381</shelfHeight> + <shelfDepth>8,5500001907</shelfDepth> </Product> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Screw Driver</product_name> + <brandName>Denny</brandName> + <productName>Denny Screw Driver</productName> <sku>94507216811</sku> <srp>2,3800001144</srp> - <gross_weight>14,6999998093</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>12,8999996185</shelf_width> - <shelf_height>18,6000003815</shelf_height> - <shelf_depth>7,1100001335</shelf_depth> + <grossWeight>14,6999998093</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>12,8999996185</shelfWidth> + <shelfHeight>18,6000003815</shelfHeight> + <shelfDepth>7,1100001335</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Scissors</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Scissors</productName> <sku>33419412970</sku> <srp>2,4700000286</srp> - <gross_weight>12,6000003815</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>5,1500000954</shelf_width> - <shelf_height>7,7600002289</shelf_height> - <shelf_depth>10,1000003815</shelf_depth> + <grossWeight>12,6000003815</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>5,1500000954</shelfWidth> + <shelfHeight>7,7600002289</shelfHeight> + <shelfDepth>10,1000003815</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Screw Driver</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Screw Driver</productName> <sku>86525198817</sku> <srp>2,2799999714</srp> - <gross_weight>9,6300001144</gross_weight> - <net_weight>8,6300001144</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>6,1300001144</shelf_width> - <shelf_height>21,8999996185</shelf_height> - <shelf_depth>16</shelf_depth> + <grossWeight>9,6300001144</grossWeight> + <netWeight>8,6300001144</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>6,1300001144</shelfWidth> + <shelfHeight>21,8999996185</shelfHeight> + <shelfDepth>16</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Scissors</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Scissors</productName> <sku>57052045464</sku> <srp>0,8199999928</srp> - <gross_weight>9,470000267</gross_weight> - <net_weight>8,470000267</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>22,2999992371</shelf_width> - <shelf_height>10,8000001907</shelf_height> - <shelf_depth>20,8999996185</shelf_depth> + <grossWeight>9,470000267</grossWeight> + <netWeight>8,470000267</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>22,2999992371</shelfWidth> + <shelfHeight>10,8000001907</shelfHeight> + <shelfDepth>20,8999996185</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Screw Driver</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Screw Driver</productName> <sku>55493467450</sku> <srp>3,5199999809</srp> - <gross_weight>21,2999992371</gross_weight> - <net_weight>19,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>17,1000003815</shelf_width> - <shelf_height>22,3999996185</shelf_height> - <shelf_depth>17,7000007629</shelf_depth> + <grossWeight>21,2999992371</grossWeight> + <netWeight>19,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>17,1000003815</shelfWidth> + <shelfHeight>22,3999996185</shelfHeight> + <shelfDepth>17,7000007629</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Scissors</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Scissors</productName> <sku>94492883086</sku> <srp>3,2400000095</srp> - <gross_weight>9,4200000763</gross_weight> - <net_weight>7,4200000763</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>20,6000003815</shelf_width> - <shelf_height>8,8699998856</shelf_height> - <shelf_depth>14,1000003815</shelf_depth> + <grossWeight>9,4200000763</grossWeight> + <netWeight>7,4200000763</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>20,6000003815</shelfWidth> + <shelfHeight>8,8699998856</shelfHeight> + <shelfDepth>14,1000003815</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Screw Driver</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Screw Driver</productName> <sku>90647603869</sku> <srp>2,6199998856</srp> - <gross_weight>7,6399998665</gross_weight> - <net_weight>5,6300001144</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>21,5</shelf_width> - <shelf_height>3,2599999905</shelf_height> - <shelf_depth>19,5</shelf_depth> + <grossWeight>7,6399998665</grossWeight> + <netWeight>5,6300001144</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>21,5</shelfWidth> + <shelfHeight>3,2599999905</shelfHeight> + <shelfDepth>19,5</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Scissors</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Scissors</productName> <sku>21639183163</sku> <srp>1,7200000286</srp> - <gross_weight>17,2999992371</gross_weight> - <net_weight>15,1999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>14</shelf_width> - <shelf_height>7,2399997711</shelf_height> - <shelf_depth>4,2800002098</shelf_depth> + <grossWeight>17,2999992371</grossWeight> + <netWeight>15,1999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>14</shelfWidth> + <shelfHeight>7,2399997711</shelfHeight> + <shelfDepth>4,2800002098</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Screw Driver</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Screw Driver</productName> <sku>48556137681</sku> <srp>1,8300000429</srp> - <gross_weight>19,6000003815</gross_weight> - <net_weight>17,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>3,8499999046</shelf_width> - <shelf_height>8,5100002289</shelf_height> - <shelf_depth>8,5600004196</shelf_depth> + <grossWeight>19,6000003815</grossWeight> + <netWeight>17,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>3,8499999046</shelfWidth> + <shelfHeight>8,5100002289</shelfHeight> + <shelfDepth>8,5600004196</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Sponges</product_subcategory> <product_category>Kitchen Products</product_category> <product_department>Household</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Large Sponge</product_name> + <brandName>Denny</brandName> + <productName>Denny Large Sponge</productName> <sku>18693817257</sku> <srp>2,8499999046</srp> - <gross_weight>13,8000001907</gross_weight> - <net_weight>10,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>8,3400001526</shelf_width> - <shelf_height>16,2999992371</shelf_height> - <shelf_depth>12,3999996185</shelf_depth> + <grossWeight>13,8000001907</grossWeight> + <netWeight>10,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>8,3400001526</shelfWidth> + <shelfHeight>16,2999992371</shelfHeight> + <shelfDepth>12,3999996185</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Large Sponge</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Large Sponge</productName> <sku>69949565529</sku> <srp>0,5199999809</srp> - <gross_weight>8,1700000763</gross_weight> - <net_weight>7,1700000763</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>20,8999996185</shelf_width> - <shelf_height>22,8999996185</shelf_height> - <shelf_depth>6,5300002098</shelf_depth> + <grossWeight>8,1700000763</grossWeight> + <netWeight>7,1700000763</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>20,8999996185</shelfWidth> + <shelfHeight>22,8999996185</shelfHeight> + <shelfDepth>6,5300002098</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Large Sponge</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Large Sponge</productName> <sku>82774483561</sku> <srp>0,7300000191</srp> - <gross_weight>14</gross_weight> - <net_weight>12</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>21,7999992371</shelf_width> - <shelf_height>4,1700000763</shelf_height> - <shelf_depth>15</shelf_depth> + <grossWeight>14</grossWeight> + <netWeight>12</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>21,7999992371</shelfWidth> + <shelfHeight>4,1700000763</shelfHeight> + <shelfDepth>15</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Large Sponge</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Large Sponge</productName> <sku>12547503113</sku> <srp>0,7200000286</srp> - <gross_weight>20,8999996185</gross_weight> - <net_weight>18,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>16,3999996185</shelf_width> - <shelf_height>4,0999999046</shelf_height> - <shelf_depth>10,5</shelf_depth> + <grossWeight>20,8999996185</grossWeight> + <netWeight>18,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>16,3999996185</shelfWidth> + <shelfHeight>4,0999999046</shelfHeight> + <shelfDepth>10,5</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Large Sponge</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Large Sponge</productName> <sku>73550452589</sku> <srp>1,8999999762</srp> - <gross_weight>17,3999996185</gross_weight> - <net_weight>15,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>12,3999996185</shelf_width> - <shelf_height>7,2399997711</shelf_height> - <shelf_depth>9,2700004578</shelf_depth> + <grossWeight>17,3999996185</grossWeight> + <netWeight>15,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>12,3999996185</shelfWidth> + <shelfHeight>7,2399997711</shelfHeight> + <shelfDepth>9,2700004578</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Beer</product_subcategory> <product_category>Beer and Wine</product_category> <product_department>Alcoholic Beverages</product_department> - <product_family>Drink</product_family> + <productFamily>Drink</productFamily> <Product> - <brand_name>Good</brand_name> - <product_name>Good Imported Beer</product_name> + <brandName>Good</brandName> + <productName>Good Imported Beer</productName> <sku>84071481823</sku> <srp>1,6200000048</srp> - <gross_weight>6,8899998665</gross_weight> - <net_weight>5,8800001144</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>16,2000007629</shelf_width> - <shelf_height>13,3999996185</shelf_height> - <shelf_depth>7,1199998856</shelf_depth> + <grossWeight>6,8899998665</grossWeight> + <netWeight>5,8800001144</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>16,2000007629</shelfWidth> + <shelfHeight>13,3999996185</shelfHeight> + <shelfDepth>7,1199998856</shelfDepth> </Product> <Product> - <brand_name>Good</brand_name> - <product_name>Good Light Beer</product_name> + <brandName>Good</brandName> + <productName>Good Light Beer</productName> <sku>51705405116</sku> <srp>2,1800000668</srp> - <gross_weight>9,3500003815</gross_weight> - <net_weight>6,3499999046</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>20</shelf_width> - <shelf_height>21,1000003815</shelf_height> - <shelf_depth>16,7999992371</shelf_depth> + <grossWeight>9,3500003815</grossWeight> + <netWeight>6,3499999046</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>20</shelfWidth> + <shelfHeight>21,1000003815</shelfHeight> + <shelfDepth>16,7999992371</shelfDepth> </Product> <Product> - <brand_name>Pearl</brand_name> - <product_name>Pearl Imported Beer</product_name> + <brandName>Pearl</brandName> + <productName>Pearl Imported Beer</productName> <sku>22462159991</sku> <srp>0,9100000262</srp> - <gross_weight>11,6000003815</gross_weight> - <net_weight>8,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>6,5199999809</shelf_width> - <shelf_height>18,5</shelf_height> - <shelf_depth>20,2999992371</shelf_depth> + <grossWeight>11,6000003815</grossWeight> + <netWeight>8,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>6,5199999809</shelfWidth> + <shelfHeight>18,5</shelfHeight> + <shelfDepth>20,2999992371</shelfDepth> </Product> <Product> - <brand_name>Pearl</brand_name> - <product_name>Pearl Light Beer</product_name> + <brandName>Pearl</brandName> + <productName>Pearl Light Beer</productName> <sku>31402359604</sku> <srp>1,8600000143</srp> - <gross_weight>10,3000001907</gross_weight> - <net_weight>8,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>9,279999733</shelf_width> - <shelf_height>11,8000001907</shelf_height> - <shelf_depth>5,6399998665</shelf_depth> + <grossWeight>10,3000001907</grossWeight> + <netWeight>8,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>9,279999733</shelfWidth> + <shelfHeight>11,8000001907</shelfHeight> + <shelfDepth>5,6399998665</shelfDepth> </Product> <Product> - <brand_name>Walrus</brand_name> - <product_name>Walrus Imported Beer</product_name> + <brandName>Walrus</brandName> + <productName>Walrus Imported Beer</productName> <sku>25103213191</sku> <srp>2,6199998856</srp> - <gross_weight>6,1100001335</gross_weight> - <net_weight>3,1099998951</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>15,8000001907</shelf_width> - <shelf_height>20,1000003815</shelf_height> - <shelf_depth>17,5</shelf_depth> + <grossWeight>6,1100001335</grossWeight> + <netWeight>3,1099998951</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>15,8000001907</shelfWidth> + <shelfHeight>20,1000003815</shelfHeight> + <shelfDepth>17,5</shelfDepth> </Product> <Product> - <brand_name>Walrus</brand_name> - <product_name>Walrus Light Beer</product_name> + <brandName>Walrus</brandName> + <productName>Walrus Light Beer</productName> <sku>70461373925</sku> <srp>2,5899999142</srp> - <gross_weight>17,6000003815</gross_weight> - <net_weight>15,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>21,2999992371</shelf_width> - <shelf_height>16,5</shelf_height> - <shelf_depth>18,7999992371</shelf_depth> + <grossWeight>17,6000003815</grossWeight> + <netWeight>15,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>21,2999992371</shelfWidth> + <shelfHeight>16,5</shelfHeight> + <shelfDepth>18,7999992371</shelfDepth> </Product> <Product> - <brand_name>Portsmouth</brand_name> - <product_name>Portsmouth Imported Beer</product_name> + <brandName>Portsmouth</brandName> + <productName>Portsmouth Imported Beer</productName> <sku>78188839554</sku> <srp>2,1600000858</srp> - <gross_weight>16,2000007629</gross_weight> - <net_weight>13,1999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>12,1999998093</shelf_width> - <shelf_height>4,4400000572</shelf_height> - <shelf_depth>4,9699997902</shelf_depth> + <grossWeight>16,2000007629</grossWeight> + <netWeight>13,1999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>12,1999998093</shelfWidth> + <shelfHeight>4,4400000572</shelfHeight> + <shelfDepth>4,9699997902</shelfDepth> </Product> <Product> - <brand_name>Portsmouth</brand_name> - <product_name>Portsmouth Light Beer</product_name> + <brandName>Portsmouth</brandName> + <productName>Portsmouth Light Beer</productName> <sku>19633931517</sku> <srp>3,7899999619</srp> - <gross_weight>16,2999992371</gross_weight> - <net_weight>15,1999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>21,7999992371</shelf_width> - <shelf_height>16,7000007629</shelf_height> - <shelf_depth>14,8000001907</shelf_depth> + <grossWeight>16,2999992371</grossWeight> + <netWeight>15,1999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>21,7999992371</shelfWidth> + <shelfHeight>16,7000007629</shelfHeight> + <shelfDepth>14,8000001907</shelfDepth> </Product> <Product> - <brand_name>Top Measure</brand_name> - <product_name>Top Measure Imported Beer</product_name> + <brandName>Top Measure</brandName> + <productName>Top Measure Imported Beer</productName> <sku>70346650481</sku> <srp>1,1000000238</srp> - <gross_weight>11,8000001907</gross_weight> - <net_weight>9,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>17</shelf_width> - <shelf_height>8,8999996185</shelf_height> - <shelf_depth>11</shelf_depth> + <grossWeight>11,8000001907</grossWeight> + <netWeight>9,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>17</shelfWidth> + <shelfHeight>8,8999996185</shelfHeight> + <shelfDepth>11</shelfDepth> </Product> <Product> - <brand_name>Top Measure</brand_name> - <product_name>Top Measure Light Beer</product_name> + <brandName>Top Measure</brandName> + <productName>Top Measure Light Beer</productName> <sku>24886158108</sku> <srp>1,1399999857</srp> - <gross_weight>12,8000001907</gross_weight> - <net_weight>10,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>11,3999996185</shelf_width> - <shelf_height>12,3000001907</shelf_height> - <shelf_depth>10,6000003815</shelf_depth> + <grossWeight>12,8000001907</grossWeight> + <netWeight>10,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>11,3999996185</shelfWidth> + <shelfHeight>12,3000001907</shelfHeight> + <shelfDepth>10,6000003815</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Wine</product_subcategory> <product_category>Beer and Wine</product_category> <product_department>Alcoholic Beverages</product_department> - <product_family>Drink</product_family> + <productFamily>Drink</productFamily> <Product> - <brand_name>Good</brand_name> - <product_name>Good Light Wine</product_name> + <brandName>Good</brandName> + <productName>Good Light Wine</productName> <sku>79031686186</sku> <srp>0,8299999833</srp> - <gross_weight>6,9800000191</gross_weight> - <net_weight>4,9800000191</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>14,6000003815</shelf_width> - <shelf_height>13,3999996185</shelf_height> - <shelf_depth>12,1000003815</shelf_depth> + <grossWeight>6,9800000191</grossWeight> + <netWeight>4,9800000191</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>14,6000003815</shelfWidth> + <shelfHeight>13,3999996185</shelfHeight> + <shelfDepth>12,1000003815</shelfDepth> </Product> <Product> - <brand_name>Good</brand_name> - <product_name>Good Chardonnay Wine</product_name> + <brandName>Good</brandName> + <productName>Good Chardonnay Wine</productName> <sku>99771395325</sku> <srp>1,7300000191</srp> - <gross_weight>9,2600002289</gross_weight> - <net_weight>7,2600002289</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>6,0599999428</shelf_width> - <shelf_height>14,6999998093</shelf_height> - <shelf_depth>11,3999996185</shelf_depth> + <grossWeight>9,2600002289</grossWeight> + <netWeight>7,2600002289</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>6,0599999428</shelfWidth> + <shelfHeight>14,6999998093</shelfHeight> + <shelfDepth>11,3999996185</shelfDepth> </Product> <Product> - <brand_name>Good</brand_name> - <product_name>Good Chablis Wine</product_name> + <brandName>Good</brandName> + <productName>Good Chablis Wine</productName> <sku>63969365954</sku> <srp>2,8399999142</srp> - <gross_weight>10,5</gross_weight> - <net_weight>8,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>9,8800001144</shelf_width> - <shelf_height>22,2999992371</shelf_height> - <shelf_depth>21,3999996185</shelf_depth> + <grossWeight>10,5</grossWeight> + <netWeight>8,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>9,8800001144</shelfWidth> + <shelfHeight>22,2999992371</shelfHeight> + <shelfDepth>21,3999996185</shelfDepth> </Product> <Product> - <brand_name>Good</brand_name> - <product_name>Good Merlot Wine</product_name> + <brandName>Good</brandName> + <productName>Good Merlot Wine</productName> <sku>65163882374</sku> <srp>2,2400000095</srp> - <gross_weight>9,7100000381</gross_weight> - <net_weight>6,7100000381</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>4,1599998474</shelf_width> - <shelf_height>6,6999998093</shelf_height> - <shelf_depth>16,6000003815</shelf_depth> + <grossWeight>9,7100000381</grossWeight> + <netWeight>6,7100000381</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>4,1599998474</shelfWidth> + <shelfHeight>6,6999998093</shelfHeight> + <shelfDepth>16,6000003815</shelfDepth> </Product> <Product> - <brand_name>Good</brand_name> - <product_name>Good Chardonnay</product_name> + <brandName>Good</brandName> + <productName>Good Chardonnay</productName> <sku>88599619269</sku> <srp>2,3699998856</srp> - <gross_weight>12</gross_weight> - <net_weight>9</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>15,6000003815</shelf_width> - <shelf_height>7,9699997902</shelf_height> - <shelf_depth>15,8999996185</shelf_depth> + <grossWeight>12</grossWeight> + <netWeight>9</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>15,6000003815</shelfWidth> + <shelfHeight>7,9699997902</shelfHeight> + <shelfDepth>15,8999996185</shelfDepth> </Product> <Product> - <brand_name>Good</brand_name> - <product_name>Good White Zinfandel Wine</product_name> + <brandName>Good</brandName> + <productName>Good White Zinfandel Wine</productName> <sku>35129771828</sku> <srp>3,9100000858</srp> - <gross_weight>7,0700001717</gross_weight> - <net_weight>6,0700001717</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>8,6400003433</shelf_width> - <shelf_height>19,7999992371</shelf_height> - <shelf_depth>17,5</shelf_depth> + <grossWeight>7,0700001717</grossWeight> + <netWeight>6,0700001717</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>8,6400003433</shelfWidth> + <shelfHeight>19,7999992371</shelfHeight> + <shelfDepth>17,5</shelfDepth> </Product> <Product> - <brand_name>Pearl</brand_name> - <product_name>Pearl Light Wine</product_name> + <brandName>Pearl</brandName> + <productName>Pearl Light Wine</productName> <sku>23656676411</sku> <srp>0,5699999928</srp> - <gross_weight>9,8699998856</gross_weight> - <net_weight>6,8600001335</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>15,8999996185</shelf_width> - <shelf_height>11,6999998093</shelf_height> - <shelf_depth>5,8899998665</shelf_depth> + <grossWeight>9,8699998856</grossWeight> + <netWeight>6,8600001335</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>15,8999996185</shelfWidth> + <shelfHeight>11,6999998093</shelfHeight> + <shelfDepth>5,8899998665</shelfDepth> </Product> <Product> - <brand_name>Pearl</brand_name> - <product_name>Pearl Chardonnay Wine</product_name> + <brandName>Pearl</brandName> + <productName>Pearl Chardonnay Wine</productName> <sku>47092413306</sku> <srp>0,6499999762</srp> - <gross_weight>16,2000007629</gross_weight> - <net_weight>15,1999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>7,9499998093</shelf_width> - <shelf_height>10</shelf_height> - <shelf_depth>18,7999992371</shelf_depth> + <grossWeight>16,2000007629</grossWeight> + <netWeight>15,1999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>7,9499998093</shelfWidth> + <shelfHeight>10</shelfHeight> + <shelfDepth>18,7999992371</shelfDepth> </Product> <Product> - <brand_name>Pearl</brand_name> - <product_name>Pearl Chablis Wine</product_name> + <brandName>Pearl</brandName> + <productName>Pearl Chablis Wine</productName> <sku>83622565865</sku> <srp>2,6800000668</srp> - <gross_weight>10,6999998093</gross_weight> - <net_weight>8,6899995804</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>12</shelf_width> - <shelf_height>15,1999998093</shelf_height> - <shelf_depth>20,5</shelf_depth> + <grossWeight>10,6999998093</grossWeight> + <netWeight>8,6899995804</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>12</shelfWidth> + <shelfHeight>15,1999998093</shelfHeight> + <shelfDepth>20,5</shelfDepth> </Product> <Product> - <brand_name>Pearl</brand_name> - <product_name>Pearl Merlot Wine</product_name> + <brandName>Pearl</brandName> + <productName>Pearl Merlot Wine</productName> <sku>10198199152</sku> <srp>0,5400000215</srp> - <gross_weight>9,0100002289</gross_weight> - <net_weight>7,0100002289</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>21,5</shelf_width> - <shelf_height>8,4600000381</shelf_height> - <shelf_depth>6,0700001717</shelf_depth> + <grossWeight>9,0100002289</grossWeight> + <netWeight>7,0100002289</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>21,5</shelfWidth> + <shelfHeight>8,4600000381</shelfHeight> + <shelfDepth>6,0700001717</shelfDepth> </Product> <Product> - <brand_name>Pearl</brand_name> - <product_name>Pearl Chardonnay</product_name> + <brandName>Pearl</brandName> + <productName>Pearl Chardonnay</productName> <sku>94485405087</sku> <srp>1,7400000095</srp> - <gross_weight>15,3999996185</gross_weight> - <net_weight>12,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>13,3999996185</shelf_width> - <shelf_height>6,6799998283</shelf_height> - <shelf_depth>19</shelf_depth> + <grossWeight>15,3999996185</grossWeight> + <netWeight>12,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>13,3999996185</shelfWidth> + <shelfHeight>6,6799998283</shelfHeight> + <shelfDepth>19</shelfDepth> </Product> <Product> - <brand_name>Pearl</brand_name> - <product_name>Pearl White Zinfandel Wine</product_name> + <brandName>Pearl</brandName> + <productName>Pearl White Zinfandel Wine</productName> <sku>56396674513</sku> <srp>1,9199999571</srp> - <gross_weight>19,8999996185</gross_weight> - <net_weight>17,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>17,2999992371</shelf_width> - <shelf_height>13,6000003815</shelf_height> - <shelf_depth>12,6000003815</shelf_depth> + <grossWeight>19,8999996185</grossWeight> + <netWeight>17,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>17,2999992371</shelfWidth> + <shelfHeight>13,6000003815</shelfHeight> + <shelfDepth>12,6000003815</shelfDepth> </Product> <Product> - <brand_name>Walrus</brand_name> - <product_name>Walrus Light Wine</product_name> + <brandName>Walrus</brandName> + <productName>Walrus Light Wine</productName> <sku>30871132016</sku> <srp>2,2899999619</srp> - <gross_weight>9,3800001144</gross_weight> - <net_weight>8,3800001144</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>10,5</shelf_width> - <shelf_height>21,3999996185</shelf_height> - <shelf_depth>6,5</shelf_depth> + <grossWeight>9,3800001144</grossWeight> + <netWeight>8,3800001144</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>10,5</shelfWidth> + <shelfHeight>21,3999996185</shelfHeight> + <shelfDepth>6,5</shelfDepth> </Product> <Product> - <brand_name>Walrus</brand_name> - <product_name>Walrus Chardonnay Wine</product_name> + <brandName>Walrus</brandName> + <productName>Walrus Chardonnay Wine</productName> <sku>82782401442</sku> <srp>0,8299999833</srp> - <gross_weight>15,6999998093</gross_weight> - <net_weight>13,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>22,5</shelf_width> - <shelf_height>19,6000003815</shelf_height> - <shelf_depth>19,5</shelf_depth> + <grossWeight>15,6999998093</grossWeight> + <netWeight>13,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>22,5</shelfWidth> + <shelfHeight>19,6000003815</shelfHeight> + <shelfDepth>19,5</shelfDepth> </Product> <Product> - <brand_name>Walrus</brand_name> - <product_name>Walrus Chablis Wine</product_name> + <brandName>Walrus</brandName> + <productName>Walrus Chablis Wine</productName> <sku>21200867295</sku> <srp>2,4100000858</srp> - <gross_weight>19,8999996185</gross_weight> - <net_weight>17,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>21,3999996185</shelf_width> - <shelf_height>16,6000003815</shelf_height> - <shelf_depth>18,2000007629</shelf_depth> + <grossWeight>19,8999996185</grossWeight> + <netWeight>17,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>21,3999996185</shelfWidth> + <shelfHeight>16,6000003815</shelfHeight> + <shelfDepth>18,2000007629</shelfDepth> </Product> <Product> - <brand_name>Walrus</brand_name> - <product_name>Walrus Merlot Wine</product_name> + <brandName>Walrus</brandName> + <productName>Walrus Merlot Wine</productName> <sku>42349902987</sku> <srp>2,8399999142</srp> - <gross_weight>19,3999996185</gross_weight> - <net_weight>17,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>10,8000001907</shelf_width> - <shelf_height>9,9899997711</shelf_height> - <shelf_depth>3,2400000095</shelf_depth> + <grossWeight>19,3999996185</grossWeight> + <netWeight>17,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>10,8000001907</shelfWidth> + <shelfHeight>9,9899997711</shelfHeight> + <shelfDepth>3,2400000095</shelfDepth> </Product> <Product> - <brand_name>Walrus</brand_name> - <product_name>Walrus Chardonnay</product_name> + <brandName>Walrus</brandName> + <productName>Walrus Chardonnay</productName> <sku>76593354344</sku> <srp>3,7999999523</srp> - <gross_weight>9,8999996185</gross_weight> - <net_weight>6,8899998665</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>22,7000007629</shelf_width> - <shelf_height>8,2100000381</shelf_height> - <shelf_depth>16,2000007629</shelf_depth> + <grossWeight>9,8999996185</grossWeight> + <netWeight>6,8899998665</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>22,7000007629</shelfWidth> + <shelfHeight>8,2100000381</shelfHeight> + <shelfDepth>16,2000007629</shelfDepth> </Product> <Product> - <brand_name>Walrus</brand_name> - <product_name>Walrus White Zinfandel Wine</product_name> + <brandName>Walrus</brandName> + <productName>Walrus White Zinfandel Wine</productName> <sku>66980156302</sku> <srp>1,6100000143</srp> - <gross_weight>19,3999996185</gross_weight> - <net_weight>17,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>11,8999996185</shelf_width> - <shelf_height>3,3299999237</shelf_height> - <shelf_depth>13,1999998093</shelf_depth> + <grossWeight>19,3999996185</grossWeight> + <netWeight>17,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>11,8999996185</shelfWidth> + <shelfHeight>3,3299999237</shelfHeight> + <shelfDepth>13,1999998093</shelfDepth> </Product> <Product> - <brand_name>Portsmouth</brand_name> - <product_name>Portsmouth Light Wine</product_name> + <brandName>Portsmouth</brandName> + <productName>Portsmouth Light Wine</productName> <sku>88120834231</sku> <srp>2,5999999046</srp> - <gross_weight>19,2999992371</gross_weight> - <net_weight>17,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>9,2399997711</shelf_width> - <shelf_height>12,3999996185</shelf_height> - <shelf_depth>13,8999996185</shelf_depth> + <grossWeight>19,2999992371</grossWeight> + <netWeight>17,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>9,2399997711</shelfWidth> + <shelfHeight>12,3999996185</shelfHeight> + <shelfDepth>13,8999996185</shelfDepth> </Product> <Product> - <brand_name>Portsmouth</brand_name> - <product_name>Portsmouth Chardonnay Wine</product_name> + <brandName>Portsmouth</brandName> + <productName>Portsmouth Chardonnay Wine</productName> <sku>98462155461</sku> <srp>3,4300000668</srp> - <gross_weight>8,4099998474</gross_weight> - <net_weight>7,4000000954</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>14,3000001907</shelf_width> - <shelf_height>11,6000003815</shelf_height> - <shelf_depth>22,3999996185</shelf_depth> + <grossWeight>8,4099998474</grossWeight> + <netWeight>7,4000000954</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>14,3000001907</shelfWidth> + <shelfHeight>11,6000003815</shelfHeight> + <shelfDepth>22,3999996185</shelfDepth> </Product> <Product> - <brand_name>Portsmouth</brand_name> - <product_name>Portsmouth Chablis Wine</product_name> + <brandName>Portsmouth</brandName> + <productName>Portsmouth Chablis Wine</productName> <sku>88848957419</sku> <srp>1,8899999857</srp> - <gross_weight>21,2000007629</gross_weight> - <net_weight>18,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>17</shelf_width> - <shelf_height>5,9000000954</shelf_height> - <shelf_depth>3,3900001049</shelf_depth> + <grossWeight>21,2000007629</grossWeight> + <netWeight>18,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>17</shelfWidth> + <shelfHeight>5,9000000954</shelfHeight> + <shelfDepth>3,3900001049</shelfDepth> </Product> <Product> - <brand_name>Portsmouth</brand_name> - <product_name>Portsmouth Merlot Wine</product_name> + <brandName>Portsmouth</brandName> + <productName>Portsmouth Merlot Wine</productName> <sku>92330175042</sku> <srp>2,8699998856</srp> - <gross_weight>10,3000001907</gross_weight> - <net_weight>8,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>22,1000003815</shelf_width> - <shelf_height>5,1300001144</shelf_height> - <shelf_depth>11,8000001907</shelf_depth> + <grossWeight>10,3000001907</grossWeight> + <netWeight>8,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>22,1000003815</shelfWidth> + <shelfHeight>5,1300001144</shelfHeight> + <shelfDepth>11,8000001907</shelfDepth> </Product> <Product> - <brand_name>Portsmouth</brand_name> - <product_name>Portsmouth Chardonnay</product_name> + <brandName>Portsmouth</brandName> + <productName>Portsmouth Chardonnay</productName> <sku>51954743266</sku> <srp>2,7000000477</srp> - <gross_weight>13,1000003815</gross_weight> - <net_weight>11,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>14,1000003815</shelf_width> - <shelf_height>3,0899999142</shelf_height> - <shelf_depth>5,9600000381</shelf_depth> + <grossWeight>13,1000003815</grossWeight> + <netWeight>11,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>14,1000003815</shelfWidth> + <shelfHeight>3,0899999142</shelfHeight> + <shelfDepth>5,9600000381</shelfDepth> </Product> <Product> - <brand_name>Portsmouth</brand_name> - <product_name>Portsmouth White Zinfandel Wine</product_name> + <brandName>Portsmouth</brandName> + <productName>Portsmouth White Zinfandel Wine</productName> <sku>90771597027</sku> <srp>1,7000000477</srp> - <gross_weight>11,1999998093</gross_weight> - <net_weight>9,1899995804</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>16,7000007629</shelf_width> - <shelf_height>17,3999996185</shelf_height> - <shelf_depth>6,4200000763</shelf_depth> + <grossWeight>11,1999998093</grossWeight> + <netWeight>9,1899995804</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>16,7000007629</shelfWidth> + <shelfHeight>17,3999996185</shelfHeight> + <shelfDepth>6,4200000763</shelfDepth> </Product> <Product> - <brand_name>Top Measure</brand_name> - <product_name>Top Measure Light Wine</product_name> + <brandName>Top Measure</brandName> + <productName>Top Measure Light Wine</productName> <sku>78401270508</sku> <srp>3,3599998951</srp> - <gross_weight>10</gross_weight> - <net_weight>9</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>8,0100002289</shelf_width> - <shelf_height>13,1999998093</shelf_height> - <shelf_depth>16,6000003815</shelf_depth> + <grossWeight>10</grossWeight> + <netWeight>9</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>8,0100002289</shelfWidth> + <shelfHeight>13,1999998093</shelfHeight> + <shelfDepth>16,6000003815</shelfDepth> </Product> <Product> - <brand_name>Top Measure</brand_name> - <product_name>Top Measure Chardonnay Wine</product_name> + <brandName>Top Measure</brandName> + <productName>Top Measure Chardonnay Wine</productName> <sku>66501371264</sku> <srp>0,5799999833</srp> - <gross_weight>12,1999998093</gross_weight> - <net_weight>11,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>11</shelf_width> - <shelf_height>4,5599999428</shelf_height> - <shelf_depth>10,8000001907</shelf_depth> + <grossWeight>12,1999998093</grossWeight> + <netWeight>11,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>11</shelfWidth> + <shelfHeight>4,5599999428</shelfHeight> + <shelfDepth>10,8000001907</shelfDepth> </Product> <Product> - <brand_name>Top Measure</brand_name> - <product_name>Top Measure Chablis Wine</product_name> + <brandName>Top Measure</brandName> + <productName>Top Measure Chablis Wine</productName> <sku>43793757557</sku> <srp>3,5199999809</srp> - <gross_weight>10,3999996185</gross_weight> - <net_weight>7,3899998665</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>22</shelf_width> - <shelf_height>8,8800001144</shelf_height> - <shelf_depth>16,2999992371</shelf_depth> + <grossWeight>10,3999996185</grossWeight> + <netWeight>7,3899998665</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>22</shelfWidth> + <shelfHeight>8,8800001144</shelfHeight> + <shelfDepth>16,2999992371</shelfDepth> </Product> <Product> - <brand_name>Top Measure</brand_name> - <product_name>Top Measure Merlot Wine</product_name> + <brandName>Top Measure</brandName> + <productName>Top Measure Merlot Wine</productName> <sku>67229494452</sku> <srp>0,8100000024</srp> - <gross_weight>17,2999992371</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>14,5</shelf_width> - <shelf_height>3,7899999619</shelf_height> - <shelf_depth>4,2399997711</shelf_depth> + <grossWeight>17,2999992371</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>14,5</shelfWidth> + <shelfHeight>3,7899999619</shelfHeight> + <shelfDepth>4,2399997711</shelfDepth> </Product> <Product> - <brand_name>Top Measure</brand_name> - <product_name>Top Measure Chardonnay</product_name> + <brandName>Top Measure</brandName> + <productName>Top Measure Chardonnay</productName> <sku>92542605996</sku> <srp>2,3099999428</srp> - <gross_weight>7,3800001144</gross_weight> - <net_weight>4,3800001144</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>3,0099999905</shelf_width> - <shelf_height>3,0899999142</shelf_height> - <shelf_depth>22,2999992371</shelf_depth> + <grossWeight>7,3800001144</grossWeight> + <netWeight>4,3800001144</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>3,0099999905</shelfWidth> + <shelfHeight>3,0899999142</shelfHeight> + <shelfDepth>22,2999992371</shelfDepth> </Product> <Product> - <brand_name>Top Measure</brand_name> - <product_name>Top Measure White Zinfandel Wine</product_name> + <brandName>Top Measure</brandName> + <productName>Top Measure White Zinfandel Wine</productName> <sku>19118239283</sku> <srp>0,6999999881</srp> - <gross_weight>16,5</gross_weight> - <net_weight>13,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>8,6499996185</shelf_width> - <shelf_height>19,2000007629</shelf_height> - <shelf_depth>4,5199999809</shelf_depth> + <grossWeight>16,5</grossWeight> + <netWeight>13,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>8,6499996185</shelfWidth> + <shelfHeight>19,2000007629</shelfHeight> + <shelfDepth>4,5199999809</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Cookies</product_subcategory> <product_category>Snack Foods</product_category> <product_department>Snack Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Low Fat Cookies</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Low Fat Cookies</productName> <sku>19498726725</sku> <srp>0,6800000072</srp> - <gross_weight>16</gross_weight> - <net_weight>14</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>14,3999996185</shelf_width> - <shelf_height>10,5</shelf_height> - <shelf_depth>22,2999992371</shelf_depth> + <grossWeight>16</grossWeight> + <netWeight>14</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>14,3999996185</shelfWidth> + <shelfHeight>10,5</shelfHeight> + <shelfDepth>22,2999992371</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Sugar Cookies</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Sugar Cookies</productName> <sku>97234765887</sku> <srp>3,6600000858</srp> - <gross_weight>15,1999998093</gross_weight> - <net_weight>13,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>36</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>8,6000003815</shelf_width> - <shelf_height>10,5</shelf_height> - <shelf_depth>20</shelf_depth> + <grossWeight>15,1999998093</grossWeight> + <netWeight>13,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>36</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>8,6000003815</shelfWidth> + <shelfHeight>10,5</shelfHeight> + <shelfDepth>20</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Chocolate Chip Cookies</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Chocolate Chip Cookies</productName> <sku>74527152180</sku> <srp>3,9500000477</srp> - <gross_weight>15</gross_weight> - <net_weight>12</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>19,8999996185</shelf_width> - <shelf_height>16,2999992371</shelf_height> - <shelf_depth>21,8999996185</shelf_depth> + <grossWeight>15</grossWeight> + <netWeight>12</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>19,8999996185</shelfWidth> + <shelfHeight>16,2999992371</shelfHeight> + <shelfDepth>21,8999996185</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Fudge Cookies</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Fudge Cookies</productName> <sku>97962889075</sku> <srp>3,1900000572</srp> - <gross_weight>20,2999992371</gross_weight> - <net_weight>19,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>36</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>7,0199999809</shelf_width> - <shelf_height>12,5</shelf_height> - <shelf_depth>4,6700000763</shelf_depth> + <grossWeight>20,2999992371</grossWeight> + <netWeight>19,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>36</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>7,0199999809</shelfWidth> + <shelfHeight>12,5</shelfHeight> + <shelfDepth>4,6700000763</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Fudge Brownies</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Fudge Brownies</productName> <sku>33276000618</sku> <srp>1,7300000191</srp> - <gross_weight>8,2399997711</gross_weight> - <net_weight>6,2300000191</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>10,6000003815</shelf_width> - <shelf_height>14,1999998093</shelf_height> - <shelf_depth>10,1999998093</shelf_depth> + <grossWeight>8,2399997711</grossWeight> + <netWeight>6,2300000191</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>10,6000003815</shelfWidth> + <shelfHeight>14,1999998093</shelfHeight> + <shelfDepth>10,1999998093</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Lemon Cookies</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Lemon Cookies</productName> <sku>31717422604</sku> <srp>0,7599999905</srp> - <gross_weight>10,3999996185</gross_weight> - <net_weight>7,3899998665</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>18,1000003815</shelf_width> - <shelf_height>11,6000003815</shelf_height> - <shelf_depth>10,6999998093</shelf_depth> + <grossWeight>10,3999996185</grossWeight> + <netWeight>7,3899998665</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>18,1000003815</shelfWidth> + <shelfHeight>11,6000003815</shelfHeight> + <shelfDepth>10,6999998093</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Graham Crackers</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Graham Crackers</productName> <sku>83628692030</sku> <srp>1,9800000191</srp> - <gross_weight>15,6999998093</gross_weight> - <net_weight>14,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>5,6500000954</shelf_width> - <shelf_height>5,6199998856</shelf_height> - <shelf_depth>3,4900000095</shelf_depth> + <grossWeight>15,6999998093</grossWeight> + <netWeight>14,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>5,6500000954</shelfWidth> + <shelfHeight>5,6199998856</shelfHeight> + <shelfDepth>3,4900000095</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Frosted Cookies</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Frosted Cookies</productName> <sku>20716846585</sku> <srp>2,5899999142</srp> - <gross_weight>9,5100002289</gross_weight> - <net_weight>7,5100002289</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>10,1000003815</shelf_width> - <shelf_height>20,1000003815</shelf_height> - <shelf_depth>11,3999996185</shelf_depth> + <grossWeight>9,5100002289</grossWeight> + <netWeight>7,5100002289</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>10,1000003815</shelfWidth> + <shelfHeight>20,1000003815</shelfHeight> + <shelfDepth>11,3999996185</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Low Fat Cookies</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Low Fat Cookies</productName> <sku>40255913138</sku> <srp>0,6600000262</srp> - <gross_weight>14,3999996185</gross_weight> - <net_weight>11,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>20,6000003815</shelf_width> - <shelf_height>15,3000001907</shelf_height> - <shelf_depth>5,0700001717</shelf_depth> + <grossWeight>14,3999996185</grossWeight> + <netWeight>11,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>20,6000003815</shelfWidth> + <shelfHeight>15,3000001907</shelfHeight> + <shelfDepth>5,0700001717</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Sugar Cookies</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Sugar Cookies</productName> <sku>61040887236</sku> <srp>2,9400000572</srp> - <gross_weight>8,2399997711</gross_weight> - <net_weight>6,2300000191</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>14,3000001907</shelf_width> - <shelf_height>18,1000003815</shelf_height> - <shelf_depth>9,5600004196</shelf_depth> + <grossWeight>8,2399997711</grossWeight> + <netWeight>6,2300000191</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>14,3000001907</shelfWidth> + <shelfHeight>18,1000003815</shelfHeight> + <shelfDepth>9,5600004196</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Chocolate Chip Cookies</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Chocolate Chip Cookies</productName> <sku>69095507264</sku> <srp>3,3099999428</srp> - <gross_weight>17,1000003815</gross_weight> - <net_weight>14,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>11,3000001907</shelf_width> - <shelf_height>20,1000003815</shelf_height> - <shelf_depth>13,6000003815</shelf_depth> + <grossWeight>17,1000003815</grossWeight> + <netWeight>14,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>11,3000001907</shelfWidth> + <shelfHeight>20,1000003815</shelfHeight> + <shelfDepth>13,6000003815</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Fudge Cookies</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Fudge Cookies</productName> <sku>45978567004</sku> <srp>1,4199999571</srp> - <gross_weight>7,3099999428</gross_weight> - <net_weight>5,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>16,1000003815</shelf_width> - <shelf_height>19,7999992371</shelf_height> - <shelf_depth>5,9899997711</shelf_depth> + <grossWeight>7,3099999428</grossWeight> + <netWeight>5,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>16,1000003815</shelfWidth> + <shelfHeight>19,7999992371</shelfHeight> + <shelfDepth>5,9899997711</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Fudge Brownies</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Fudge Brownies</productName> <sku>23270953297</sku> <srp>1,7100000381</srp> - <gross_weight>16,2999992371</gross_weight> - <net_weight>13,1999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>11,8000001907</shelf_width> - <shelf_height>19,6000003815</shelf_height> - <shelf_depth>5,0700001717</shelf_depth> + <grossWeight>16,2999992371</grossWeight> + <netWeight>13,1999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>11,8000001907</shelfWidth> + <shelfHeight>19,6000003815</shelfHeight> + <shelfDepth>5,0700001717</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Lemon Cookies</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Lemon Cookies</productName> <sku>17138972878</sku> <srp>2,2599999905</srp> - <gross_weight>13,8999996185</gross_weight> - <net_weight>12,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>16,3999996185</shelf_width> - <shelf_height>14,3999996185</shelf_height> - <shelf_depth>7,0399999619</shelf_depth> + <grossWeight>13,8999996185</grossWeight> + <netWeight>12,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>16,3999996185</shelfWidth> + <shelfHeight>14,3999996185</shelfHeight> + <shelfDepth>7,0399999619</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Graham Crackers</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Graham Crackers</productName> <sku>99812476038</sku> <srp>1,6499999762</srp> - <gross_weight>8,3100004196</gross_weight> - <net_weight>6,3099999428</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>9,0200004578</shelf_width> - <shelf_height>7,6900000572</shelf_height> - <shelf_depth>8,1899995804</shelf_depth> + <grossWeight>8,3100004196</grossWeight> + <netWeight>6,3099999428</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>9,0200004578</shelfWidth> + <shelfHeight>7,6900000572</shelfHeight> + <shelfDepth>8,1899995804</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Frosted Cookies</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Frosted Cookies</productName> <sku>95874724984</sku> <srp>1,6299999952</srp> - <gross_weight>12,5</gross_weight> - <net_weight>10,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>6,4000000954</shelf_width> - <shelf_height>15,1999998093</shelf_height> - <shelf_depth>12,8999996185</shelf_depth> + <grossWeight>12,5</grossWeight> + <netWeight>10,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>6,4000000954</shelfWidth> + <shelfHeight>15,1999998093</shelfHeight> + <shelfDepth>12,8999996185</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Low Fat Cookies</product_name> + <brandName>Fast</brandName> + <productName>Fast Low Fat Cookies</productName> <sku>96937480568</sku> <srp>0,9599999785</srp> - <gross_weight>6,5900001526</gross_weight> - <net_weight>4,5900001526</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>16</shelf_width> - <shelf_height>9,1599998474</shelf_height> - <shelf_depth>7,4000000954</shelf_depth> + <grossWeight>6,5900001526</grossWeight> + <netWeight>4,5900001526</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>16</shelfWidth> + <shelfHeight>9,1599998474</shelfHeight> + <shelfDepth>7,4000000954</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Sugar Cookies</product_name> + <brandName>Fast</brandName> + <productName>Fast Sugar Cookies</productName> <sku>56197987198</sku> <srp>3,8699998856</srp> - <gross_weight>21,7000007629</gross_weight> - <net_weight>18,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>16,7999992371</shelf_width> - <shelf_height>9,9200000763</shelf_height> - <shelf_depth>20,6000003815</shelf_depth> + <grossWeight>21,7000007629</grossWeight> + <netWeight>18,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>16,7999992371</shelfWidth> + <shelfHeight>9,9200000763</shelfHeight> + <shelfDepth>20,6000003815</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Chocolate Chip Cookies</product_name> + <brandName>Fast</brandName> + <productName>Fast Chocolate Chip Cookies</productName> <sku>77347022891</sku> <srp>2,4200000763</srp> - <gross_weight>20,1000003815</gross_weight> - <net_weight>17,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>9,9499998093</shelf_width> - <shelf_height>20</shelf_height> - <shelf_depth>15,3999996185</shelf_depth> + <grossWeight>20,1000003815</grossWeight> + <netWeight>17,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>9,9499998093</shelfWidth> + <shelfHeight>20</shelfHeight> + <shelfDepth>15,3999996185</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Fudge Cookies</product_name> + <brandName>Fast</brandName> + <productName>Fast Fudge Cookies</productName> <sku>21590474247</sku> <srp>3,3800001144</srp> - <gross_weight>12,6000003815</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>4,6900000572</shelf_width> - <shelf_height>5,3899998665</shelf_height> - <shelf_depth>9,7100000381</shelf_depth> + <grossWeight>12,6000003815</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>4,6900000572</shelfWidth> + <shelfHeight>5,3899998665</shelfHeight> + <shelfDepth>9,7100000381</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Fudge Brownies</product_name> + <brandName>Fast</brandName> + <productName>Fast Fudge Brownies</productName> <sku>90496563315</sku> <srp>2,8399999142</srp> - <gross_weight>7,9200000763</gross_weight> - <net_weight>6,9200000763</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>21,5</shelf_width> - <shelf_height>3,0999999046</shelf_height> - <shelf_depth>15,5</shelf_depth> + <grossWeight>7,9200000763</grossWeight> + <netWeight>6,9200000763</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>21,5</shelfWidth> + <shelfHeight>3,0999999046</shelfHeight> + <shelfDepth>15,5</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Lemon Cookies</product_name> + <brandName>Fast</brandName> + <productName>Fast Lemon Cookies</productName> <sku>29700219035</sku> <srp>2,6500000954</srp> - <gross_weight>20,7000007629</gross_weight> - <net_weight>18,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>19,2999992371</shelf_width> - <shelf_height>8,9799995422</shelf_height> - <shelf_depth>22,7999992371</shelf_depth> + <grossWeight>20,7000007629</grossWeight> + <netWeight>18,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>19,2999992371</shelfWidth> + <shelfHeight>8,9799995422</shelfHeight> + <shelfDepth>22,7999992371</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Graham Crackers</product_name> + <brandName>Fast</brandName> + <productName>Fast Graham Crackers</productName> <sku>92419202923</sku> <srp>0,9300000072</srp> - <gross_weight>20,8999996185</gross_weight> - <net_weight>18,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>4,2899999619</shelf_width> - <shelf_height>12,6000003815</shelf_height> - <shelf_depth>14,5</shelf_depth> + <grossWeight>20,8999996185</grossWeight> + <netWeight>18,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>4,2899999619</shelfWidth> + <shelfHeight>12,6000003815</shelfHeight> + <shelfDepth>14,5</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Frosted Cookies</product_name> + <brandName>Fast</brandName> + <productName>Fast Frosted Cookies</productName> <sku>18699643015</sku> <srp>1,9099999666</srp> - <gross_weight>7,4099998474</gross_weight> - <net_weight>5,4000000954</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>17,2999992371</shelf_width> - <shelf_height>20,3999996185</shelf_height> - <shelf_depth>11,6999998093</shelf_depth> + <grossWeight>7,4099998474</grossWeight> + <netWeight>5,4000000954</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>17,2999992371</shelfWidth> + <shelfHeight>20,3999996185</shelfHeight> + <shelfDepth>11,6999998093</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Low Fat Cookies</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Low Fat Cookies</productName> <sku>11329383254</sku> <srp>1,8799999952</srp> - <gross_weight>16,1000003815</gross_weight> - <net_weight>15,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>21,3999996185</shelf_width> - <shelf_height>4,5599999428</shelf_height> - <shelf_depth>12,5</shelf_depth> + <grossWeight>16,1000003815</grossWeight> + <netWeight>15,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>21,3999996185</shelfWidth> + <shelfHeight>4,5599999428</shelfHeight> + <shelfDepth>12,5</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Sugar Cookies</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Sugar Cookies</productName> <sku>32114357352</sku> <srp>3,7799999714</srp> - <gross_weight>16,7000007629</gross_weight> - <net_weight>14,6999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>22,3999996185</shelf_width> - <shelf_height>3,5399999619</shelf_height> - <shelf_depth>14,6999998093</shelf_depth> + <grossWeight>16,7000007629</grossWeight> + <netWeight>14,6999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>22,3999996185</shelfWidth> + <shelfHeight>3,5399999619</shelfHeight> + <shelfDepth>14,6999998093</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Chocolate Chip Cookies</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Chocolate Chip Cookies</productName> <sku>90476403832</sku> <srp>2,7599999905</srp> - <gross_weight>11</gross_weight> - <net_weight>8</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>6,2399997711</shelf_width> - <shelf_height>4,5300002098</shelf_height> - <shelf_depth>3,4100000858</shelf_depth> + <grossWeight>11</grossWeight> + <netWeight>8</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>6,2399997711</shelfWidth> + <shelfHeight>4,5300002098</shelfHeight> + <shelfDepth>3,4100000858</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Fudge Cookies</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Fudge Cookies</productName> <sku>50100972056</sku> <srp>3,5899999142</srp> - <gross_weight>11,8000001907</gross_weight> - <net_weight>9,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>10,6000003815</shelf_width> - <shelf_height>7,0700001717</shelf_height> - <shelf_depth>22,5</shelf_depth> + <grossWeight>11,8000001907</grossWeight> + <netWeight>9,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>10,6000003815</shelfWidth> + <shelfHeight>7,0700001717</shelfHeight> + <shelfDepth>22,5</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Fudge Brownies</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Fudge Brownies</productName> <sku>22819955945</sku> <srp>1,5900000334</srp> - <gross_weight>6,1799998283</gross_weight> - <net_weight>4,1700000763</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>13,1000003815</shelf_width> - <shelf_height>5,8299999237</shelf_height> - <shelf_depth>6,2199997902</shelf_depth> + <grossWeight>6,1799998283</grossWeight> + <netWeight>4,1700000763</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>13,1000003815</shelfWidth> + <shelfHeight>5,8299999237</shelfHeight> + <shelfDepth>6,2199997902</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Lemon Cookies</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Lemon Cookies</productName> <sku>49736910462</sku> <srp>1,7100000381</srp> - <gross_weight>17,1000003815</gross_weight> - <net_weight>14,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>4,0500001907</shelf_width> - <shelf_height>22,7000007629</shelf_height> - <shelf_depth>19</shelf_depth> + <grossWeight>17,1000003815</grossWeight> + <netWeight>14,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>4,0500001907</shelfWidth> + <shelfHeight>22,7000007629</shelfHeight> + <shelfDepth>19</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Graham Crackers</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Graham Crackers</productName> <sku>13934881091</sku> <srp>2,8199999332</srp> - <gross_weight>18,2999992371</gross_weight> - <net_weight>15,1999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>10,8000001907</shelf_width> - <shelf_height>10,8000001907</shelf_height> - <shelf_depth>3,0499999523</shelf_depth> + <grossWeight>18,2999992371</grossWeight> + <netWeight>15,1999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>10,8000001907</shelfWidth> + <shelfHeight>10,8000001907</shelfHeight> + <shelfDepth>3,0499999523</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Frosted Cookies</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Frosted Cookies</productName> <sku>38472662568</sku> <srp>3,9000000954</srp> - <gross_weight>10,6000003815</gross_weight> - <net_weight>8,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>8,7100000381</shelf_width> - <shelf_height>15,3000001907</shelf_height> - <shelf_depth>21,3999996185</shelf_depth> + <grossWeight>10,6000003815</grossWeight> + <netWeight>8,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>8,7100000381</shelfWidth> + <shelfHeight>15,3000001907</shelfHeight> + <shelfDepth>21,3999996185</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Low Fat Cookies</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Low Fat Cookies</productName> <sku>62315633893</sku> <srp>1,7999999523</srp> - <gross_weight>11,6999998093</gross_weight> - <net_weight>8,6899995804</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>12,6000003815</shelf_width> - <shelf_height>16,5</shelf_height> - <shelf_depth>21,5</shelf_depth> + <grossWeight>11,6999998093</grossWeight> + <netWeight>8,6899995804</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>12,6000003815</shelfWidth> + <shelfHeight>16,5</shelfHeight> + <shelfDepth>21,5</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Sugar Cookies</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Sugar Cookies</productName> <sku>43408034443</sku> <srp>2,4100000858</srp> - <gross_weight>21,7999992371</gross_weight> - <net_weight>19,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>12,3999996185</shelf_width> - <shelf_height>22,7000007629</shelf_height> - <shelf_depth>10,8000001907</shelf_depth> + <grossWeight>21,7999992371</grossWeight> + <netWeight>19,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>12,3999996185</shelfWidth> + <shelfHeight>22,7000007629</shelfHeight> + <shelfDepth>10,8000001907</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Chocolate Chip Cookies</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Chocolate Chip Cookies</productName> <sku>90745901465</sku> <srp>1,5499999523</srp> - <gross_weight>18</gross_weight> - <net_weight>17</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>14,3999996185</shelf_width> - <shelf_height>9,4300003052</shelf_height> - <shelf_depth>16,3999996185</shelf_depth> + <grossWeight>18</grossWeight> + <netWeight>17</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>14,3999996185</shelfWidth> + <shelfHeight>9,4300003052</shelfHeight> + <shelfDepth>16,3999996185</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Fudge Cookies</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Fudge Cookies</productName> <sku>37276054024</sku> <srp>2,2000000477</srp> - <gross_weight>8,279999733</gross_weight> - <net_weight>6,2699999809</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>15,8000001907</shelf_width> - <shelf_height>4,5799999237</shelf_height> - <shelf_depth>21,3999996185</shelf_depth> + <grossWeight>8,279999733</grossWeight> + <netWeight>6,2699999809</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>15,8000001907</shelfWidth> + <shelfHeight>4,5799999237</shelfHeight> + <shelfDepth>21,3999996185</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Fudge Brownies</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Fudge Brownies</productName> <sku>29949557185</sku> <srp>2,3599998951</srp> - <gross_weight>6,6799998283</gross_weight> - <net_weight>4,6700000763</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>10,3999996185</shelf_width> - <shelf_height>5,8499999046</shelf_height> - <shelf_depth>16,2000007629</shelf_depth> + <grossWeight>6,6799998283</grossWeight> + <netWeight>4,6700000763</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>10,3999996185</shelfWidth> + <shelfHeight>5,8499999046</shelfHeight> + <shelfDepth>16,2000007629</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Lemon Cookies</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Lemon Cookies</productName> <sku>87628745436</sku> <srp>3,5599999428</srp> - <gross_weight>16,2000007629</gross_weight> - <net_weight>14,1999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>5,2600002289</shelf_width> - <shelf_height>9,3699998856</shelf_height> - <shelf_depth>4,4299998283</shelf_depth> + <grossWeight>16,2000007629</grossWeight> + <netWeight>14,1999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>5,2600002289</shelfWidth> + <shelfHeight>9,3699998856</shelfHeight> + <shelfDepth>4,4299998283</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Graham Crackers</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Graham Crackers</productName> <sku>93613129258</sku> <srp>2,2599999905</srp> - <gross_weight>8,7700004578</gross_weight> - <net_weight>7,7699999809</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>18,7000007629</shelf_width> - <shelf_height>12,3999996185</shelf_height> - <shelf_depth>13,6000003815</shelf_depth> + <grossWeight>8,7700004578</grossWeight> + <netWeight>7,7699999809</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>18,7000007629</shelfWidth> + <shelfHeight>12,3999996185</shelfHeight> + <shelfDepth>13,6000003815</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Frosted Cookies</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Frosted Cookies</productName> <sku>76628169417</sku> <srp>2,5799999237</srp> - <gross_weight>17,1000003815</gross_weight> - <net_weight>14,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>21,2999992371</shelf_width> - <shelf_height>12,8000001907</shelf_height> - <shelf_depth>19</shelf_depth> + <grossWeight>17,1000003815</grossWeight> + <netWeight>14,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>21,2999992371</shelfWidth> + <shelfHeight>12,8000001907</shelfHeight> + <shelfDepth>19</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Pretzels</product_subcategory> <product_category>Snack Foods</product_category> <product_department>Snack Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Salted Pretzels</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Salted Pretzels</productName> <sku>71217134594</sku> <srp>2,7000000477</srp> - <gross_weight>14,3999996185</gross_weight> - <net_weight>12,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>22,1000003815</shelf_width> - <shelf_height>17,5</shelf_height> - <shelf_depth>9,5</shelf_depth> + <grossWeight>14,3999996185</grossWeight> + <netWeight>12,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>22,1000003815</shelfWidth> + <shelfHeight>17,5</shelfHeight> + <shelfDepth>9,5</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Salted Pretzels</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Salted Pretzels</productName> <sku>32472882866</sku> <srp>2,3900001049</srp> - <gross_weight>15,5</gross_weight> - <net_weight>13,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>14,3000001907</shelf_width> - <shelf_height>17,6000003815</shelf_height> - <shelf_depth>17</shelf_depth> + <grossWeight>15,5</grossWeight> + <netWeight>13,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>14,3000001907</shelfWidth> + <shelfHeight>17,6000003815</shelfHeight> + <shelfDepth>17</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Salted Pretzels</product_name> + <brandName>Fast</brandName> + <productName>Fast Salted Pretzels</productName> <sku>78346735835</sku> <srp>1,4500000477</srp> - <gross_weight>19,1000003815</gross_weight> - <net_weight>16,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>18,2000007629</shelf_width> - <shelf_height>5,5799999237</shelf_height> - <shelf_depth>3,2699999809</shelf_depth> + <grossWeight>19,1000003815</grossWeight> + <netWeight>16,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>18,2000007629</shelfWidth> + <shelfHeight>5,5799999237</shelfHeight> + <shelfDepth>3,2699999809</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Salted Pretzels</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Salted Pretzels</productName> <sku>65334492325</sku> <srp>2,7699999809</srp> - <gross_weight>18,7000007629</gross_weight> - <net_weight>16,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>16,3999996185</shelf_width> - <shelf_height>18,3999996185</shelf_height> - <shelf_depth>3,4800000191</shelf_depth> + <grossWeight>18,7000007629</grossWeight> + <netWeight>16,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>16,3999996185</shelfWidth> + <shelfHeight>18,3999996185</shelfHeight> + <shelfDepth>3,4800000191</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Salted Pretzels</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Salted Pretzels</productName> <sku>70177392363</sku> <srp>2,1300001144</srp> - <gross_weight>11</gross_weight> - <net_weight>10</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>3,4600000381</shelf_width> - <shelf_height>10,1000003815</shelf_height> - <shelf_depth>6,0199999809</shelf_depth> + <grossWeight>11</grossWeight> + <netWeight>10</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>3,4600000381</shelfWidth> + <shelfHeight>10,1000003815</shelfHeight> + <shelfDepth>6,0199999809</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Candles</product_subcategory> <product_category>Candles</product_category> <product_department>Household</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Bees Wax Candles</product_name> + <brandName>Denny</brandName> + <productName>Denny Bees Wax Candles</productName> <sku>60309030413</sku> <srp>2,9500000477</srp> - <gross_weight>20,2000007629</gross_weight> - <net_weight>18,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>9,0399999619</shelf_width> - <shelf_height>22,2000007629</shelf_height> - <shelf_depth>20,5</shelf_depth> + <grossWeight>20,2000007629</grossWeight> + <netWeight>18,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>9,0399999619</shelfWidth> + <shelfHeight>22,2000007629</shelfHeight> + <shelfDepth>20,5</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Bees Wax Candles</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Bees Wax Candles</productName> <sku>47753610014</sku> <srp>1,8099999428</srp> - <gross_weight>8,0900001526</gross_weight> - <net_weight>5,0900001526</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>22,6000003815</shelf_width> - <shelf_height>3</shelf_height> - <shelf_depth>21,5</shelf_depth> + <grossWeight>8,0900001526</grossWeight> + <netWeight>5,0900001526</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>22,6000003815</shelfWidth> + <shelfHeight>3</shelfHeight> + <shelfDepth>21,5</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Bees Wax Candles</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Bees Wax Candles</productName> <sku>66812840104</sku> <srp>1,7400000095</srp> - <gross_weight>10,6000003815</gross_weight> - <net_weight>9,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>12,1000003815</shelf_width> - <shelf_height>12</shelf_height> - <shelf_depth>5,5799999237</shelf_depth> + <grossWeight>10,6000003815</grossWeight> + <netWeight>9,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>12,1000003815</shelfWidth> + <shelfHeight>12</shelfHeight> + <shelfDepth>5,5799999237</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Bees Wax Candles</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Bees Wax Candles</productName> <sku>58813194632</sku> <srp>1,5800000429</srp> - <gross_weight>9,8500003815</gross_weight> - <net_weight>7,8499999046</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>3,4000000954</shelf_width> - <shelf_height>12,1999998093</shelf_height> - <shelf_depth>8,970000267</shelf_depth> + <grossWeight>9,8500003815</grossWeight> + <netWeight>7,8499999046</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>3,4000000954</shelfWidth> + <shelfHeight>12,1999998093</shelfHeight> + <shelfDepth>8,970000267</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Bees Wax Candles</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Bees Wax Candles</productName> <sku>29329741597</sku> <srp>0,5600000024</srp> - <gross_weight>12,1999998093</gross_weight> - <net_weight>9,1899995804</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>36</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>13</shelf_width> - <shelf_height>12,6999998093</shelf_height> - <shelf_depth>20,3999996185</shelf_depth> + <grossWeight>12,1999998093</grossWeight> + <netWeight>9,1899995804</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>36</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>13</shelfWidth> + <shelfHeight>12,6999998093</shelfHeight> + <shelfDepth>20,3999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Sauces</product_subcategory> <product_category>Baking Goods</product_category> <product_department>Baking Goods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Super</brand_name> - <product_name>Super Tomato Sauce</product_name> + <brandName>Super</brandName> + <productName>Super Tomato Sauce</productName> <sku>26972820162</sku> <srp>1,6000000238</srp> - <gross_weight>10,6000003815</gross_weight> - <net_weight>8,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>9,8199996948</shelf_width> - <shelf_height>22,3999996185</shelf_height> - <shelf_depth>21,1000003815</shelf_depth> + <grossWeight>10,6000003815</grossWeight> + <netWeight>8,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>9,8199996948</shelfWidth> + <shelfHeight>22,3999996185</shelfHeight> + <shelfDepth>21,1000003815</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Tomato Sauce</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Tomato Sauce</productName> <sku>84819174408</sku> <srp>1,25</srp> - <gross_weight>9,4799995422</gross_weight> - <net_weight>6,4699997902</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>6,5999999046</shelf_width> - <shelf_height>5,7399997711</shelf_height> - <shelf_depth>16,7000007629</shelf_depth> + <grossWeight>9,4799995422</grossWeight> + <netWeight>6,4699997902</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>6,5999999046</shelfWidth> + <shelfHeight>5,7399997711</shelfHeight> + <shelfDepth>16,7000007629</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Tomato Sauce</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Tomato Sauce</productName> <sku>45760160088</sku> <srp>0,7300000191</srp> - <gross_weight>8,0900001526</gross_weight> - <net_weight>6,0900001526</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>3,8599998951</shelf_width> - <shelf_height>4,8400001526</shelf_height> - <shelf_depth>16,6000003815</shelf_depth> + <grossWeight>8,0900001526</grossWeight> + <netWeight>6,0900001526</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>3,8599998951</shelfWidth> + <shelfHeight>4,8400001526</shelfHeight> + <shelfDepth>16,6000003815</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Tomato Sauce</product_name> + <brandName>Plato</brandName> + <productName>Plato Tomato Sauce</productName> <sku>29154657721</sku> <srp>3,7100000381</srp> - <gross_weight>11,8000001907</gross_weight> - <net_weight>10,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>8,3500003815</shelf_width> - <shelf_height>17,5</shelf_height> - <shelf_depth>11,1000003815</shelf_depth> + <grossWeight>11,8000001907</grossWeight> + <netWeight>10,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>8,3500003815</shelfWidth> + <shelfHeight>17,5</shelfHeight> + <shelfDepth>11,1000003815</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Tomato Sauce</product_name> + <brandName>CDR</brandName> + <productName>CDR Tomato Sauce</productName> <sku>95931351780</sku> <srp>0,9499999881</srp> - <gross_weight>8,220000267</gross_weight> - <net_weight>6,2199997902</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>15,8000001907</shelf_width> - <shelf_height>6,2800002098</shelf_height> - <shelf_depth>7,4200000763</shelf_depth> + <grossWeight>8,220000267</grossWeight> + <netWeight>6,2199997902</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>15,8000001907</shelfWidth> + <shelfHeight>6,2800002098</shelfHeight> + <shelfDepth>7,4200000763</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Cooking Oil</product_subcategory> <product_category>Baking Goods</product_category> <product_department>Baking Goods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Super</brand_name> - <product_name>Super Sesame Oil</product_name> + <brandName>Super</brandName> + <productName>Super Sesame Oil</productName> <sku>90465192198</sku> <srp>2,7300000191</srp> - <gross_weight>17,5</gross_weight> - <net_weight>14,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>21,1000003815</shelf_width> - <shelf_height>13,1000003815</shelf_height> - <shelf_depth>18,3999996185</shelf_depth> + <grossWeight>17,5</grossWeight> + <netWeight>14,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>21,1000003815</shelfWidth> + <shelfHeight>13,1000003815</shelfHeight> + <shelfDepth>18,3999996185</shelfDepth> </Product> <Product> - <brand_name>Super</brand_name> - <product_name>Super Vegetable Oil</product_name> + <brandName>Super</brandName> + <productName>Super Vegetable Oil</productName> <sku>30818099379</sku> <srp>2,2200000286</srp> - <gross_weight>9,2399997711</gross_weight> - <net_weight>7,2300000191</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>9,3199996948</shelf_width> - <shelf_height>22,8999996185</shelf_height> - <shelf_depth>10,3000001907</shelf_depth> + <grossWeight>9,2399997711</grossWeight> + <netWeight>7,2300000191</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>9,3199996948</shelfWidth> + <shelfHeight>22,8999996185</shelfHeight> + <shelfDepth>10,3000001907</shelfDepth> </Product> <Product> - <brand_name>Super</brand_name> - <product_name>Super Corn Oil</product_name> + <brandName>Super</brandName> + <productName>Super Corn Oil</productName> <sku>95823784470</sku> <srp>1,8099999428</srp> - <gross_weight>7,6399998665</gross_weight> - <net_weight>5,6300001144</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>3,9000000954</shelf_width> - <shelf_height>4,1999998093</shelf_height> - <shelf_depth>5,2399997711</shelf_depth> + <grossWeight>7,6399998665</grossWeight> + <netWeight>5,6300001144</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>3,9000000954</shelfWidth> + <shelfHeight>4,1999998093</shelfHeight> + <shelfDepth>5,2399997711</shelfDepth> </Product> <Product> - <brand_name>Super</brand_name> - <product_name>Super Canola Oil</product_name> + <brandName>Super</brandName> + <productName>Super Canola Oil</productName> <sku>37314141392</sku> <srp>1,3200000525</srp> - <gross_weight>10,8999996185</gross_weight> - <net_weight>7,8899998665</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>13,3999996185</shelf_width> - <shelf_height>19,3999996185</shelf_height> - <shelf_depth>10,3999996185</shelf_depth> + <grossWeight>10,8999996185</grossWeight> + <netWeight>7,8899998665</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>13,3999996185</shelfWidth> + <shelfHeight>19,3999996185</shelfHeight> + <shelfDepth>10,3999996185</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Sesame Oil</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Sesame Oil</productName> <sku>42304638028</sku> <srp>0,5799999833</srp> - <gross_weight>7,2699999809</gross_weight> - <net_weight>4,2600002289</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>9,4799995422</shelf_width> - <shelf_height>22,3999996185</shelf_height> - <shelf_depth>9,4499998093</shelf_depth> + <grossWeight>7,2699999809</grossWeight> + <netWeight>4,2600002289</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>9,4799995422</shelfWidth> + <shelfHeight>22,3999996185</shelfHeight> + <shelfDepth>9,4499998093</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Vegetable Oil</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Vegetable Oil</productName> <sku>57902219891</sku> <srp>2,1400001049</srp> - <gross_weight>15,8999996185</gross_weight> - <net_weight>13,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>12,1000003815</shelf_width> - <shelf_height>20</shelf_height> - <shelf_depth>18,5</shelf_depth> + <grossWeight>15,8999996185</grossWeight> + <netWeight>13,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>12,1000003815</shelfWidth> + <shelfHeight>20</shelfHeight> + <shelfDepth>18,5</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Corn Oil</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Corn Oil</productName> <sku>76764554381</sku> <srp>1,2300000191</srp> - <gross_weight>16,5</gross_weight> - <net_weight>14,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>8,1000003815</shelf_width> - <shelf_height>8,1099996567</shelf_height> - <shelf_depth>15,1999998093</shelf_depth> + <grossWeight>16,5</grossWeight> + <netWeight>14,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>8,1000003815</shelfWidth> + <shelfHeight>8,1099996567</shelfHeight> + <shelfDepth>15,1999998093</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Canola Oil</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Canola Oil</productName> <sku>72919275164</sku> <srp>2,3599998951</srp> - <gross_weight>21,2000007629</gross_weight> - <net_weight>20,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>15,8999996185</shelf_width> - <shelf_height>3,4900000095</shelf_height> - <shelf_depth>4,9299998283</shelf_depth> + <grossWeight>21,2000007629</grossWeight> + <netWeight>20,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>15,8999996185</shelfWidth> + <shelfHeight>3,4900000095</shelfHeight> + <shelfDepth>4,9299998283</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Sesame Oil</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Sesame Oil</productName> <sku>12392428517</sku> <srp>1,8400000334</srp> - <gross_weight>15,3999996185</gross_weight> - <net_weight>14,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>6,9699997902</shelf_width> - <shelf_height>20</shelf_height> - <shelf_depth>16,2999992371</shelf_depth> + <grossWeight>15,3999996185</grossWeight> + <netWeight>14,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>6,9699997902</shelfWidth> + <shelfHeight>20</shelfHeight> + <shelfDepth>16,2999992371</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Vegetable Oil</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Vegetable Oil</productName> <sku>75794270634</sku> <srp>2,9700000286</srp> - <gross_weight>13,5</gross_weight> - <net_weight>11,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>17,7000007629</shelf_width> - <shelf_height>9,1199998856</shelf_height> - <shelf_depth>3,7200000286</shelf_depth> + <grossWeight>13,5</grossWeight> + <netWeight>11,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>17,7000007629</shelfWidth> + <shelfHeight>9,1199998856</shelfHeight> + <shelfDepth>3,7200000286</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Corn Oil</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Corn Oil</productName> <sku>66181072592</sku> <srp>1,5399999619</srp> - <gross_weight>15,5</gross_weight> - <net_weight>13,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>20,5</shelf_width> - <shelf_height>16,2000007629</shelf_height> - <shelf_depth>4,9499998093</shelf_depth> + <grossWeight>15,5</grossWeight> + <netWeight>13,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>20,5</shelfWidth> + <shelfHeight>16,2000007629</shelfHeight> + <shelfDepth>4,9499998093</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Canola Oil</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Canola Oil</productName> <sku>95384728312</sku> <srp>1,3500000238</srp> - <gross_weight>16,1000003815</gross_weight> - <net_weight>14,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>14,6999998093</shelf_width> - <shelf_height>13,3999996185</shelf_height> - <shelf_depth>6,0399999619</shelf_depth> + <grossWeight>16,1000003815</grossWeight> + <netWeight>14,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>14,6999998093</shelfWidth> + <shelfHeight>13,3999996185</shelfHeight> + <shelfDepth>6,0399999619</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Sesame Oil</product_name> + <brandName>Plato</brandName> + <productName>Plato Sesame Oil</productName> <sku>88073627352</sku> <srp>1,4900000095</srp> - <gross_weight>21,7000007629</gross_weight> - <net_weight>19,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>17,3999996185</shelf_width> - <shelf_height>11,8000001907</shelf_height> - <shelf_depth>17,3999996185</shelf_depth> + <grossWeight>21,7000007629</grossWeight> + <netWeight>19,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>17,3999996185</shelfWidth> + <shelfHeight>11,8000001907</shelfHeight> + <shelfDepth>17,3999996185</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Vegetable Oil</product_name> + <brandName>Plato</brandName> + <productName>Plato Vegetable Oil</productName> <sku>94524404406</sku> <srp>1,2999999523</srp> - <gross_weight>14,5</gross_weight> - <net_weight>12,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>7,25</shelf_width> - <shelf_height>21,6000003815</shelf_height> - <shelf_depth>4,0599999428</shelf_depth> + <grossWeight>14,5</grossWeight> + <netWeight>12,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>7,25</shelfWidth> + <shelfHeight>21,6000003815</shelfHeight> + <shelfDepth>4,0599999428</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Corn Oil</product_name> + <brandName>Plato</brandName> + <productName>Plato Corn Oil</productName> <sku>71816790699</sku> <srp>0,7699999809</srp> - <gross_weight>13,3999996185</gross_weight> - <net_weight>10,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>22,8999996185</shelf_width> - <shelf_height>6,3000001907</shelf_height> - <shelf_depth>18,7000007629</shelf_depth> + <grossWeight>13,3999996185</grossWeight> + <netWeight>10,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>22,8999996185</shelfWidth> + <shelfHeight>6,3000001907</shelfHeight> + <shelfDepth>18,7000007629</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Canola Oil</product_name> + <brandName>Plato</brandName> + <productName>Plato Canola Oil</productName> <sku>52999721169</sku> <srp>1,1299999952</srp> - <gross_weight>7,9499998093</gross_weight> - <net_weight>6,9400000572</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>11,1999998093</shelf_width> - <shelf_height>8,6999998093</shelf_height> - <shelf_depth>11,6999998093</shelf_depth> + <grossWeight>7,9499998093</grossWeight> + <netWeight>6,9400000572</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>11,1999998093</shelfWidth> + <shelfHeight>8,6999998093</shelfHeight> + <shelfDepth>11,6999998093</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Sesame Oil</product_name> + <brandName>CDR</brandName> + <productName>CDR Sesame Oil</productName> <sku>67400694489</sku> <srp>1,3899999857</srp> - <gross_weight>8,6999998093</gross_weight> - <net_weight>7,6900000572</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>4,6199998856</shelf_width> - <shelf_height>17,6000003815</shelf_height> - <shelf_depth>9,1999998093</shelf_depth> + <grossWeight>8,6999998093</grossWeight> + <netWeight>7,6900000572</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>4,6199998856</shelfWidth> + <shelfHeight>17,6000003815</shelfHeight> + <shelfDepth>9,1999998093</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Vegetable Oil</product_name> + <brandName>CDR</brandName> + <productName>CDR Vegetable Oil</productName> <sku>40538864731</sku> <srp>3,5199999809</srp> - <gross_weight>21,3999996185</gross_weight> - <net_weight>19,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>8,3599996567</shelf_width> - <shelf_height>18,7999992371</shelf_height> - <shelf_depth>17</shelf_depth> + <grossWeight>21,3999996185</grossWeight> + <netWeight>19,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>8,3599996567</shelfWidth> + <shelfHeight>18,7999992371</shelfHeight> + <shelfDepth>17</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Corn Oil</product_name> + <brandName>CDR</brandName> + <productName>CDR Corn Oil</productName> <sku>61687900424</sku> <srp>2,9500000477</srp> - <gross_weight>21,2000007629</gross_weight> - <net_weight>18,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>18,5</shelf_width> - <shelf_height>11,3000001907</shelf_height> - <shelf_depth>8,970000267</shelf_depth> + <grossWeight>21,2000007629</grossWeight> + <netWeight>18,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>18,5</shelfWidth> + <shelfHeight>11,3000001907</shelfHeight> + <shelfDepth>8,970000267</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Canola Oil</product_name> + <brandName>CDR</brandName> + <productName>CDR Canola Oil</productName> <sku>86318153738</sku> <srp>2,4800000191</srp> - <gross_weight>20,3999996185</gross_weight> - <net_weight>18,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>7,0700001717</shelf_width> - <shelf_height>22,8999996185</shelf_height> - <shelf_depth>15,5</shelf_depth> + <grossWeight>20,3999996185</grossWeight> + <netWeight>18,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>7,0700001717</shelfWidth> + <shelfHeight>22,8999996185</shelfHeight> + <shelfDepth>15,5</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Sugar</product_subcategory> <product_category>Baking Goods</product_category> <product_department>Baking Goods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Super</brand_name> - <product_name>Super Brown Sugar</product_name> + <brandName>Super</brandName> + <productName>Super Brown Sugar</productName> <sku>63912299275</sku> <srp>1,4199999571</srp> - <gross_weight>8,25</gross_weight> - <net_weight>7,25</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>20,1000003815</shelf_width> - <shelf_height>5,5700001717</shelf_height> - <shelf_depth>14,5</shelf_depth> + <grossWeight>8,25</grossWeight> + <netWeight>7,25</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>20,1000003815</shelfWidth> + <shelfHeight>5,5700001717</shelfHeight> + <shelfDepth>14,5</shelfDepth> </Product> <Product> - <brand_name>Super</brand_name> - <product_name>Super White Sugar</product_name> + <brandName>Super</brandName> + <productName>Super White Sugar</productName> <sku>10033125281</sku> <srp>1,5599999428</srp> - <gross_weight>11,6999998093</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>18,2999992371</shelf_width> - <shelf_height>14,8999996185</shelf_height> - <shelf_depth>17,7999992371</shelf_depth> + <grossWeight>11,6999998093</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>18,2999992371</shelfWidth> + <shelfHeight>14,8999996185</shelfHeight> + <shelfDepth>17,7999992371</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Brown Sugar</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Brown Sugar</productName> <sku>90370628237</sku> <srp>2,7999999523</srp> - <gross_weight>19,2999992371</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>20,2999992371</shelf_width> - <shelf_height>8,6099996567</shelf_height> - <shelf_depth>21,1000003815</shelf_depth> + <grossWeight>19,2999992371</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>20,2999992371</shelfWidth> + <shelfHeight>8,6099996567</shelfHeight> + <shelfDepth>21,1000003815</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide White Sugar</product_name> + <brandName>Landslide</brandName> + <productName>Landslide White Sugar</productName> <sku>65592778325</sku> <srp>1,5199999809</srp> - <gross_weight>10,3000001907</gross_weight> - <net_weight>9,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>8,1999998093</shelf_width> - <shelf_height>14,8999996185</shelf_height> - <shelf_depth>10,8000001907</shelf_depth> + <grossWeight>10,3000001907</grossWeight> + <netWeight>9,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>8,1999998093</shelfWidth> + <shelfHeight>14,8999996185</shelfHeight> + <shelfDepth>10,8000001907</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Brown Sugar</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Brown Sugar</productName> <sku>88933951258</sku> <srp>1,7799999714</srp> - <gross_weight>14,3000001907</gross_weight> - <net_weight>12,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>18,2999992371</shelf_width> - <shelf_height>3,0099999905</shelf_height> - <shelf_depth>22,2999992371</shelf_depth> + <grossWeight>14,3000001907</grossWeight> + <netWeight>12,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>18,2999992371</shelfWidth> + <shelfHeight>3,0099999905</shelfHeight> + <shelfDepth>22,2999992371</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best White Sugar</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best White Sugar</productName> <sku>94701870083</sku> <srp>2,4600000381</srp> - <gross_weight>6,7600002289</gross_weight> - <net_weight>3,7599999905</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>13</shelf_width> - <shelf_height>8,3199996948</shelf_height> - <shelf_depth>16,5</shelf_depth> + <grossWeight>6,7600002289</grossWeight> + <netWeight>3,7599999905</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>13</shelfWidth> + <shelfHeight>8,3199996948</shelfHeight> + <shelfDepth>16,5</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Brown Sugar</product_name> + <brandName>Plato</brandName> + <productName>Plato Brown Sugar</productName> <sku>81065927147</sku> <srp>1,2400000095</srp> - <gross_weight>10,1999998093</gross_weight> - <net_weight>8,1899995804</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>3,4800000191</shelf_width> - <shelf_height>11,8000001907</shelf_height> - <shelf_depth>14,1999998093</shelf_depth> + <grossWeight>10,1999998093</grossWeight> + <netWeight>8,1899995804</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>3,4800000191</shelfWidth> + <shelfHeight>11,8000001907</shelfHeight> + <shelfDepth>14,1999998093</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato White Sugar</product_name> + <brandName>Plato</brandName> + <productName>Plato White Sugar</productName> <sku>40690495371</sku> <srp>1,7200000286</srp> - <gross_weight>11,3999996185</gross_weight> - <net_weight>9,3900003433</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>22,8999996185</shelf_width> - <shelf_height>3,4100000858</shelf_height> - <shelf_depth>3,1300001144</shelf_depth> + <grossWeight>11,3999996185</grossWeight> + <netWeight>9,3900003433</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>22,8999996185</shelfWidth> + <shelfHeight>3,4100000858</shelfHeight> + <shelfDepth>3,1300001144</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Brown Sugar</product_name> + <brandName>CDR</brandName> + <productName>CDR Brown Sugar</productName> <sku>56228918433</sku> <srp>2,9200000763</srp> - <gross_weight>10,3000001907</gross_weight> - <net_weight>8,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>9,8599996567</shelf_width> - <shelf_height>7,4899997711</shelf_height> - <shelf_depth>19,2999992371</shelf_depth> + <grossWeight>10,3000001907</grossWeight> + <netWeight>8,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>9,8599996567</shelfWidth> + <shelfHeight>7,4899997711</shelfHeight> + <shelfDepth>19,2999992371</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR White Sugar</product_name> + <brandName>CDR</brandName> + <productName>CDR White Sugar</productName> <sku>92759070992</sku> <srp>1,3300000429</srp> - <gross_weight>6,4299998283</gross_weight> - <net_weight>4,4200000763</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>22,7999992371</shelf_width> - <shelf_height>13</shelf_height> - <shelf_depth>17,3999996185</shelf_depth> + <grossWeight>6,4299998283</grossWeight> + <netWeight>4,4200000763</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>22,7999992371</shelfWidth> + <shelfHeight>13</shelfHeight> + <shelfDepth>17,3999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Chocolate</product_subcategory> <product_category>Hot Beverages</product_category> <product_department>Beverages</product_department> - <product_family>Drink</product_family> + <productFamily>Drink</productFamily> <Product> - <brand_name>Super</brand_name> - <product_name>Super Hot Chocolate</product_name> + <brandName>Super</brandName> + <productName>Super Hot Chocolate</productName> <sku>86619912981</sku> <srp>1,8600000143</srp> - <gross_weight>9,8500003815</gross_weight> - <net_weight>7,8499999046</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>15,6000003815</shelf_width> - <shelf_height>18,7000007629</shelf_height> - <shelf_depth>17,1000003815</shelf_depth> + <grossWeight>9,8500003815</grossWeight> + <netWeight>7,8499999046</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>15,6000003815</shelfWidth> + <shelfHeight>18,7000007629</shelfHeight> + <shelfDepth>17,1000003815</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Hot Chocolate</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Hot Chocolate</productName> <sku>69221592545</sku> <srp>0,6399999857</srp> - <gross_weight>10,3999996185</gross_weight> - <net_weight>8,3900003433</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>21,3999996185</shelf_width> - <shelf_height>13,1999998093</shelf_height> - <shelf_depth>9,6999998093</shelf_depth> + <grossWeight>10,3999996185</grossWeight> + <netWeight>8,3900003433</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>21,3999996185</shelfWidth> + <shelfHeight>13,1999998093</shelfHeight> + <shelfDepth>9,6999998093</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Hot Chocolate</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Hot Chocolate</productName> <sku>72358317971</sku> <srp>2,6300001144</srp> - <gross_weight>14,5</gross_weight> - <net_weight>11,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>16,2000007629</shelf_width> - <shelf_height>7,1900000572</shelf_height> - <shelf_depth>22,7999992371</shelf_depth> + <grossWeight>14,5</grossWeight> + <netWeight>11,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>16,2000007629</shelfWidth> + <shelfHeight>7,1900000572</shelfHeight> + <shelfDepth>22,7999992371</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Hot Chocolate</product_name> + <brandName>Plato</brandName> + <productName>Plato Hot Chocolate</productName> <sku>77584709525</sku> <srp>0,5899999738</srp> - <gross_weight>17,2999992371</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>6,5199999809</shelf_width> - <shelf_height>9,8699998856</shelf_height> - <shelf_depth>10,1000003815</shelf_depth> + <grossWeight>17,2999992371</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>6,5199999809</shelfWidth> + <shelfHeight>9,8699998856</shelfHeight> + <shelfDepth>10,1000003815</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Hot Chocolate</product_name> + <brandName>CDR</brandName> + <productName>CDR Hot Chocolate</productName> <sku>32793181538</sku> <srp>2,7799999714</srp> - <gross_weight>8,7700004578</gross_weight> - <net_weight>7,7699999809</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>18,2000007629</shelf_width> - <shelf_height>18,2000007629</shelf_height> - <shelf_depth>15,3999996185</shelf_depth> + <grossWeight>8,7700004578</grossWeight> + <netWeight>7,7699999809</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>18,2000007629</shelfWidth> + <shelfHeight>18,2000007629</shelfHeight> + <shelfDepth>15,3999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Flavored Drinks</product_subcategory> <product_category>Drinks</product_category> <product_department>Beverages</product_department> - <product_family>Drink</product_family> + <productFamily>Drink</productFamily> <Product> - <brand_name>Excellent</brand_name> - <product_name>Excellent Mango Drink</product_name> + <brandName>Excellent</brandName> + <productName>Excellent Mango Drink</productName> <sku>11575867533</sku> <srp>2,8499999046</srp> - <gross_weight>7,1199998856</gross_weight> - <net_weight>5,1100001335</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>4,8899998665</shelf_width> - <shelf_height>3,7300000191</shelf_height> - <shelf_depth>10,3999996185</shelf_depth> + <grossWeight>7,1199998856</grossWeight> + <netWeight>5,1100001335</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>4,8899998665</shelfWidth> + <shelfHeight>3,7300000191</shelfHeight> + <shelfDepth>10,3999996185</shelfDepth> </Product> <Product> - <brand_name>Excellent</brand_name> - <product_name>Excellent Strawberry Drink</product_name> + <brandName>Excellent</brandName> + <productName>Excellent Strawberry Drink</productName> <sku>50392721295</sku> <srp>1,8500000238</srp> - <gross_weight>9,2600002289</gross_weight> - <net_weight>7,2600002289</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>16</shelf_width> - <shelf_height>5,25</shelf_height> - <shelf_depth>14,1000003815</shelf_depth> + <grossWeight>9,2600002289</grossWeight> + <netWeight>7,2600002289</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>16</shelfWidth> + <shelfHeight>5,25</shelfHeight> + <shelfDepth>14,1000003815</shelfDepth> </Product> <Product> - <brand_name>Excellent</brand_name> - <product_name>Excellent Apple Drink</product_name> + <brandName>Excellent</brandName> + <productName>Excellent Apple Drink</productName> <sku>35011604428</sku> <srp>2,9800000191</srp> - <gross_weight>12,8000001907</gross_weight> - <net_weight>10,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>14</shelf_width> - <shelf_height>21,2999992371</shelf_height> - <shelf_depth>4,8400001526</shelf_depth> + <grossWeight>12,8000001907</grossWeight> + <netWeight>10,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>14</shelfWidth> + <shelfHeight>21,2999992371</shelfHeight> + <shelfDepth>4,8400001526</shelfDepth> </Product> <Product> - <brand_name>Washington</brand_name> - <product_name>Washington Mango Drink</product_name> + <brandName>Washington</brandName> + <productName>Washington Mango Drink</productName> <sku>96516502499</sku> <srp>0,7400000095</srp> - <gross_weight>7,4200000763</gross_weight> - <net_weight>4,4200000763</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>13,3999996185</shelf_width> - <shelf_height>3,7100000381</shelf_height> - <shelf_depth>22,6000003815</shelf_depth> + <grossWeight>7,4200000763</grossWeight> + <netWeight>4,4200000763</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>13,3999996185</shelfWidth> + <shelfHeight>3,7100000381</shelfHeight> + <shelfDepth>22,6000003815</shelfDepth> </Product> <Product> - <brand_name>Washington</brand_name> - <product_name>Washington Strawberry Drink</product_name> + <brandName>Washington</brandName> + <productName>Washington Strawberry Drink</productName> <sku>58427771925</sku> <srp>0,8299999833</srp> - <gross_weight>13,1000003815</gross_weight> - <net_weight>11,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>14,3999996185</shelf_width> - <shelf_height>11</shelf_height> - <shelf_depth>7,7699999809</shelf_depth> + <grossWeight>13,1000003815</grossWeight> + <netWeight>11,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>14,3999996185</shelfWidth> + <shelfHeight>11</shelfHeight> + <shelfDepth>7,7699999809</shelfDepth> </Product> <Product> - <brand_name>Washington</brand_name> - <product_name>Washington Apple Drink</product_name> + <brandName>Washington</brandName> + <productName>Washington Apple Drink</productName> <sku>17074288725</sku> <srp>3,5099999905</srp> - <gross_weight>20</gross_weight> - <net_weight>19</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>19,3999996185</shelf_width> - <shelf_height>10,3000001907</shelf_height> - <shelf_depth>20,3999996185</shelf_depth> + <grossWeight>20</grossWeight> + <netWeight>19</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>19,3999996185</shelfWidth> + <shelfHeight>10,3000001907</shelfHeight> + <shelfDepth>20,3999996185</shelfDepth> </Product> <Product> - <brand_name>Token</brand_name> - <product_name>Token Mango Drink</product_name> + <brandName>Token</brandName> + <productName>Token Mango Drink</productName> <sku>33870120644</sku> <srp>2,4600000381</srp> - <gross_weight>20,3999996185</gross_weight> - <net_weight>18,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>11,5</shelf_width> - <shelf_height>8,9899997711</shelf_height> - <shelf_depth>14,8999996185</shelf_depth> + <grossWeight>20,3999996185</grossWeight> + <netWeight>18,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>11,5</shelfWidth> + <shelfHeight>8,9899997711</shelfHeight> + <shelfDepth>14,8999996185</shelfDepth> </Product> <Product> - <brand_name>Token</brand_name> - <product_name>Token Strawberry Drink</product_name> + <brandName>Token</brandName> + <productName>Token Strawberry Drink</productName> <sku>15326582789</sku> <srp>1,6100000143</srp> - <gross_weight>13,8000001907</gross_weight> - <net_weight>10,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>10,8999996185</shelf_width> - <shelf_height>16,5</shelf_height> - <shelf_depth>3,9000000954</shelf_depth> + <grossWeight>13,8000001907</grossWeight> + <netWeight>10,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>10,8999996185</shelfWidth> + <shelfHeight>16,5</shelfHeight> + <shelfDepth>3,9000000954</shelfDepth> </Product> <Product> - <brand_name>Token</brand_name> - <product_name>Token Apple Drink</product_name> + <brandName>Token</brandName> + <productName>Token Apple Drink</productName> <sku>32994400858</sku> <srp>0,7400000095</srp> - <gross_weight>15,6000003815</gross_weight> - <net_weight>13,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>20,2000007629</shelf_width> - <shelf_height>19,2999992371</shelf_height> - <shelf_depth>7,5500001907</shelf_depth> + <grossWeight>15,6000003815</grossWeight> + <netWeight>13,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>20,2000007629</shelfWidth> + <shelfHeight>19,2999992371</shelfHeight> + <shelfDepth>7,5500001907</shelfDepth> </Product> <Product> - <brand_name>Fabulous</brand_name> - <product_name>Fabulous Mango Drink</product_name> + <brandName>Fabulous</brandName> + <productName>Fabulous Mango Drink</productName> <sku>84811106324</sku> <srp>2,8399999142</srp> - <gross_weight>14,5</gross_weight> - <net_weight>12,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>21,3999996185</shelf_width> - <shelf_height>11,3999996185</shelf_height> - <shelf_depth>20,7999992371</shelf_depth> + <grossWeight>14,5</grossWeight> + <netWeight>12,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>21,3999996185</shelfWidth> + <shelfHeight>11,3999996185</shelfHeight> + <shelfDepth>20,7999992371</shelfDepth> </Product> <Product> - <brand_name>Fabulous</brand_name> - <product_name>Fabulous Strawberry Drink</product_name> + <brandName>Fabulous</brandName> + <productName>Fabulous Strawberry Drink</productName> <sku>49009076952</sku> <srp>3,9500000477</srp> - <gross_weight>18,2999992371</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>10,6000003815</shelf_width> - <shelf_height>20,6000003815</shelf_height> - <shelf_depth>11,8999996185</shelf_depth> + <grossWeight>18,2999992371</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>10,6000003815</shelfWidth> + <shelfHeight>20,6000003815</shelfHeight> + <shelfDepth>11,8999996185</shelfDepth> </Product> <Product> - <brand_name>Fabulous</brand_name> - <product_name>Fabulous Apple Drink</product_name> + <brandName>Fabulous</brandName> + <productName>Fabulous Apple Drink</productName> <sku>53991805911</sku> <srp>2,5099999905</srp> - <gross_weight>10,6000003815</gross_weight> - <net_weight>8,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>18,2000007629</shelf_width> - <shelf_height>13,6999998093</shelf_height> - <shelf_depth>8,6599998474</shelf_depth> + <grossWeight>10,6000003815</grossWeight> + <netWeight>8,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>18,2000007629</shelfWidth> + <shelfHeight>13,6999998093</shelfHeight> + <shelfDepth>8,6599998474</shelfDepth> </Product> <Product> - <brand_name>Skinner</brand_name> - <product_name>Skinner Mango Drink</product_name> + <brandName>Skinner</brandName> + <productName>Skinner Mango Drink</productName> <sku>92351836562</sku> <srp>3,5799999237</srp> - <gross_weight>11,3999996185</gross_weight> - <net_weight>8,3900003433</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>19,3999996185</shelf_width> - <shelf_height>22,3999996185</shelf_height> - <shelf_depth>14,3999996185</shelf_depth> + <grossWeight>11,3999996185</grossWeight> + <netWeight>8,3900003433</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>19,3999996185</shelfWidth> + <shelfHeight>22,3999996185</shelfHeight> + <shelfDepth>14,3999996185</shelfDepth> </Product> <Product> - <brand_name>Skinner</brand_name> - <product_name>Skinner Strawberry Drink</product_name> + <brandName>Skinner</brandName> + <productName>Skinner Strawberry Drink</productName> <sku>67357521653</sku> <srp>2,2799999714</srp> - <gross_weight>21,7999992371</gross_weight> - <net_weight>19,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>12,1999998093</shelf_width> - <shelf_height>4,5100002289</shelf_height> - <shelf_depth>10,5</shelf_depth> + <grossWeight>21,7999992371</grossWeight> + <netWeight>19,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>12,1999998093</shelfWidth> + <shelfHeight>4,5100002289</shelfHeight> + <shelfDepth>10,5</shelfDepth> </Product> <Product> - <brand_name>Skinner</brand_name> - <product_name>Skinner Apple Drink</product_name> + <brandName>Skinner</brandName> + <productName>Skinner Apple Drink</productName> <sku>17648249268</sku> <srp>0,6700000167</srp> - <gross_weight>7,1100001335</gross_weight> - <net_weight>5,1100001335</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>18,2999992371</shelf_width> - <shelf_height>21,5</shelf_height> - <shelf_depth>11,8999996185</shelf_depth> + <grossWeight>7,1100001335</grossWeight> + <netWeight>5,1100001335</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>18,2999992371</shelfWidth> + <shelfHeight>21,5</shelfHeight> + <shelfDepth>11,8999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Peanut Butter</product_subcategory> <product_category>Jams and Jellies</product_category> <product_department>Baking Goods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Super</brand_name> - <product_name>Super Chunky Peanut Butter</product_name> + <brandName>Super</brandName> + <productName>Super Chunky Peanut Butter</productName> <sku>32421942353</sku> <srp>0,9900000095</srp> - <gross_weight>7,7100000381</gross_weight> - <net_weight>5,7100000381</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>4,4499998093</shelf_width> - <shelf_height>17,2000007629</shelf_height> - <shelf_depth>13,3999996185</shelf_depth> + <grossWeight>7,7100000381</grossWeight> + <netWeight>5,7100000381</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>4,4499998093</shelfWidth> + <shelfHeight>17,2000007629</shelfHeight> + <shelfDepth>13,3999996185</shelfDepth> </Product> <Product> - <brand_name>Super</brand_name> - <product_name>Super Creamy Peanut Butter</product_name> + <brandName>Super</brandName> + <productName>Super Creamy Peanut Butter</productName> <sku>20608538985</sku> <srp>1,4800000191</srp> - <gross_weight>18,2000007629</gross_weight> - <net_weight>15,1999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>9,6700000763</shelf_width> - <shelf_height>16,2999992371</shelf_height> - <shelf_depth>7,6700000763</shelf_depth> + <grossWeight>18,2000007629</grossWeight> + <netWeight>15,1999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>9,6700000763</shelfWidth> + <shelfHeight>16,2999992371</shelfHeight> + <shelfDepth>7,6700000763</shelfDepth> </Product> <Product> - <brand_name>Super</brand_name> - <product_name>Super Extra Chunky Peanut Butter</product_name> + <brandName>Super</brandName> + <productName>Super Extra Chunky Peanut Butter</productName> <sku>16763259768</sku> <srp>3,6199998856</srp> - <gross_weight>18,7000007629</gross_weight> - <net_weight>17,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>5,9200000763</shelf_width> - <shelf_height>11,3999996185</shelf_height> - <shelf_depth>13,6999998093</shelf_depth> + <grossWeight>18,7000007629</grossWeight> + <netWeight>17,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>5,9200000763</shelfWidth> + <shelfHeight>11,3999996185</shelfHeight> + <shelfDepth>13,6999998093</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Chunky Peanut Butter</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Chunky Peanut Butter</productName> <sku>94215907454</sku> <srp>1,4199999571</srp> - <gross_weight>7,9499998093</gross_weight> - <net_weight>4,9400000572</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>15,5</shelf_width> - <shelf_height>4,9600000381</shelf_height> - <shelf_depth>3,6099998951</shelf_depth> + <grossWeight>7,9499998093</grossWeight> + <netWeight>4,9400000572</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>15,5</shelfWidth> + <shelfHeight>4,9600000381</shelfHeight> + <shelfDepth>3,6099998951</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Creamy Peanut Butter</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Creamy Peanut Butter</productName> <sku>71594789624</sku> <srp>1,3999999762</srp> - <gross_weight>7,2800002098</gross_weight> - <net_weight>6,2800002098</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>17,2000007629</shelf_width> - <shelf_height>21,1000003815</shelf_height> - <shelf_depth>12,1000003815</shelf_depth> + <grossWeight>7,2800002098</grossWeight> + <netWeight>6,2800002098</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>17,2000007629</shelfWidth> + <shelfHeight>21,1000003815</shelfHeight> + <shelfDepth>12,1000003815</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Extra Chunky Peanut Butter</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Extra Chunky Peanut Butter</productName> <sku>98511744141</sku> <srp>0,7300000191</srp> - <gross_weight>7,8000001907</gross_weight> - <net_weight>5,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>36</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>13,3000001907</shelf_width> - <shelf_height>7,3000001907</shelf_height> - <shelf_depth>3,2599999905</shelf_depth> + <grossWeight>7,8000001907</grossWeight> + <netWeight>5,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>36</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>13,3000001907</shelfWidth> + <shelfHeight>7,3000001907</shelfHeight> + <shelfDepth>3,2599999905</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Chunky Peanut Butter</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Chunky Peanut Butter</productName> <sku>35828165411</sku> <srp>1,9700000286</srp> - <gross_weight>6,9699997902</gross_weight> - <net_weight>3,9600000381</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>7,1799998283</shelf_width> - <shelf_height>17,5</shelf_height> - <shelf_depth>13,3000001907</shelf_depth> + <grossWeight>6,9699997902</grossWeight> + <netWeight>3,9600000381</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>7,1799998283</shelfWidth> + <shelfHeight>17,5</shelfHeight> + <shelfDepth>13,3000001907</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Creamy Peanut Butter</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Creamy Peanut Butter</productName> <sku>41682580113</sku> <srp>1,1000000238</srp> - <gross_weight>12,8000001907</gross_weight> - <net_weight>11,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>3,1400001049</shelf_width> - <shelf_height>7,7600002289</shelf_height> - <shelf_depth>9,4499998093</shelf_depth> + <grossWeight>12,8000001907</grossWeight> + <netWeight>11,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>3,1400001049</shelfWidth> + <shelfHeight>7,7600002289</shelfHeight> + <shelfDepth>9,4499998093</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Extra Chunky Peanut Butter</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Extra Chunky Peanut Butter</productName> <sku>35550599694</sku> <srp>2,7799999714</srp> - <gross_weight>6,4899997711</gross_weight> - <net_weight>5,4800000191</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>4,2899999619</shelf_width> - <shelf_height>3,4200000763</shelf_height> - <shelf_depth>17,6000003815</shelf_depth> + <grossWeight>6,4899997711</grossWeight> + <netWeight>5,4800000191</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>4,2899999619</shelfWidth> + <shelfHeight>3,4200000763</shelfHeight> + <shelfDepth>17,6000003815</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Chunky Peanut Butter</product_name> + <brandName>Plato</brandName> + <productName>Plato Chunky Peanut Butter</productName> <sku>32317078709</sku> <srp>2,4500000477</srp> - <gross_weight>12</gross_weight> - <net_weight>9</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>19</shelf_width> - <shelf_height>15,8999996185</shelf_height> - <shelf_depth>17,3999996185</shelf_depth> + <grossWeight>12</grossWeight> + <netWeight>9</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>19</shelfWidth> + <shelfHeight>15,8999996185</shelfHeight> + <shelfDepth>17,3999996185</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Creamy Peanut Butter</product_name> + <brandName>Plato</brandName> + <productName>Plato Creamy Peanut Butter</productName> <sku>15957910418</sku> <srp>2,3199999332</srp> - <gross_weight>18,2999992371</gross_weight> - <net_weight>17,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>5,4200000763</shelf_width> - <shelf_height>18,1000003815</shelf_height> - <shelf_depth>12,8999996185</shelf_depth> + <grossWeight>18,2999992371</grossWeight> + <netWeight>17,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>5,4200000763</shelfWidth> + <shelfHeight>18,1000003815</shelfHeight> + <shelfDepth>12,8999996185</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Extra Chunky Peanut Butter</product_name> + <brandName>Plato</brandName> + <productName>Plato Extra Chunky Peanut Butter</productName> <sku>16686033606</sku> <srp>1,6799999475</srp> - <gross_weight>19,2999992371</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>14,8999996185</shelf_width> - <shelf_height>13,1999998093</shelf_height> - <shelf_depth>18,7999992371</shelf_depth> + <grossWeight>19,2999992371</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>14,8999996185</shelfWidth> + <shelfHeight>13,1999998093</shelfHeight> + <shelfDepth>18,7999992371</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Chunky Peanut Butter</product_name> + <brandName>CDR</brandName> + <productName>CDR Chunky Peanut Butter</productName> <sku>31598665118</sku> <srp>2,5</srp> - <gross_weight>7,6300001144</gross_weight> - <net_weight>5,6300001144</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>20,1000003815</shelf_width> - <shelf_height>13,3999996185</shelf_height> - <shelf_depth>8,9300003052</shelf_depth> + <grossWeight>7,6300001144</grossWeight> + <netWeight>5,6300001144</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>20,1000003815</shelfWidth> + <shelfHeight>13,3999996185</shelfHeight> + <shelfDepth>8,9300003052</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Creamy Peanut Butter</product_name> + <brandName>CDR</brandName> + <productName>CDR Creamy Peanut Butter</productName> <sku>29538288712</sku> <srp>2,6500000954</srp> - <gross_weight>6,9400000572</gross_weight> - <net_weight>3,9400000572</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>11,1000003815</shelf_width> - <shelf_height>3,9800000191</shelf_height> - <shelf_depth>17,5</shelf_depth> + <grossWeight>6,9400000572</grossWeight> + <netWeight>3,9400000572</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>11,1000003815</shelfWidth> + <shelfHeight>3,9800000191</shelfHeight> + <shelfDepth>17,5</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Extra Chunky Peanut Butter</product_name> + <brandName>CDR</brandName> + <productName>CDR Extra Chunky Peanut Butter</productName> <sku>84930775761</sku> <srp>2,1600000858</srp> - <gross_weight>11,5</gross_weight> - <net_weight>9,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>7,3499999046</shelf_width> - <shelf_height>9,2899999619</shelf_height> - <shelf_depth>12,3999996185</shelf_depth> + <grossWeight>11,5</grossWeight> + <netWeight>9,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>7,3499999046</shelfWidth> + <shelfHeight>9,2899999619</shelfHeight> + <shelfDepth>12,3999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Popcorn</product_subcategory> <product_category>Snack Foods</product_category> <product_department>Snack Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Buttered Popcorn</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Buttered Popcorn</productName> <sku>79783412814</sku> <srp>2,2300000191</srp> - <gross_weight>13,6000003815</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>7,4800000191</shelf_width> - <shelf_height>7,1199998856</shelf_height> - <shelf_depth>20,3999996185</shelf_depth> + <grossWeight>13,6000003815</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>7,4800000191</shelfWidth> + <shelfHeight>7,1199998856</shelfHeight> + <shelfDepth>20,3999996185</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice No Salt Popcorn</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice No Salt Popcorn</productName> <sku>24026864171</sku> <srp>1,1900000572</srp> - <gross_weight>14,6999998093</gross_weight> - <net_weight>12,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>5,6399998665</shelf_width> - <shelf_height>11,8999996185</shelf_height> - <shelf_depth>6,9699997902</shelf_depth> + <grossWeight>14,6999998093</grossWeight> + <netWeight>12,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>5,6399998665</shelfWidth> + <shelfHeight>11,8999996185</shelfHeight> + <shelfDepth>6,9699997902</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Low Fat Popcorn</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Low Fat Popcorn</productName> <sku>14413666129</sku> <srp>2,6500000954</srp> - <gross_weight>10</gross_weight> - <net_weight>8</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>22,7999992371</shelf_width> - <shelf_height>7,4099998474</shelf_height> - <shelf_depth>22,7999992371</shelf_depth> + <grossWeight>10</grossWeight> + <netWeight>8</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>22,7999992371</shelfWidth> + <shelfHeight>7,4099998474</shelfHeight> + <shelfDepth>22,7999992371</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Buttered Popcorn</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Buttered Popcorn</productName> <sku>67491664290</sku> <srp>2,5099999905</srp> - <gross_weight>9,3100004196</gross_weight> - <net_weight>6,3099999428</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>6,9299998283</shelf_width> - <shelf_height>12,6999998093</shelf_height> - <shelf_depth>19,1000003815</shelf_depth> + <grossWeight>9,3100004196</grossWeight> + <netWeight>6,3099999428</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>6,9299998283</shelfWidth> + <shelfHeight>12,6999998093</shelfHeight> + <shelfDepth>19,1000003815</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel No Salt Popcorn</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel No Salt Popcorn</productName> <sku>42497349381</sku> <srp>0,6899999976</srp> - <gross_weight>8,6300001144</gross_weight> - <net_weight>6,6300001144</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>16</shelf_width> - <shelf_height>21,7999992371</shelf_height> - <shelf_depth>11,1999998093</shelf_depth> + <grossWeight>8,6300001144</grossWeight> + <netWeight>6,6300001144</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>16</shelfWidth> + <shelfHeight>21,7999992371</shelfHeight> + <shelfDepth>11,1999998093</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Low Fat Popcorn</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Low Fat Popcorn</productName> <sku>94361411929</sku> <srp>3,8800001144</srp> - <gross_weight>10,6000003815</gross_weight> - <net_weight>8,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>5,9000000954</shelf_width> - <shelf_height>12</shelf_height> - <shelf_depth>15,3999996185</shelf_depth> + <grossWeight>10,6000003815</grossWeight> + <netWeight>8,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>5,9000000954</shelfWidth> + <shelfHeight>12</shelfHeight> + <shelfDepth>15,3999996185</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Buttered Popcorn</product_name> + <brandName>Fast</brandName> + <productName>Fast Buttered Popcorn</productName> <sku>29336157441</sku> <srp>0,5099999905</srp> - <gross_weight>12,3000001907</gross_weight> - <net_weight>11,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>14,5</shelf_width> - <shelf_height>13,6999998093</shelf_height> - <shelf_depth>8,4799995422</shelf_depth> + <grossWeight>12,3000001907</grossWeight> + <netWeight>11,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>14,5</shelfWidth> + <shelfHeight>13,6999998093</shelfHeight> + <shelfDepth>8,4799995422</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast No Salt Popcorn</product_name> + <brandName>Fast</brandName> + <productName>Fast No Salt Popcorn</productName> <sku>83534128069</sku> <srp>1,8799999952</srp> - <gross_weight>13</gross_weight> - <net_weight>10</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>21,3999996185</shelf_width> - <shelf_height>20,7000007629</shelf_height> - <shelf_depth>17,6000003815</shelf_depth> + <grossWeight>13</grossWeight> + <netWeight>10</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>21,3999996185</shelfWidth> + <shelfHeight>20,7000007629</shelfHeight> + <shelfDepth>17,6000003815</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Low Fat Popcorn</product_name> + <brandName>Fast</brandName> + <productName>Fast Low Fat Popcorn</productName> <sku>60826514363</sku> <srp>1,5099999905</srp> - <gross_weight>6,8400001526</gross_weight> - <net_weight>3,8399999142</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>3,0699999332</shelf_width> - <shelf_height>5,0300002098</shelf_height> - <shelf_depth>16,3999996185</shelf_depth> + <grossWeight>6,8400001526</grossWeight> + <netWeight>3,8399999142</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>3,0699999332</shelfWidth> + <shelfHeight>5,0300002098</shelfHeight> + <shelfDepth>16,3999996185</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Buttered Popcorn</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Buttered Popcorn</productName> <sku>38565134406</sku> <srp>2,3499999046</srp> - <gross_weight>17,7999992371</gross_weight> - <net_weight>15,6999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>15</shelf_width> - <shelf_height>18,1000003815</shelf_height> - <shelf_depth>4,3400001526</shelf_depth> + <grossWeight>17,7999992371</grossWeight> + <netWeight>15,6999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>15</shelfWidth> + <shelfHeight>18,1000003815</shelfHeight> + <shelfDepth>4,3400001526</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio No Salt Popcorn</product_name> + <brandName>Horatio</brandName> + <productName>Horatio No Salt Popcorn</productName> <sku>75095286965</sku> <srp>3,8199999332</srp> - <gross_weight>18,5</gross_weight> - <net_weight>16,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>10,8999996185</shelf_width> - <shelf_height>6,2100000381</shelf_height> - <shelf_depth>21</shelf_depth> + <grossWeight>18,5</grossWeight> + <netWeight>16,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>10,8999996185</shelfWidth> + <shelfHeight>6,2100000381</shelfHeight> + <shelfDepth>21</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Low Fat Popcorn</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Low Fat Popcorn</productName> <sku>32649618983</sku> <srp>2,9800000191</srp> - <gross_weight>15,1000003815</gross_weight> - <net_weight>13,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>14,8000001907</shelf_width> - <shelf_height>11,6999998093</shelf_height> - <shelf_depth>6,4400000572</shelf_depth> + <grossWeight>15,1000003815</grossWeight> + <netWeight>13,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>14,8000001907</shelfWidth> + <shelfHeight>11,6999998093</shelfHeight> + <shelfDepth>6,4400000572</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Buttered Popcorn</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Buttered Popcorn</productName> <sku>59005616307</sku> <srp>2,6600000858</srp> - <gross_weight>9,3100004196</gross_weight> - <net_weight>7,3099999428</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>14,3999996185</shelf_width> - <shelf_height>20,7999992371</shelf_height> - <shelf_depth>14,6999998093</shelf_depth> + <grossWeight>9,3100004196</grossWeight> + <netWeight>7,3099999428</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>14,3999996185</shelfWidth> + <shelfHeight>20,7999992371</shelfHeight> + <shelfDepth>14,6999998093</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West No Salt Popcorn</product_name> + <brandName>Fort West</brandName> + <productName>Fort West No Salt Popcorn</productName> <sku>49392418265</sku> <srp>1,4600000381</srp> - <gross_weight>18,2999992371</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>19,8999996185</shelf_width> - <shelf_height>6,1500000954</shelf_height> - <shelf_depth>16,2999992371</shelf_depth> + <grossWeight>18,2999992371</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>19,8999996185</shelfWidth> + <shelfHeight>6,1500000954</shelfHeight> + <shelfDepth>16,2999992371</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Low Fat Popcorn</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Low Fat Popcorn</productName> <sku>52873635888</sku> <srp>1,4400000572</srp> - <gross_weight>21,2000007629</gross_weight> - <net_weight>19,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>18,7999992371</shelf_width> - <shelf_height>16,7000007629</shelf_height> - <shelf_depth>12,1000003815</shelf_depth> + <grossWeight>21,2000007629</grossWeight> + <netWeight>19,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>18,7999992371</shelfWidth> + <shelfHeight>16,7000007629</shelfHeight> + <shelfDepth>12,1000003815</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Paper Dishes</product_subcategory> <product_category>Paper Products</product_category> <product_department>Household</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Paper Plates</product_name> + <brandName>Denny</brandName> + <productName>Denny Paper Plates</productName> <sku>21742104887</sku> <srp>1,7899999619</srp> - <gross_weight>21,1000003815</gross_weight> - <net_weight>19,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>18,5</shelf_width> - <shelf_height>4,8499999046</shelf_height> - <shelf_depth>19,7000007629</shelf_depth> + <grossWeight>21,1000003815</grossWeight> + <netWeight>19,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>18,5</shelfWidth> + <shelfHeight>4,8499999046</shelfHeight> + <shelfDepth>19,7000007629</shelfDepth> </Product> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Paper Cups</product_name> + <brandName>Denny</brandName> + <productName>Denny Paper Cups</productName> <sku>53698855042</sku> <srp>1,8200000525</srp> - <gross_weight>6,0300002098</gross_weight> - <net_weight>4,0300002098</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>3,1400001049</shelf_width> - <shelf_height>7,1300001144</shelf_height> - <shelf_depth>14,5</shelf_depth> + <grossWeight>6,0300002098</grossWeight> + <netWeight>4,0300002098</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>3,1400001049</shelfWidth> + <shelfHeight>7,1300001144</shelfHeight> + <shelfDepth>14,5</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Paper Plates</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Paper Plates</productName> <sku>46651565432</sku> <srp>3,6800000668</srp> - <gross_weight>19,8999996185</gross_weight> - <net_weight>17,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>5,5900001526</shelf_width> - <shelf_height>18,7000007629</shelf_height> - <shelf_depth>10,5</shelf_depth> + <grossWeight>19,8999996185</grossWeight> + <netWeight>17,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>5,5900001526</shelfWidth> + <shelfHeight>18,7000007629</shelfHeight> + <shelfDepth>10,5</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Paper Cups</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Paper Cups</productName> <sku>56992886662</sku> <srp>1,6399999857</srp> - <gross_weight>7,6300001144</gross_weight> - <net_weight>4,6300001144</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>3,8800001144</shelf_width> - <shelf_height>18,8999996185</shelf_height> - <shelf_depth>14,3000001907</shelf_depth> + <grossWeight>7,6300001144</grossWeight> + <netWeight>4,6300001144</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>3,8800001144</shelfWidth> + <shelfHeight>18,8999996185</shelfHeight> + <shelfDepth>14,3000001907</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Paper Plates</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Paper Plates</productName> <sku>90283982157</sku> <srp>1,7000000477</srp> - <gross_weight>18,1000003815</gross_weight> - <net_weight>16,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>12,6000003815</shelf_width> - <shelf_height>13,8000001907</shelf_height> - <shelf_depth>6,5300002098</shelf_depth> + <grossWeight>18,1000003815</grossWeight> + <netWeight>16,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>12,6000003815</shelfWidth> + <shelfHeight>13,8000001907</shelfHeight> + <shelfDepth>6,5300002098</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Paper Cups</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Paper Cups</productName> <sku>63002966046</sku> <srp>3,7000000477</srp> - <gross_weight>21,7999992371</gross_weight> - <net_weight>18,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>36</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>10,8999996185</shelf_width> - <shelf_height>14</shelf_height> - <shelf_depth>10,3000001907</shelf_depth> + <grossWeight>21,7999992371</grossWeight> + <netWeight>18,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>36</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>10,8999996185</shelfWidth> + <shelfHeight>14</shelfHeight> + <shelfDepth>10,3000001907</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Paper Plates</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Paper Plates</productName> <sku>26203315854</sku> <srp>3,3699998856</srp> - <gross_weight>18,8999996185</gross_weight> - <net_weight>17,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>10,1999998093</shelf_width> - <shelf_height>3,5599999428</shelf_height> - <shelf_depth>13,1999998093</shelf_depth> + <grossWeight>18,8999996185</grossWeight> + <netWeight>17,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>10,1999998093</shelfWidth> + <shelfHeight>3,5599999428</shelfHeight> + <shelfDepth>13,1999998093</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Paper Cups</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Paper Cups</productName> <sku>78114585280</sku> <srp>1,7799999714</srp> - <gross_weight>13,3999996185</gross_weight> - <net_weight>11,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>22,7000007629</shelf_width> - <shelf_height>18,7000007629</shelf_height> - <shelf_depth>19,8999996185</shelf_depth> + <grossWeight>13,3999996185</grossWeight> + <netWeight>11,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>22,7000007629</shelfWidth> + <shelfHeight>18,7000007629</shelfHeight> + <shelfDepth>19,8999996185</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Paper Plates</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Paper Plates</productName> <sku>20057001709</sku> <srp>1,75</srp> - <gross_weight>13,1999998093</gross_weight> - <net_weight>11,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>6,5900001526</shelf_width> - <shelf_height>11,6000003815</shelf_height> - <shelf_depth>5,2399997711</shelf_depth> + <grossWeight>13,1999998093</grossWeight> + <netWeight>11,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>6,5900001526</shelfWidth> + <shelfHeight>11,6000003815</shelfHeight> + <shelfDepth>5,2399997711</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Paper Cups</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Paper Cups</productName> <sku>63037931323</sku> <srp>2,6300001144</srp> - <gross_weight>13,6000003815</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>9,9200000763</shelf_width> - <shelf_height>21,6000003815</shelf_height> - <shelf_depth>5,1100001335</shelf_depth> + <grossWeight>13,6000003815</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>9,9200000763</shelfWidth> + <shelfHeight>21,6000003815</shelfHeight> + <shelfDepth>5,1100001335</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Plastic Utensils</product_subcategory> <product_category>Plastic Products</product_category> <product_department>Household</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Plastic Forks</product_name> + <brandName>Denny</brandName> + <productName>Denny Plastic Forks</productName> <sku>90229007601</sku> <srp>0,6999999881</srp> - <gross_weight>14</gross_weight> - <net_weight>12</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>16,7000007629</shelf_width> - <shelf_height>15,3999996185</shelf_height> - <shelf_depth>12</shelf_depth> + <grossWeight>14</grossWeight> + <netWeight>12</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>16,7000007629</shelfWidth> + <shelfHeight>15,3999996185</shelfHeight> + <shelfDepth>12</shelfDepth> </Product> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Plastic Spoons</product_name> + <brandName>Denny</brandName> + <productName>Denny Plastic Spoons</productName> <sku>34472458958</sku> <srp>2,4300000668</srp> - <gross_weight>6,8299999237</gross_weight> - <net_weight>4,8200001717</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>18,7999992371</shelf_width> - <shelf_height>12,6000003815</shelf_height> - <shelf_depth>19,2999992371</shelf_depth> + <grossWeight>6,8299999237</grossWeight> + <netWeight>4,8200001717</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>18,7999992371</shelfWidth> + <shelfHeight>12,6000003815</shelfHeight> + <shelfDepth>19,2999992371</shelfDepth> </Product> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Plastic Knives</product_name> + <brandName>Denny</brandName> + <productName>Denny Plastic Knives</productName> <sku>24859260916</sku> <srp>3,8900001049</srp> - <gross_weight>7,7399997711</gross_weight> - <net_weight>4,7300000191</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>3,5099999905</shelf_width> - <shelf_height>14,8999996185</shelf_height> - <shelf_depth>14</shelf_depth> + <grossWeight>7,7399997711</grossWeight> + <netWeight>4,7300000191</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>3,5099999905</shelfWidth> + <shelfHeight>14,8999996185</shelfHeight> + <shelfDepth>14</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Plastic Forks</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Plastic Forks</productName> <sku>40928911566</sku> <srp>2,6400001049</srp> - <gross_weight>18,3999996185</gross_weight> - <net_weight>16,2999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>22</shelf_width> - <shelf_height>19,7000007629</shelf_height> - <shelf_depth>15,8999996185</shelf_depth> + <grossWeight>18,3999996185</grossWeight> + <netWeight>16,2999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>22</shelfWidth> + <shelfHeight>19,7000007629</shelfHeight> + <shelfDepth>15,8999996185</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Plastic Spoons</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Plastic Spoons</productName> <sku>77459064126</sku> <srp>1,9500000477</srp> - <gross_weight>20,2000007629</gross_weight> - <net_weight>18,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>12,1999998093</shelf_width> - <shelf_height>8,75</shelf_height> - <shelf_depth>20,2999992371</shelf_depth> + <grossWeight>20,2000007629</grossWeight> + <netWeight>18,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>12,1999998093</shelfWidth> + <shelfHeight>8,75</shelfHeight> + <shelfDepth>20,2999992371</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Plastic Knives</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Plastic Knives</productName> <sku>58915526270</sku> <srp>3,4500000477</srp> - <gross_weight>7,8600001335</gross_weight> - <net_weight>5,8600001335</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>10,5</shelf_width> - <shelf_height>9,0100002289</shelf_height> - <shelf_depth>4,2300000191</shelf_depth> + <grossWeight>7,8600001335</grossWeight> + <netWeight>5,8600001335</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>10,5</shelfWidth> + <shelfHeight>9,0100002289</shelfHeight> + <shelfDepth>4,2300000191</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Plastic Forks</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Plastic Forks</productName> <sku>75414523482</sku> <srp>2,9800000191</srp> - <gross_weight>15,6000003815</gross_weight> - <net_weight>13,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>14,1000003815</shelf_width> - <shelf_height>4,7199997902</shelf_height> - <shelf_depth>7,3600001335</shelf_depth> + <grossWeight>15,6000003815</grossWeight> + <netWeight>13,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>14,1000003815</shelfWidth> + <shelfHeight>4,7199997902</shelfHeight> + <shelfDepth>7,3600001335</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Plastic Spoons</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Plastic Spoons</productName> <sku>15301037430</sku> <srp>2,6800000668</srp> - <gross_weight>17,1000003815</gross_weight> - <net_weight>16,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>19,2999992371</shelf_width> - <shelf_height>3,7000000477</shelf_height> - <shelf_depth>16,8999996185</shelf_depth> + <grossWeight>17,1000003815</grossWeight> + <netWeight>16,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>19,2999992371</shelfWidth> + <shelfHeight>3,7000000477</shelfHeight> + <shelfDepth>16,8999996185</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Plastic Knives</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Plastic Knives</productName> <sku>36450073122</sku> <srp>1,4700000286</srp> - <gross_weight>20,7000007629</gross_weight> - <net_weight>18,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>17,6000003815</shelf_width> - <shelf_height>3,9500000477</shelf_height> - <shelf_depth>20,7000007629</shelf_depth> + <grossWeight>20,7000007629</grossWeight> + <netWeight>18,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>17,6000003815</shelfWidth> + <shelfHeight>3,9500000477</shelfHeight> + <shelfDepth>20,7000007629</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Plastic Forks</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Plastic Forks</productName> <sku>13620558381</sku> <srp>2,5899999142</srp> - <gross_weight>20,1000003815</gross_weight> - <net_weight>18,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>20,3999996185</shelf_width> - <shelf_height>22,5</shelf_height> - <shelf_depth>7,8000001907</shelf_depth> + <grossWeight>20,1000003815</grossWeight> + <netWeight>18,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>20,3999996185</shelfWidth> + <shelfHeight>22,5</shelfHeight> + <shelfDepth>7,8000001907</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Plastic Spoons</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Plastic Spoons</productName> <sku>91720659136</sku> <srp>3,4600000381</srp> - <gross_weight>16,5</gross_weight> - <net_weight>15,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>21</shelf_width> - <shelf_height>8,9600000381</shelf_height> - <shelf_depth>13,8999996185</shelf_depth> + <grossWeight>16,5</grossWeight> + <netWeight>15,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>21</shelfWidth> + <shelfHeight>8,9600000381</shelfHeight> + <shelfDepth>13,8999996185</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Plastic Knives</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Plastic Knives</productName> <sku>69013045430</sku> <srp>3,75</srp> - <gross_weight>11</gross_weight> - <net_weight>9</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>13,3999996185</shelf_width> - <shelf_height>4,1399998665</shelf_height> - <shelf_depth>20,6000003815</shelf_depth> + <grossWeight>11</grossWeight> + <netWeight>9</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>13,3999996185</shelfWidth> + <shelfHeight>4,1399998665</shelfHeight> + <shelfDepth>20,6000003815</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Plastic Forks</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Plastic Forks</productName> <sku>90830605626</sku> <srp>1,1299999952</srp> - <gross_weight>21,7000007629</gross_weight> - <net_weight>19,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>21,2999992371</shelf_width> - <shelf_height>3,2699999809</shelf_height> - <shelf_depth>22,6000003815</shelf_depth> + <grossWeight>21,7000007629</grossWeight> + <netWeight>19,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>21,2999992371</shelfWidth> + <shelfHeight>3,2699999809</shelfHeight> + <shelfDepth>22,6000003815</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Plastic Spoons</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Plastic Spoons</productName> <sku>81217407584</sku> <srp>2,5899999142</srp> - <gross_weight>19</gross_weight> - <net_weight>17</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>7,4800000191</shelf_width> - <shelf_height>16,3999996185</shelf_height> - <shelf_depth>18,5</shelf_depth> + <grossWeight>19</grossWeight> + <netWeight>17</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>7,4800000191</shelfWidth> + <shelfHeight>16,3999996185</shelfHeight> + <shelfDepth>18,5</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Plastic Knives</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Plastic Knives</productName> <sku>84698625206</sku> <srp>2,5699999332</srp> - <gross_weight>13,1000003815</gross_weight> - <net_weight>11,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>16,3999996185</shelf_width> - <shelf_height>12,6000003815</shelf_height> - <shelf_depth>10,3000001907</shelf_depth> + <grossWeight>13,1000003815</grossWeight> + <netWeight>11,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>16,3999996185</shelfWidth> + <shelfHeight>12,6000003815</shelfHeight> + <shelfDepth>10,3000001907</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Rice</product_subcategory> <product_category>Starchy Foods</product_category> <product_department>Starchy Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Medalist</brand_name> - <product_name>Medalist Thai Rice</product_name> + <brandName>Medalist</brandName> + <productName>Medalist Thai Rice</productName> <sku>61727929711</sku> <srp>2,7799999714</srp> - <gross_weight>18,7000007629</gross_weight> - <net_weight>16,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>22</shelf_width> - <shelf_height>15,8999996185</shelf_height> - <shelf_depth>7,1599998474</shelf_depth> + <grossWeight>18,7000007629</grossWeight> + <netWeight>16,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>22</shelfWidth> + <shelfHeight>15,8999996185</shelfHeight> + <shelfDepth>7,1599998474</shelfDepth> </Product> <Product> - <brand_name>Medalist</brand_name> - <product_name>Medalist Rice Medly</product_name> + <brandName>Medalist</brandName> + <productName>Medalist Rice Medly</productName> <sku>21352497935</sku> <srp>3,6099998951</srp> - <gross_weight>10,6999998093</gross_weight> - <net_weight>9,6899995804</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>4,5199999809</shelf_width> - <shelf_height>10,1000003815</shelf_height> - <shelf_depth>14</shelf_depth> + <grossWeight>10,6999998093</grossWeight> + <netWeight>9,6899995804</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>4,5199999809</shelfWidth> + <shelfHeight>10,1000003815</shelfHeight> + <shelfDepth>14</shelfDepth> </Product> <Product> - <brand_name>Monarch</brand_name> - <product_name>Monarch Thai Rice</product_name> + <brandName>Monarch</brandName> + <productName>Monarch Thai Rice</productName> <sku>98059094548</sku> <srp>3,1099998951</srp> - <gross_weight>8,4399995804</gross_weight> - <net_weight>6,4299998283</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>17,1000003815</shelf_width> - <shelf_height>18,6000003815</shelf_height> - <shelf_depth>13,1999998093</shelf_depth> + <grossWeight>8,4399995804</grossWeight> + <netWeight>6,4299998283</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>17,1000003815</shelfWidth> + <shelfHeight>18,6000003815</shelfHeight> + <shelfDepth>13,1999998093</shelfDepth> </Product> <Product> - <brand_name>Monarch</brand_name> - <product_name>Monarch Rice Medly</product_name> + <brandName>Monarch</brandName> + <productName>Monarch Rice Medly</productName> <sku>88445896506</sku> <srp>1,7999999523</srp> - <gross_weight>13,1999998093</gross_weight> - <net_weight>11,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>3,7000000477</shelf_width> - <shelf_height>18,1000003815</shelf_height> - <shelf_depth>21,1000003815</shelf_depth> + <grossWeight>13,1999998093</grossWeight> + <netWeight>11,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>3,7000000477</shelfWidth> + <shelfHeight>18,1000003815</shelfHeight> + <shelfDepth>21,1000003815</shelfDepth> </Product> <Product> - <brand_name>Discover</brand_name> - <product_name>Discover Thai Rice</product_name> + <brandName>Discover</brandName> + <productName>Discover Thai Rice</productName> <sku>26307439208</sku> <srp>2,4700000286</srp> - <gross_weight>19,2999992371</gross_weight> - <net_weight>17,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>12</shelf_width> - <shelf_height>13</shelf_height> - <shelf_depth>21,6000003815</shelf_depth> + <grossWeight>19,2999992371</grossWeight> + <netWeight>17,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>12</shelfWidth> + <shelfHeight>13</shelfHeight> + <shelfDepth>21,6000003815</shelfDepth> </Product> <Product> - <brand_name>Discover</brand_name> - <product_name>Discover Rice Medly</product_name> + <brandName>Discover</brandName> + <productName>Discover Rice Medly</productName> <sku>58264189362</sku> <srp>2,7300000191</srp> - <gross_weight>14,5</gross_weight> - <net_weight>13,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>20,6000003815</shelf_width> - <shelf_height>5,1900000572</shelf_height> - <shelf_depth>20</shelf_depth> + <grossWeight>14,5</grossWeight> + <netWeight>13,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>20,6000003815</shelfWidth> + <shelfHeight>5,1900000572</shelfHeight> + <shelfDepth>20</shelfDepth> </Product> <Product> - <brand_name>Shady Lake</brand_name> - <product_name>Shady Lake Thai Rice</product_name> + <brandName>Shady Lake</brandName> + <productName>Shady Lake Thai Rice</productName> <sku>85899557471</sku> <srp>2,8099999428</srp> - <gross_weight>11</gross_weight> - <net_weight>8</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>7,6399998665</shelf_width> - <shelf_height>16,5</shelf_height> - <shelf_depth>9,6899995804</shelf_depth> + <grossWeight>11</grossWeight> + <netWeight>8</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>7,6399998665</shelfWidth> + <shelfHeight>16,5</shelfHeight> + <shelfDepth>9,6899995804</shelfDepth> </Product> <Product> - <brand_name>Shady Lake</brand_name> - <product_name>Shady Lake Rice Medly</product_name> + <brandName>Shady Lake</brandName> + <productName>Shady Lake Rice Medly</productName> <sku>32429710030</sku> <srp>0,6999999881</srp> - <gross_weight>18,6000003815</gross_weight> - <net_weight>16,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>16,2000007629</shelf_width> - <shelf_height>8,5</shelf_height> - <shelf_depth>9,1999998093</shelf_depth> + <grossWeight>18,6000003815</grossWeight> + <netWeight>16,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>16,2000007629</shelfWidth> + <shelfHeight>8,5</shelfHeight> + <shelfDepth>9,1999998093</shelfDepth> </Product> <Product> - <brand_name>Colossal</brand_name> - <product_name>Colossal Thai Rice</product_name> + <brandName>Colossal</brandName> + <productName>Colossal Thai Rice</productName> <sku>51271885037</sku> <srp>3,9400000572</srp> - <gross_weight>14,3000001907</gross_weight> - <net_weight>11,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>9,3400001526</shelf_width> - <shelf_height>19,2999992371</shelf_height> - <shelf_depth>9,2899999619</shelf_depth> + <grossWeight>14,3000001907</grossWeight> + <netWeight>11,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>9,3400001526</shelfWidth> + <shelfHeight>19,2999992371</shelfHeight> + <shelfDepth>9,2899999619</shelfDepth> </Product> <Product> - <brand_name>Colossal</brand_name> - <product_name>Colossal Rice Medly</product_name> + <brandName>Colossal</brandName> + <productName>Colossal Rice Medly</productName> <sku>37085284590</sku> <srp>1,4600000381</srp> - <gross_weight>15</gross_weight> - <net_weight>12</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>15,3000001907</shelf_width> - <shelf_height>21,7999992371</shelf_height> - <shelf_depth>3,4500000477</shelf_depth> + <grossWeight>15</grossWeight> + <netWeight>12</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>15,3000001907</shelfWidth> + <shelfHeight>21,7999992371</shelfHeight> + <shelfDepth>3,4500000477</shelfDepth> </Product> <Product> - <brand_name>Jardon</brand_name> - <product_name>Jardon Thai Rice</product_name> + <brandName>Jardon</brandName> + <productName>Jardon Thai Rice</productName> <sku>78765332102</sku> <srp>1,8999999762</srp> - <gross_weight>13,5</gross_weight> - <net_weight>11,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>14,3000001907</shelf_width> - <shelf_height>12,8999996185</shelf_height> - <shelf_depth>9,2600002289</shelf_depth> + <grossWeight>13,5</grossWeight> + <netWeight>11,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>14,3000001907</shelfWidth> + <shelfHeight>12,8999996185</shelfHeight> + <shelfDepth>9,2600002289</shelfDepth> </Product> <Product> - <brand_name>Jardon</brand_name> - <product_name>Jardon Rice Medly</product_name> + <brandName>Jardon</brandName> + <productName>Jardon Rice Medly</productName> <sku>51484315991</sku> <srp>0,5799999833</srp> - <gross_weight>17,3999996185</gross_weight> - <net_weight>14,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>5,0199999809</shelf_width> - <shelf_height>22,2999992371</shelf_height> - <shelf_depth>14,8999996185</shelf_depth> + <grossWeight>17,3999996185</grossWeight> + <netWeight>14,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>5,0199999809</shelfWidth> + <shelfHeight>22,2999992371</shelfHeight> + <shelfDepth>14,8999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Soup</product_subcategory> <product_category>Canned Soup</product_category> <product_department>Canned Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Better</brand_name> - <product_name>Better Chicken Soup</product_name> + <brandName>Better</brandName> + <productName>Better Chicken Soup</productName> <sku>98413446545</sku> <srp>3,9800000191</srp> - <gross_weight>7,4699997902</gross_weight> - <net_weight>5,4600000381</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>19,8999996185</shelf_width> - <shelf_height>16,2000007629</shelf_height> - <shelf_depth>11,8999996185</shelf_depth> + <grossWeight>7,4699997902</grossWeight> + <netWeight>5,4600000381</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>19,8999996185</shelfWidth> + <shelfHeight>16,2000007629</shelfHeight> + <shelfDepth>11,8999996185</shelfDepth> </Product> <Product> - <brand_name>Better</brand_name> - <product_name>Better Vegetable Soup</product_name> + <brandName>Better</brandName> + <productName>Better Vegetable Soup</productName> <sku>66045427918</sku> <srp>2,2100000381</srp> - <gross_weight>9,3599996567</gross_weight> - <net_weight>7,3499999046</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>22,7999992371</shelf_width> - <shelf_height>21,2999992371</shelf_height> - <shelf_depth>7,6399998665</shelf_depth> + <grossWeight>9,3599996567</grossWeight> + <netWeight>7,3499999046</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>22,7999992371</shelfWidth> + <shelfHeight>21,2999992371</shelfHeight> + <shelfDepth>7,6399998665</shelfDepth> </Product> <Product> - <brand_name>Better</brand_name> - <product_name>Better Noodle Soup</product_name> + <brandName>Better</brandName> + <productName>Better Noodle Soup</productName> <sku>31437914967</sku> <srp>0,7799999714</srp> - <gross_weight>9</gross_weight> - <net_weight>8</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>13,6999998093</shelf_width> - <shelf_height>18,5</shelf_height> - <shelf_depth>19</shelf_depth> + <grossWeight>9</grossWeight> + <netWeight>8</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>13,6999998093</shelfWidth> + <shelfHeight>18,5</shelfHeight> + <shelfDepth>19</shelfDepth> </Product> <Product> - <brand_name>Better</brand_name> - <product_name>Better Regular Ramen Soup</product_name> + <brandName>Better</brandName> + <productName>Better Regular Ramen Soup</productName> <sku>78775781989</sku> <srp>3,7400000095</srp> - <gross_weight>8,7299995422</gross_weight> - <net_weight>6,7199997902</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>6,9899997711</shelf_width> - <shelf_height>17,7000007629</shelf_height> - <shelf_depth>8,3699998856</shelf_depth> + <grossWeight>8,7299995422</grossWeight> + <netWeight>6,7199997902</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>6,9899997711</shelfWidth> + <shelfHeight>17,7000007629</shelfHeight> + <shelfDepth>8,3699998856</shelfDepth> </Product> <Product> - <brand_name>Better</brand_name> - <product_name>Better Chicken Noodle Soup</product_name> + <brandName>Better</brandName> + <productName>Better Chicken Noodle Soup</productName> <sku>25305934548</sku> <srp>1,1499999762</srp> - <gross_weight>13,1000003815</gross_weight> - <net_weight>11,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>19,8999996185</shelf_width> - <shelf_height>3,9200000763</shelf_height> - <shelf_depth>3,8900001049</shelf_depth> + <grossWeight>13,1000003815</grossWeight> + <netWeight>11,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>19,8999996185</shelfWidth> + <shelfHeight>3,9200000763</shelfHeight> + <shelfDepth>3,8900001049</shelfDepth> </Product> <Product> - <brand_name>Better</brand_name> - <product_name>Better Turkey Noodle Soup</product_name> + <brandName>Better</brandName> + <productName>Better Turkey Noodle Soup</productName> <sku>17979437708</sku> <srp>0,75</srp> - <gross_weight>8,3400001526</gross_weight> - <net_weight>7,3400001526</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>18,3999996185</shelf_width> - <shelf_height>21,6000003815</shelf_height> - <shelf_depth>4,7600002289</shelf_depth> + <grossWeight>8,3400001526</grossWeight> + <netWeight>7,3400001526</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>18,3999996185</shelfWidth> + <shelfHeight>21,6000003815</shelfHeight> + <shelfDepth>4,7600002289</shelfDepth> </Product> <Product> - <brand_name>Better</brand_name> - <product_name>Better Beef Soup</product_name> + <brandName>Better</brandName> + <productName>Better Beef Soup</productName> <sku>23747356534</sku> <srp>0,5699999928</srp> - <gross_weight>16,8999996185</gross_weight> - <net_weight>14,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>11,3000001907</shelf_width> - <shelf_height>18</shelf_height> - <shelf_depth>8,9799995422</shelf_depth> + <grossWeight>16,8999996185</grossWeight> + <netWeight>14,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>11,3000001907</shelfWidth> + <shelfHeight>18</shelfHeight> + <shelfDepth>8,9799995422</shelfDepth> </Product> <Product> - <brand_name>Better</brand_name> - <product_name>Better Chicken Ramen Soup</product_name> + <brandName>Better</brandName> + <productName>Better Chicken Ramen Soup</productName> <sku>50664311051</sku> <srp>0,6299999952</srp> - <gross_weight>16</gross_weight> - <net_weight>13</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>20,5</shelf_width> - <shelf_height>5,2100000381</shelf_height> - <shelf_depth>15,5</shelf_depth> + <grossWeight>16</grossWeight> + <netWeight>13</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>20,5</shelfWidth> + <shelfHeight>5,2100000381</shelfHeight> + <shelfDepth>15,5</shelfDepth> </Product> <Product> - <brand_name>Better</brand_name> - <product_name>Better Rice Soup</product_name> + <brandName>Better</brandName> + <productName>Better Rice Soup</productName> <sku>24066153168</sku> <srp>1,2300000191</srp> - <gross_weight>7,9800000191</gross_weight> - <net_weight>5,9800000191</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>7,2899999619</shelf_width> - <shelf_height>14,6000003815</shelf_height> - <shelf_depth>7,9699997902</shelf_depth> + <grossWeight>7,9800000191</grossWeight> + <netWeight>5,9800000191</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>7,2899999619</shelfWidth> + <shelfHeight>14,6000003815</shelfHeight> + <shelfDepth>7,9699997902</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Chicken Soup</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Chicken Soup</productName> <sku>47163524031</sku> <srp>3,1900000572</srp> - <gross_weight>15,1999998093</gross_weight> - <net_weight>12,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>22,6000003815</shelf_width> - <shelf_height>21,1000003815</shelf_height> - <shelf_depth>16,8999996185</shelf_depth> + <grossWeight>15,1999998093</grossWeight> + <netWeight>12,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>22,6000003815</shelfWidth> + <shelfHeight>21,1000003815</shelfHeight> + <shelfDepth>16,8999996185</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Vegetable Soup</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Vegetable Soup</productName> <sku>43318244814</sku> <srp>2,3299999237</srp> - <gross_weight>19,7000007629</gross_weight> - <net_weight>18,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>11,6999998093</shelf_width> - <shelf_height>18,7999992371</shelf_height> - <shelf_depth>11,6000003815</shelf_depth> + <grossWeight>19,7000007629</grossWeight> + <netWeight>18,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>11,6999998093</shelfWidth> + <shelfHeight>18,7999992371</shelfHeight> + <shelfDepth>11,6000003815</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Noodle Soup</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Noodle Soup</productName> <sku>32829326987</sku> <srp>1,75</srp> - <gross_weight>10,6000003815</gross_weight> - <net_weight>9,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>19,7999992371</shelf_width> - <shelf_height>3,1600000858</shelf_height> - <shelf_depth>15,6999998093</shelf_depth> + <grossWeight>10,6000003815</grossWeight> + <netWeight>9,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>19,7999992371</shelfWidth> + <shelfHeight>3,1600000858</shelfHeight> + <shelfDepth>15,6999998093</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Regular Ramen Soup</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Regular Ramen Soup</productName> <sku>12408414483</sku> <srp>1,7300000191</srp> - <gross_weight>12,8000001907</gross_weight> - <net_weight>10,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>20,7000007629</shelf_width> - <shelf_height>21,2999992371</shelf_height> - <shelf_depth>6,9800000191</shelf_depth> + <grossWeight>12,8000001907</grossWeight> + <netWeight>10,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>20,7000007629</shelfWidth> + <shelfHeight>21,2999992371</shelfHeight> + <shelfDepth>6,9800000191</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Chicken Noodle Soup</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Chicken Noodle Soup</productName> <sku>62032982707</sku> <srp>1,5499999523</srp> - <gross_weight>9,4799995422</gross_weight> - <net_weight>8,470000267</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>4,9800000191</shelf_width> - <shelf_height>4,7100000381</shelf_height> - <shelf_depth>22,3999996185</shelf_depth> + <grossWeight>9,4799995422</grossWeight> + <netWeight>8,470000267</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>4,9800000191</shelfWidth> + <shelfHeight>4,7100000381</shelfHeight> + <shelfDepth>22,3999996185</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Turkey Noodle Soup</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Turkey Noodle Soup</productName> <sku>34751966595</sku> <srp>0,8799999952</srp> - <gross_weight>16,5</gross_weight> - <net_weight>13,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>12,8000001907</shelf_width> - <shelf_height>11</shelf_height> - <shelf_depth>12</shelf_depth> + <grossWeight>16,5</grossWeight> + <netWeight>13,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>12,8000001907</shelfWidth> + <shelfHeight>11</shelfHeight> + <shelfDepth>12</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Beef Soup</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Beef Soup</productName> <sku>29712170958</sku> <srp>2,6500000954</srp> - <gross_weight>11,1999998093</gross_weight> - <net_weight>8,1899995804</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>9,9099998474</shelf_width> - <shelf_height>7,6199998856</shelf_height> - <shelf_depth>3,0999999046</shelf_depth> + <grossWeight>11,1999998093</grossWeight> + <netWeight>8,1899995804</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>9,9099998474</shelfWidth> + <shelfHeight>7,6199998856</shelfHeight> + <shelfDepth>3,0999999046</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Chicken Ramen Soup</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Chicken Ramen Soup</productName> <sku>25866891741</sku> <srp>1,7799999714</srp> - <gross_weight>17,1000003815</gross_weight> - <net_weight>16,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>6,6100001335</shelf_width> - <shelf_height>19,7000007629</shelf_height> - <shelf_depth>22,2999992371</shelf_depth> + <grossWeight>17,1000003815</grossWeight> + <netWeight>16,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>6,6100001335</shelfWidth> + <shelfHeight>19,7000007629</shelfHeight> + <shelfDepth>22,2999992371</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Rice Soup</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Rice Soup</productName> <sku>32317668795</sku> <srp>1,5900000334</srp> - <gross_weight>21</gross_weight> - <net_weight>19</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>15,3999996185</shelf_width> - <shelf_height>17,5</shelf_height> - <shelf_depth>6,6500000954</shelf_depth> + <grossWeight>21</grossWeight> + <netWeight>19</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>15,3999996185</shelfWidth> + <shelfHeight>17,5</shelfHeight> + <shelfDepth>6,6500000954</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Chicken Soup</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Chicken Soup</productName> <sku>39445177912</sku> <srp>3,9800000191</srp> - <gross_weight>18,5</gross_weight> - <net_weight>15,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>22,2999992371</shelf_width> - <shelf_height>16,2000007629</shelf_height> - <shelf_depth>16,5</shelf_depth> + <grossWeight>18,5</grossWeight> + <netWeight>15,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>22,2999992371</shelfWidth> + <shelfHeight>16,2000007629</shelfHeight> + <shelfDepth>16,5</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Vegetable Soup</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Vegetable Soup</productName> <sku>62005195021</sku> <srp>1,8400000334</srp> - <gross_weight>9</gross_weight> - <net_weight>6</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>7,6399998665</shelf_width> - <shelf_height>17,2000007629</shelf_height> - <shelf_depth>5,8099999428</shelf_depth> + <grossWeight>9</grossWeight> + <netWeight>6</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>7,6399998665</shelfWidth> + <shelfHeight>17,2000007629</shelfHeight> + <shelfDepth>5,8099999428</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Noodle Soup</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Noodle Soup</productName> <sku>58159915804</sku> <srp>3,3199999332</srp> - <gross_weight>6,4099998474</gross_weight> - <net_weight>5,4000000954</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>5,9699997902</shelf_width> - <shelf_height>19,7999992371</shelf_height> - <shelf_depth>7,9099998474</shelf_depth> + <grossWeight>6,4099998474</grossWeight> + <netWeight>5,4000000954</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>5,9699997902</shelfWidth> + <shelfHeight>19,7999992371</shelfHeight> + <shelfDepth>7,9099998474</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Regular Ramen Soup</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Regular Ramen Soup</productName> <sku>92403367161</sku> <srp>1,2799999714</srp> - <gross_weight>6,1799998283</gross_weight> - <net_weight>4,1700000763</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>17,2000007629</shelf_width> - <shelf_height>5,6300001144</shelf_height> - <shelf_depth>9,8599996567</shelf_depth> + <grossWeight>6,1799998283</grossWeight> + <netWeight>4,1700000763</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>17,2000007629</shelfWidth> + <shelfHeight>5,6300001144</shelfHeight> + <shelfDepth>9,8599996567</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Chicken Noodle Soup</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Chicken Noodle Soup</productName> <sku>82790169119</sku> <srp>2,7400000095</srp> - <gross_weight>17,7000007629</gross_weight> - <net_weight>15,6999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>15,1000003815</shelf_width> - <shelf_height>17,5</shelf_height> - <shelf_depth>21</shelf_depth> + <grossWeight>17,7000007629</grossWeight> + <netWeight>15,6999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>15,1000003815</shelfWidth> + <shelfHeight>17,5</shelfHeight> + <shelfDepth>21</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Turkey Noodle Soup</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Turkey Noodle Soup</productName> <sku>62369256615</sku> <srp>2,7200000286</srp> - <gross_weight>12,5</gross_weight> - <net_weight>11,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>21,2999992371</shelf_width> - <shelf_height>4,1300001144</shelf_height> - <shelf_depth>14,5</shelf_depth> + <grossWeight>12,5</grossWeight> + <netWeight>11,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>21,2999992371</shelfWidth> + <shelfHeight>4,1300001144</shelfHeight> + <shelfDepth>14,5</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Beef Soup</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Beef Soup</productName> <sku>21993824839</sku> <srp>2,5499999523</srp> - <gross_weight>17,2000007629</gross_weight> - <net_weight>14,1999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>8,8500003815</shelf_width> - <shelf_height>8,0799999237</shelf_height> - <shelf_depth>17,3999996185</shelf_depth> + <grossWeight>17,2000007629</grossWeight> + <netWeight>14,1999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>8,8500003815</shelfWidth> + <shelfHeight>8,0799999237</shelfHeight> + <shelfDepth>17,3999996185</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Chicken Ramen Soup</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Chicken Ramen Soup</productName> <sku>66987923979</sku> <srp>0,8000000119</srp> - <gross_weight>15</gross_weight> - <net_weight>13</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>11</shelf_width> - <shelf_height>7,3600001335</shelf_height> - <shelf_depth>4,3800001144</shelf_depth> + <grossWeight>15</grossWeight> + <netWeight>13</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>11</shelfWidth> + <shelfHeight>7,3600001335</shelfHeight> + <shelfDepth>4,3800001144</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Rice Soup</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Rice Soup</productName> <sku>18557872176</sku> <srp>3,2100000381</srp> - <gross_weight>15,8000001907</gross_weight> - <net_weight>14,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>18,6000003815</shelf_width> - <shelf_height>11,8000001907</shelf_height> - <shelf_depth>19,1000003815</shelf_depth> + <grossWeight>15,8000001907</grossWeight> + <netWeight>14,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>18,6000003815</shelfWidth> + <shelfHeight>11,8000001907</shelfHeight> + <shelfDepth>19,1000003815</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Chicken Soup</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Chicken Soup</productName> <sku>60442582964</sku> <srp>2,9700000286</srp> - <gross_weight>13,5</gross_weight> - <net_weight>12,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>20,3999996185</shelf_width> - <shelf_height>10,6000003815</shelf_height> - <shelf_depth>17,6000003815</shelf_depth> + <grossWeight>13,5</grossWeight> + <netWeight>12,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>20,3999996185</shelfWidth> + <shelfHeight>10,6000003815</shelfHeight> + <shelfDepth>17,6000003815</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Vegetable Soup</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Vegetable Soup</productName> <sku>26051535010</sku> <srp>1,5</srp> - <gross_weight>17,2000007629</gross_weight> - <net_weight>15,1999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>12</shelf_width> - <shelf_height>13,6000003815</shelf_height> - <shelf_depth>17,7000007629</shelf_depth> + <grossWeight>17,2000007629</grossWeight> + <netWeight>15,1999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>12</shelfWidth> + <shelfHeight>13,6000003815</shelfHeight> + <shelfDepth>17,7000007629</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Noodle Soup</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Noodle Soup</productName> <sku>55255190730</sku> <srp>1,3099999428</srp> - <gross_weight>9,1000003815</gross_weight> - <net_weight>7,0999999046</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>4,4899997711</shelf_width> - <shelf_height>11,3999996185</shelf_height> - <shelf_depth>21,6000003815</shelf_depth> + <grossWeight>9,1000003815</grossWeight> + <netWeight>7,0999999046</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>4,4899997711</shelfWidth> + <shelfHeight>11,3999996185</shelfHeight> + <shelfDepth>21,6000003815</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Regular Ramen Soup</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Regular Ramen Soup</productName> <sku>61023109555</sku> <srp>1,8700000048</srp> - <gross_weight>9,3100004196</gross_weight> - <net_weight>6,3099999428</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>9,470000267</shelf_width> - <shelf_height>15,1000003815</shelf_height> - <shelf_depth>13,1999998093</shelf_depth> + <grossWeight>9,3100004196</grossWeight> + <netWeight>6,3099999428</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>9,470000267</shelfWidth> + <shelfHeight>15,1000003815</shelfHeight> + <shelfDepth>13,1999998093</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Chicken Noodle Soup</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Chicken Noodle Soup</productName> <sku>22934378981</sku> <srp>2,4000000954</srp> - <gross_weight>20,5</gross_weight> - <net_weight>18,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>6,6799998283</shelf_width> - <shelf_height>10,6000003815</shelf_height> - <shelf_depth>9,1599998474</shelf_depth> + <grossWeight>20,5</grossWeight> + <netWeight>18,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>6,6799998283</shelfWidth> + <shelfHeight>10,6000003815</shelfHeight> + <shelfDepth>9,1599998474</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Turkey Noodle Soup</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Turkey Noodle Soup</productName> <sku>87940064072</sku> <srp>1,9900000095</srp> - <gross_weight>16,7000007629</gross_weight> - <net_weight>14,6999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>19,7000007629</shelf_width> - <shelf_height>16,1000003815</shelf_height> - <shelf_depth>7,25</shelf_depth> + <grossWeight>16,7000007629</grossWeight> + <netWeight>14,6999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>19,7000007629</shelfWidth> + <shelfHeight>16,1000003815</shelfHeight> + <shelfDepth>7,25</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Beef Soup</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Beef Soup</productName> <sku>19089099764</sku> <srp>1,5299999714</srp> - <gross_weight>17,2999992371</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>6,6700000763</shelf_width> - <shelf_height>3,1800000668</shelf_height> - <shelf_depth>16,3999996185</shelf_depth> + <grossWeight>17,2999992371</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>6,6700000763</shelfWidth> + <shelfHeight>3,1800000668</shelfHeight> + <shelfDepth>16,3999996185</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Chicken Ramen Soup</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Chicken Ramen Soup</productName> <sku>43719353079</sku> <srp>0,6100000143</srp> - <gross_weight>12,3000001907</gross_weight> - <net_weight>11,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>15,1999998093</shelf_width> - <shelf_height>4,4899997711</shelf_height> - <shelf_depth>14,1999998093</shelf_depth> + <grossWeight>12,3000001907</grossWeight> + <netWeight>11,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>15,1999998093</shelfWidth> + <shelfHeight>4,4899997711</shelfHeight> + <shelfDepth>14,1999998093</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Rice Soup</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Rice Soup</productName> <sku>74072260260</sku> <srp>3,7599999905</srp> - <gross_weight>7,1199998856</gross_weight> - <net_weight>6,1100001335</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>18,8999996185</shelf_width> - <shelf_height>12,6000003815</shelf_height> - <shelf_depth>21,2999992371</shelf_depth> + <grossWeight>7,1199998856</grossWeight> + <netWeight>6,1100001335</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>18,8999996185</shelfWidth> + <shelfHeight>12,6000003815</shelfHeight> + <shelfDepth>21,2999992371</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Chicken Soup</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Chicken Soup</productName> <sku>81050091385</sku> <srp>1,2999999523</srp> - <gross_weight>20,5</gross_weight> - <net_weight>18,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>8,8800001144</shelf_width> - <shelf_height>8,9499998093</shelf_height> - <shelf_depth>3,1400001049</shelf_depth> + <grossWeight>20,5</grossWeight> + <netWeight>18,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>8,8800001144</shelfWidth> + <shelfHeight>8,9499998093</shelfHeight> + <shelfDepth>3,1400001049</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Vegetable Soup</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Vegetable Soup</productName> <sku>46442578434</sku> <srp>2,6900000572</srp> - <gross_weight>20,5</gross_weight> - <net_weight>18,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>22,5</shelf_width> - <shelf_height>9,5</shelf_height> - <shelf_depth>9,3800001144</shelf_depth> + <grossWeight>20,5</grossWeight> + <netWeight>18,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>22,5</shelfWidth> + <shelfHeight>9,5</shelfHeight> + <shelfDepth>9,3800001144</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Noodle Soup</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Noodle Soup</productName> <sku>16408467888</sku> <srp>2,4800000191</srp> - <gross_weight>18,2000007629</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>7,1500000954</shelf_width> - <shelf_height>4,3499999046</shelf_height> - <shelf_depth>11,3000001907</shelf_depth> + <grossWeight>18,2000007629</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>7,1500000954</shelfWidth> + <shelfHeight>4,3499999046</shelfHeight> + <shelfDepth>11,3000001907</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Regular Ramen Soup</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Regular Ramen Soup</productName> <sku>66033036112</sku> <srp>3,3099999428</srp> - <gross_weight>12,5</gross_weight> - <net_weight>9,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>19,7000007629</shelf_width> - <shelf_height>17,5</shelf_height> - <shelf_depth>12,5</shelf_depth> + <grossWeight>12,5</grossWeight> + <netWeight>9,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>19,7000007629</shelfWidth> + <shelfHeight>17,5</shelfHeight> + <shelfDepth>12,5</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Chicken Noodle Soup</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Chicken Noodle Soup</productName> <sku>38752020001</sku> <srp>1,3099999428</srp> - <gross_weight>20,2000007629</gross_weight> - <net_weight>19,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>36</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>8,1999998093</shelf_width> - <shelf_height>20,5</shelf_height> - <shelf_depth>17</shelf_depth> + <grossWeight>20,2000007629</grossWeight> + <netWeight>19,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>36</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>8,1999998093</shelfWidth> + <shelfHeight>20,5</shelfHeight> + <shelfDepth>17</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Turkey Noodle Soup</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Turkey Noodle Soup</productName> <sku>33712224364</sku> <srp>1,1699999571</srp> - <gross_weight>13,5</gross_weight> - <net_weight>12,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>17,6000003815</shelf_width> - <shelf_height>22,6000003815</shelf_height> - <shelf_depth>3,4600000381</shelf_depth> + <grossWeight>13,5</grossWeight> + <netWeight>12,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>17,6000003815</shelfWidth> + <shelfHeight>22,6000003815</shelfHeight> + <shelfDepth>3,4600000381</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Beef Soup</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Beef Soup</productName> <sku>96647673249</sku> <srp>1,4299999475</srp> - <gross_weight>16,8999996185</gross_weight> - <net_weight>14,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>18,8999996185</shelf_width> - <shelf_height>18,7000007629</shelf_height> - <shelf_depth>4,1599998474</shelf_depth> + <grossWeight>16,8999996185</grossWeight> + <netWeight>14,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>18,8999996185</shelfWidth> + <shelfHeight>18,7000007629</shelfHeight> + <shelfDepth>4,1599998474</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Chicken Ramen Soup</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Chicken Ramen Soup</productName> <sku>62040160298</sku> <srp>2,8199999332</srp> - <gross_weight>20,2000007629</gross_weight> - <net_weight>19,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>8,2600002289</shelf_width> - <shelf_height>5,0799999237</shelf_height> - <shelf_depth>14,3999996185</shelf_depth> + <grossWeight>20,2000007629</grossWeight> + <netWeight>19,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>8,2600002289</shelfWidth> + <shelfHeight>5,0799999237</shelfHeight> + <shelfDepth>14,3999996185</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Rice Soup</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Rice Soup</productName> <sku>35442002415</sku> <srp>0,8999999762</srp> - <gross_weight>14</gross_weight> - <net_weight>12</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>4,6100001335</shelf_width> - <shelf_height>16,8999996185</shelf_height> - <shelf_depth>6,2899999619</shelf_depth> + <grossWeight>14</grossWeight> + <netWeight>12</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>4,6100001335</shelfWidth> + <shelfHeight>16,8999996185</shelfHeight> + <shelfDepth>6,2899999619</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Dehydrated Soup</product_subcategory> <product_category>Packaged Soup</product_category> <product_department>Packaged Foods</product_department> - <product_family>Food</product_family> - </Product_class> - <Product_class> + <productFamily>Food</productFamily> + </ProductClass> + <ProductClass> <product_subcategory>Frozen Vegetables</product_subcategory> <product_category>Vegetables</product_category> <product_department>Frozen Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Frozen Carrots</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Frozen Carrots</productName> <sku>18127034306</sku> <srp>1,6399999857</srp> - <gross_weight>20,7000007629</gross_weight> - <net_weight>18,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>22,7999992371</shelf_width> - <shelf_height>4,7399997711</shelf_height> - <shelf_depth>20,6000003815</shelf_depth> + <grossWeight>20,7000007629</grossWeight> + <netWeight>18,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>22,7999992371</shelfWidth> + <shelfHeight>4,7399997711</shelfHeight> + <shelfDepth>20,6000003815</shelfDepth> </Product> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Frozen Cauliflower</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Frozen Cauliflower</productName> <sku>27328963875</sku> <srp>3,3199999332</srp> - <gross_weight>7,1999998093</gross_weight> - <net_weight>6,1900000572</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>21,7000007629</shelf_width> - <shelf_height>4,0500001907</shelf_height> - <shelf_depth>16,6000003815</shelf_depth> + <grossWeight>7,1999998093</grossWeight> + <netWeight>6,1900000572</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>21,7000007629</shelfWidth> + <shelfHeight>4,0500001907</shelfHeight> + <shelfDepth>16,6000003815</shelfDepth> </Product> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Frozen Broccoli</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Frozen Broccoli</productName> <sku>20002467036</sku> <srp>2,7200000286</srp> - <gross_weight>14,1999998093</gross_weight> - <net_weight>12,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>19,7000007629</shelf_width> - <shelf_height>4,8200001717</shelf_height> - <shelf_depth>3,7599999905</shelf_depth> + <grossWeight>14,1999998093</grossWeight> + <netWeight>12,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>19,7000007629</shelfWidth> + <shelfHeight>4,8200001717</shelfHeight> + <shelfDepth>3,7599999905</shelfDepth> </Product> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Frozen Corn</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Frozen Corn</productName> <sku>25770385861</sku> <srp>3,1600000858</srp> - <gross_weight>13,1999998093</gross_weight> - <net_weight>11,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>4,8000001907</shelf_width> - <shelf_height>8,3400001526</shelf_height> - <shelf_depth>15,8999996185</shelf_depth> + <grossWeight>13,1999998093</grossWeight> + <netWeight>11,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>4,8000001907</shelfWidth> + <shelfHeight>8,3400001526</shelfHeight> + <shelfDepth>15,8999996185</shelfDepth> </Product> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Frozen Peas</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Frozen Peas</productName> <sku>11583785414</sku> <srp>3,5699999332</srp> - <gross_weight>8,5</gross_weight> - <net_weight>6,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>22</shelf_width> - <shelf_height>3,8399999142</shelf_height> - <shelf_depth>11,8000001907</shelf_depth> + <grossWeight>8,5</grossWeight> + <netWeight>6,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>22</shelfWidth> + <shelfHeight>3,8399999142</shelfHeight> + <shelfDepth>11,8000001907</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Frozen Carrots</product_name> + <brandName>Golden</brandName> + <productName>Golden Frozen Carrots</productName> <sku>39882292151</sku> <srp>1,4600000381</srp> - <gross_weight>8,5799999237</gross_weight> - <net_weight>5,5700001717</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>16,6000003815</shelf_width> - <shelf_height>3,5199999809</shelf_height> - <shelf_depth>22,2999992371</shelf_depth> + <grossWeight>8,5799999237</grossWeight> + <netWeight>5,5700001717</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>16,6000003815</shelfWidth> + <shelfHeight>3,5199999809</shelfHeight> + <shelfDepth>22,2999992371</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Frozen Cauliflower</product_name> + <brandName>Golden</brandName> + <productName>Golden Frozen Cauliflower</productName> <sku>75273053050</sku> <srp>3,7200000286</srp> - <gross_weight>6,1599998474</gross_weight> - <net_weight>4,1500000954</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>22,7000007629</shelf_width> - <shelf_height>9,4899997711</shelf_height> - <shelf_depth>4,2800002098</shelf_depth> + <grossWeight>6,1599998474</grossWeight> + <netWeight>4,1500000954</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>22,7000007629</shelfWidth> + <shelfHeight>9,4899997711</shelfHeight> + <shelfDepth>4,2800002098</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Frozen Broccoli</product_name> + <brandName>Golden</brandName> + <productName>Golden Frozen Broccoli</productName> <sku>36774995923</sku> <srp>2,9600000381</srp> - <gross_weight>14,6000003815</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>36</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>17,3999996185</shelf_width> - <shelf_height>14,6999998093</shelf_height> - <shelf_depth>18,5</shelf_depth> + <grossWeight>14,6000003815</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>36</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>17,3999996185</shelfWidth> + <shelfHeight>14,6999998093</shelfHeight> + <shelfDepth>18,5</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Frozen Corn</product_name> + <brandName>Golden</brandName> + <productName>Golden Frozen Corn</productName> <sku>55637330412</sku> <srp>1,8099999428</srp> - <gross_weight>19,8999996185</gross_weight> - <net_weight>18,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>4,9099998474</shelf_width> - <shelf_height>8,7600002289</shelf_height> - <shelf_depth>11,1999998093</shelf_depth> + <grossWeight>19,8999996185</grossWeight> + <netWeight>18,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>4,9099998474</shelfWidth> + <shelfHeight>8,7600002289</shelfHeight> + <shelfDepth>11,1999998093</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Frozen Peas</product_name> + <brandName>Golden</brandName> + <productName>Golden Frozen Peas</productName> <sku>63691950440</sku> <srp>2,1900000572</srp> - <gross_weight>11,8999996185</gross_weight> - <net_weight>9,8900003433</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>8,6899995804</shelf_width> - <shelf_height>9,6700000763</shelf_height> - <shelf_depth>20,5</shelf_depth> + <grossWeight>11,8999996185</grossWeight> + <netWeight>9,8900003433</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>8,6899995804</shelfWidth> + <shelfHeight>9,6700000763</shelfHeight> + <shelfDepth>20,5</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Frozen Carrots</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Frozen Carrots</productName> <sku>74729573130</sku> <srp>1,9099999666</srp> - <gross_weight>6,9899997711</gross_weight> - <net_weight>4,9800000191</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>21,2000007629</shelf_width> - <shelf_height>11,6999998093</shelf_height> - <shelf_depth>8,1499996185</shelf_depth> + <grossWeight>6,9899997711</grossWeight> + <netWeight>4,9800000191</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>21,2000007629</shelfWidth> + <shelfHeight>11,6999998093</shelfHeight> + <shelfDepth>8,1499996185</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Frozen Cauliflower</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Frozen Cauliflower</productName> <sku>48859538435</sku> <srp>1,5700000525</srp> - <gross_weight>7,7699999809</gross_weight> - <net_weight>5,7600002289</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>14,3000001907</shelf_width> - <shelf_height>15,8000001907</shelf_height> - <shelf_depth>19</shelf_depth> + <grossWeight>7,7699999809</grossWeight> + <netWeight>5,7600002289</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>14,3000001907</shelfWidth> + <shelfHeight>15,8000001907</shelfHeight> + <shelfDepth>19</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Frozen Broccoli</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Frozen Broccoli</productName> <sku>23865223526</sku> <srp>1,2699999809</srp> - <gross_weight>10,1999998093</gross_weight> - <net_weight>8,1899995804</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>19,5</shelf_width> - <shelf_height>8,5</shelf_height> - <shelf_depth>5,1100001335</shelf_depth> + <grossWeight>10,1999998093</grossWeight> + <netWeight>8,1899995804</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>19,5</shelfWidth> + <shelfHeight>8,5</shelfHeight> + <shelfDepth>5,1100001335</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Frozen Corn</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Frozen Corn</productName> <sku>45014259219</sku> <srp>3,7000000477</srp> - <gross_weight>12,6999998093</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>15,3000001907</shelf_width> - <shelf_height>22,2000007629</shelf_height> - <shelf_depth>13,6999998093</shelf_depth> + <grossWeight>12,6999998093</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>15,3000001907</shelfWidth> + <shelfHeight>22,2000007629</shelfHeight> + <shelfDepth>13,6999998093</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Frozen Peas</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Frozen Peas</productName> <sku>79257710576</sku> <srp>1,6599999666</srp> - <gross_weight>9,8400001526</gross_weight> - <net_weight>7,8400001526</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>11,8000001907</shelf_width> - <shelf_height>16,7999992371</shelf_height> - <shelf_depth>16,5</shelf_depth> + <grossWeight>9,8400001526</grossWeight> + <netWeight>7,8400001526</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>11,8000001907</shelfWidth> + <shelfHeight>16,7999992371</shelfHeight> + <shelfDepth>16,5</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Frozen Carrots</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Frozen Carrots</productName> <sku>77634298205</sku> <srp>3,9200000763</srp> - <gross_weight>15,1999998093</gross_weight> - <net_weight>12,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>17,3999996185</shelf_width> - <shelf_height>12</shelf_height> - <shelf_depth>11</shelf_depth> + <grossWeight>15,1999998093</grossWeight> + <netWeight>12,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>17,3999996185</shelfWidth> + <shelfHeight>12</shelfHeight> + <shelfDepth>11</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Frozen Cauliflower</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Frozen Cauliflower</productName> <sku>83345150351</sku> <srp>1,9099999666</srp> - <gross_weight>21</gross_weight> - <net_weight>19</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>6,4099998474</shelf_width> - <shelf_height>20,7999992371</shelf_height> - <shelf_depth>10,3999996185</shelf_depth> + <grossWeight>21</grossWeight> + <netWeight>19</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>6,4099998474</shelfWidth> + <shelfHeight>20,7999992371</shelfHeight> + <shelfDepth>10,3999996185</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Frozen Broccoli</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Frozen Broccoli</productName> <sku>86826367974</sku> <srp>1,8899999857</srp> - <gross_weight>17,1000003815</gross_weight> - <net_weight>15,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>19,3999996185</shelf_width> - <shelf_height>6,3800001144</shelf_height> - <shelf_depth>8,5399999619</shelf_depth> + <grossWeight>17,1000003815</grossWeight> + <netWeight>15,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>19,3999996185</shelfWidth> + <shelfHeight>6,3800001144</shelfHeight> + <shelfDepth>8,5399999619</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Frozen Corn</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Frozen Corn</productName> <sku>22548806071</sku> <srp>1,7200000286</srp> - <gross_weight>17,7000007629</gross_weight> - <net_weight>15,6999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>17,2000007629</shelf_width> - <shelf_height>7,8899998665</shelf_height> - <shelf_depth>12,5</shelf_depth> + <grossWeight>17,7000007629</grossWeight> + <netWeight>15,6999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>17,2000007629</shelfWidth> + <shelfHeight>7,8899998665</shelfHeight> + <shelfDepth>12,5</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Frozen Peas</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Frozen Peas</productName> <sku>85267789959</sku> <srp>1,7200000286</srp> - <gross_weight>9,3900003433</gross_weight> - <net_weight>7,3899998665</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>5,75</shelf_width> - <shelf_height>10,8999996185</shelf_height> - <shelf_depth>17,1000003815</shelf_depth> + <grossWeight>9,3900003433</grossWeight> + <netWeight>7,3899998665</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>5,75</shelfWidth> + <shelfHeight>10,8999996185</shelfHeight> + <shelfDepth>17,1000003815</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Frozen Carrots</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Frozen Carrots</productName> <sku>45029655098</sku> <srp>1,5199999809</srp> - <gross_weight>9,8900003433</gross_weight> - <net_weight>7,8899998665</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>4,0500001907</shelf_width> - <shelf_height>3,5</shelf_height> - <shelf_depth>4,3600001335</shelf_depth> + <grossWeight>9,8900003433</grossWeight> + <netWeight>7,8899998665</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>4,0500001907</shelfWidth> + <shelfHeight>3,5</shelfHeight> + <shelfDepth>4,3600001335</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Frozen Cauliflower</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Frozen Cauliflower</productName> <sku>47851617932</sku> <srp>1,4800000191</srp> - <gross_weight>9,1800003052</gross_weight> - <net_weight>8,1800003052</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>6,1999998093</shelf_width> - <shelf_height>3,6900000572</shelf_height> - <shelf_depth>6,3099999428</shelf_depth> + <grossWeight>9,1800003052</grossWeight> + <netWeight>8,1800003052</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>6,1999998093</shelfWidth> + <shelfHeight>3,6900000572</shelfHeight> + <shelfDepth>6,3099999428</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Frozen Broccoli</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Frozen Broccoli</productName> <sku>66713952422</sku> <srp>0,6299999952</srp> - <gross_weight>17,2000007629</gross_weight> - <net_weight>15,1999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>7,3400001526</shelf_width> - <shelf_height>15,6000003815</shelf_height> - <shelf_depth>8,1800003052</shelf_depth> + <grossWeight>17,2000007629</grossWeight> + <netWeight>15,1999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>7,3400001526</shelfWidth> + <shelfHeight>15,6000003815</shelfHeight> + <shelfDepth>8,1800003052</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Frozen Corn</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Frozen Corn</productName> <sku>74768572449</sku> <srp>1,6000000238</srp> - <gross_weight>11,8999996185</gross_weight> - <net_weight>9,8900003433</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>4,8000001907</shelf_width> - <shelf_height>14,5</shelf_height> - <shelf_depth>6,5900001526</shelf_depth> + <grossWeight>11,8999996185</grossWeight> + <netWeight>9,8900003433</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>4,8000001907</shelfWidth> + <shelfHeight>14,5</shelfHeight> + <shelfDepth>6,5900001526</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Frozen Peas</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Frozen Peas</productName> <sku>62868673205</sku> <srp>2,7100000381</srp> - <gross_weight>21,7999992371</gross_weight> - <net_weight>19,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>16,3999996185</shelf_width> - <shelf_height>13,1999998093</shelf_height> - <shelf_depth>22,7999992371</shelf_depth> + <grossWeight>21,7999992371</grossWeight> + <netWeight>19,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>16,3999996185</shelfWidth> + <shelfHeight>13,1999998093</shelfHeight> + <shelfDepth>22,7999992371</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Fresh Vegetables</product_subcategory> <product_category>Vegetables</product_category> <product_department>Produce</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Summer Squash</product_name> + <brandName>High Top</brandName> + <productName>High Top Summer Squash</productName> <sku>76792191863</sku> <srp>2,9500000477</srp> - <gross_weight>18,7000007629</gross_weight> - <net_weight>17,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>11,3000001907</shelf_width> - <shelf_height>20,6000003815</shelf_height> - <shelf_depth>12</shelf_depth> + <grossWeight>18,7000007629</grossWeight> + <netWeight>17,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>11,3000001907</shelfWidth> + <shelfHeight>20,6000003815</shelfHeight> + <shelfDepth>12</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Corn on the Cob</product_name> + <brandName>High Top</brandName> + <productName>High Top Corn on the Cob</productName> <sku>18748942017</sku> <srp>3,3199999332</srp> - <gross_weight>16,1000003815</gross_weight> - <net_weight>14,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>12,3000001907</shelf_width> - <shelf_height>18,3999996185</shelf_height> - <shelf_depth>4,75</shelf_depth> + <grossWeight>16,1000003815</grossWeight> + <netWeight>14,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>12,3000001907</shelfWidth> + <shelfHeight>18,3999996185</shelfHeight> + <shelfDepth>4,75</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Asparagus</product_name> + <brandName>High Top</brandName> + <productName>High Top Asparagus</productName> <sku>72946912646</sku> <srp>1,4299999475</srp> - <gross_weight>21,8999996185</gross_weight> - <net_weight>20,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>22</shelf_width> - <shelf_height>9,1499996185</shelf_height> - <shelf_depth>7,3400001526</shelf_depth> + <grossWeight>21,8999996185</grossWeight> + <netWeight>20,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>22</shelfWidth> + <shelfHeight>9,1499996185</shelfHeight> + <shelfDepth>7,3400001526</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Sweet Peas</product_name> + <brandName>High Top</brandName> + <productName>High Top Sweet Peas</productName> <sku>50239298939</sku> <srp>1,7100000381</srp> - <gross_weight>13,3999996185</gross_weight> - <net_weight>11,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>12,3000001907</shelf_width> - <shelf_height>21</shelf_height> - <shelf_depth>21,7999992371</shelf_depth> + <grossWeight>13,3999996185</grossWeight> + <netWeight>11,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>12,3000001907</shelfWidth> + <shelfHeight>21</shelfHeight> + <shelfDepth>21,7999992371</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top New Potatos</product_name> + <brandName>High Top</brandName> + <productName>High Top New Potatos</productName> <sku>97577165961</sku> <srp>3,8499999046</srp> - <gross_weight>6,8200001717</gross_weight> - <net_weight>4,8200001717</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>13</shelf_width> - <shelf_height>15,3999996185</shelf_height> - <shelf_depth>13,1999998093</shelf_depth> + <grossWeight>6,8200001717</grossWeight> + <netWeight>4,8200001717</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>13</shelfWidth> + <shelfHeight>15,3999996185</shelfHeight> + <shelfDepth>13,1999998093</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Beets</product_name> + <brandName>High Top</brandName> + <productName>High Top Beets</productName> <sku>44107318520</sku> <srp>2,2699999809</srp> - <gross_weight>12,1000003815</gross_weight> - <net_weight>10,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>10,3999996185</shelf_width> - <shelf_height>14,8999996185</shelf_height> - <shelf_depth>8,4200000763</shelf_depth> + <grossWeight>12,1000003815</grossWeight> + <netWeight>10,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>10,3999996185</shelfWidth> + <shelfHeight>14,8999996185</shelfHeight> + <shelfDepth>8,4200000763</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Prepared Salad</product_name> + <brandName>High Top</brandName> + <productName>High Top Prepared Salad</productName> <sku>36780821681</sku> <srp>1,6599999666</srp> - <gross_weight>10,5</gross_weight> - <net_weight>8,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>5</shelf_width> - <shelf_height>16,2000007629</shelf_height> - <shelf_depth>3,2999999523</shelf_depth> + <grossWeight>10,5</grossWeight> + <netWeight>8,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>5</shelfWidth> + <shelfHeight>16,2000007629</shelfHeight> + <shelfDepth>3,2999999523</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Onions</product_name> + <brandName>High Top</brandName> + <productName>High Top Onions</productName> <sku>42548740506</sku> <srp>1,3300000429</srp> - <gross_weight>19,5</gross_weight> - <net_weight>16,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>20,2999992371</shelf_width> - <shelf_height>18,2000007629</shelf_height> - <shelf_depth>12,3000001907</shelf_depth> + <grossWeight>19,5</grossWeight> + <netWeight>16,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>20,2999992371</shelfWidth> + <shelfHeight>18,2000007629</shelfHeight> + <shelfDepth>12,3000001907</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Green Pepper</product_name> + <brandName>High Top</brandName> + <productName>High Top Green Pepper</productName> <sku>83242968916</sku> <srp>2,75</srp> - <gross_weight>19,7000007629</gross_weight> - <net_weight>18,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>3,9300000668</shelf_width> - <shelf_height>15,1000003815</shelf_height> - <shelf_depth>21,6000003815</shelf_depth> + <grossWeight>19,7000007629</grossWeight> + <netWeight>18,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>3,9300000668</shelfWidth> + <shelfHeight>15,1000003815</shelfHeight> + <shelfDepth>21,6000003815</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Shitake Mushrooms</product_name> + <brandName>High Top</brandName> + <productName>High Top Shitake Mushrooms</productName> <sku>34346523880</sku> <srp>0,6899999976</srp> - <gross_weight>12,3000001907</gross_weight> - <net_weight>11,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>17,2999992371</shelf_width> - <shelf_height>18,2000007629</shelf_height> - <shelf_depth>10,8999996185</shelf_depth> + <grossWeight>12,3000001907</grossWeight> + <netWeight>11,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>17,2999992371</shelfWidth> + <shelfHeight>18,2000007629</shelfHeight> + <shelfDepth>10,8999996185</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Lettuce</product_name> + <brandName>High Top</brandName> + <productName>High Top Lettuce</productName> <sku>79397689700</sku> <srp>0,9300000072</srp> - <gross_weight>16,1000003815</gross_weight> - <net_weight>14,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>16,1000003815</shelf_width> - <shelf_height>15,1000003815</shelf_height> - <shelf_depth>14,5</shelf_depth> + <grossWeight>16,1000003815</grossWeight> + <netWeight>14,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>16,1000003815</shelfWidth> + <shelfHeight>15,1000003815</shelfHeight> + <shelfDepth>14,5</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Elephant Garlic</product_name> + <brandName>High Top</brandName> + <productName>High Top Elephant Garlic</productName> <sku>89739010930</sku> <srp>1,8400000334</srp> - <gross_weight>9,0500001907</gross_weight> - <net_weight>6,0500001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>13,1999998093</shelf_width> - <shelf_height>6,0700001717</shelf_height> - <shelf_depth>13,5</shelf_depth> + <grossWeight>9,0500001907</grossWeight> + <netWeight>6,0500001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>13,1999998093</shelfWidth> + <shelfHeight>6,0700001717</shelfHeight> + <shelfDepth>13,5</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Red Pepper</product_name> + <brandName>High Top</brandName> + <productName>High Top Red Pepper</productName> <sku>80125812888</sku> <srp>2,4100000858</srp> - <gross_weight>7,0599999428</gross_weight> - <net_weight>5,0500001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>4,1300001144</shelf_width> - <shelf_height>19,5</shelf_height> - <shelf_depth>18,6000003815</shelf_depth> + <grossWeight>7,0599999428</grossWeight> + <netWeight>5,0500001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>4,1300001144</shelfWidth> + <shelfHeight>19,5</shelfHeight> + <shelfDepth>18,6000003815</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Garlic</product_name> + <brandName>High Top</brandName> + <productName>High Top Garlic</productName> <sku>83607030510</sku> <srp>3,4000000954</srp> - <gross_weight>20</gross_weight> - <net_weight>18</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>22,7000007629</shelf_width> - <shelf_height>11,8000001907</shelf_height> - <shelf_depth>6,4099998474</shelf_depth> + <grossWeight>20</grossWeight> + <netWeight>18</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>22,7000007629</shelfWidth> + <shelfHeight>11,8000001907</shelfHeight> + <shelfDepth>6,4099998474</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Potatos</product_name> + <brandName>High Top</brandName> + <productName>High Top Potatos</productName> <sku>43231598734</sku> <srp>0,5699999928</srp> - <gross_weight>9,3000001907</gross_weight> - <net_weight>7,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>11,3999996185</shelf_width> - <shelf_height>8,029999733</shelf_height> - <shelf_depth>4,1399998665</shelf_depth> + <grossWeight>9,3000001907</grossWeight> + <netWeight>7,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>11,3999996185</shelfWidth> + <shelfHeight>8,029999733</shelfHeight> + <shelfDepth>4,1399998665</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Cauliflower</product_name> + <brandName>High Top</brandName> + <productName>High Top Cauliflower</productName> <sku>82048452496</sku> <srp>2,2300000191</srp> - <gross_weight>18,7000007629</gross_weight> - <net_weight>17,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>9,529999733</shelf_width> - <shelf_height>13,3999996185</shelf_height> - <shelf_depth>8,0900001526</shelf_depth> + <grossWeight>18,7000007629</grossWeight> + <netWeight>17,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>9,529999733</shelfWidth> + <shelfHeight>13,3999996185</shelfHeight> + <shelfDepth>8,0900001526</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Tomatos</product_name> + <brandName>High Top</brandName> + <productName>High Top Tomatos</productName> <sku>10910786986</sku> <srp>1,3200000525</srp> - <gross_weight>14,8000001907</gross_weight> - <net_weight>13,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>12,6000003815</shelf_width> - <shelf_height>13,3999996185</shelf_height> - <shelf_depth>3,6700000763</shelf_depth> + <grossWeight>14,8000001907</grossWeight> + <netWeight>13,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>12,6000003815</shelfWidth> + <shelfHeight>13,3999996185</shelfHeight> + <shelfDepth>3,6700000763</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Mushrooms</product_name> + <brandName>High Top</brandName> + <productName>High Top Mushrooms</productName> <sku>18965407013</sku> <srp>2,5799999237</srp> - <gross_weight>14,6999998093</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>22,2999992371</shelf_width> - <shelf_height>19,2000007629</shelf_height> - <shelf_depth>10,6000003815</shelf_depth> + <grossWeight>14,6999998093</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>22,2999992371</shelfWidth> + <shelfHeight>19,2000007629</shelfHeight> + <shelfDepth>10,6000003815</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Baby Onion</product_name> + <brandName>High Top</brandName> + <productName>High Top Baby Onion</productName> <sku>61946336627</sku> <srp>3,4500000477</srp> - <gross_weight>8,5100002289</gross_weight> - <net_weight>6,5100002289</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>5,6199998856</shelf_width> - <shelf_height>8,029999733</shelf_height> - <shelf_depth>21,7999992371</shelf_depth> + <grossWeight>8,5100002289</grossWeight> + <netWeight>6,5100002289</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>5,6199998856</shelfWidth> + <shelfHeight>8,029999733</shelfHeight> + <shelfDepth>21,7999992371</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Dried Mushrooms</product_name> + <brandName>High Top</brandName> + <productName>High Top Dried Mushrooms</productName> <sku>39238722920</sku> <srp>3,7400000095</srp> - <gross_weight>18,7000007629</gross_weight> - <net_weight>17,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>9,5900001526</shelf_width> - <shelf_height>17,8999996185</shelf_height> - <shelf_depth>5,4699997902</shelf_depth> + <grossWeight>18,7000007629</grossWeight> + <netWeight>17,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>9,5900001526</shelfWidth> + <shelfHeight>17,8999996185</shelfHeight> + <shelfDepth>5,4699997902</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Fresh Lima Beans</product_name> + <brandName>High Top</brandName> + <productName>High Top Fresh Lima Beans</productName> <sku>86576589941</sku> <srp>2,8699998856</srp> - <gross_weight>12,6000003815</gross_weight> - <net_weight>9,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>19,8999996185</shelf_width> - <shelf_height>14,3999996185</shelf_height> - <shelf_depth>16,7000007629</shelf_depth> + <grossWeight>12,6000003815</grossWeight> + <netWeight>9,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>19,8999996185</shelfWidth> + <shelfHeight>14,3999996185</shelfHeight> + <shelfDepth>16,7000007629</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Squash</product_name> + <brandName>High Top</brandName> + <productName>High Top Squash</productName> <sku>33106742501</sku> <srp>1,5199999809</srp> - <gross_weight>10,6999998093</gross_weight> - <net_weight>7,6900000572</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>20,2999992371</shelf_width> - <shelf_height>15,6000003815</shelf_height> - <shelf_depth>14,1999998093</shelf_depth> + <grossWeight>10,6999998093</grossWeight> + <netWeight>7,6900000572</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>20,2999992371</shelfWidth> + <shelfHeight>15,6000003815</shelfHeight> + <shelfDepth>14,1999998093</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Broccoli</product_name> + <brandName>High Top</brandName> + <productName>High Top Broccoli</productName> <sku>89910210967</sku> <srp>0,6299999952</srp> - <gross_weight>8,8500003815</gross_weight> - <net_weight>5,8499999046</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>6,1700000763</shelf_width> - <shelf_height>12</shelf_height> - <shelf_depth>10,3000001907</shelf_depth> + <grossWeight>8,8500003815</grossWeight> + <netWeight>5,8499999046</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>6,1700000763</shelfWidth> + <shelfHeight>12</shelfHeight> + <shelfDepth>10,3000001907</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Sweet Onion</product_name> + <brandName>High Top</brandName> + <productName>High Top Sweet Onion</productName> <sku>98010095953</sku> <srp>1,2400000095</srp> - <gross_weight>13,5</gross_weight> - <net_weight>11,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>16</shelf_width> - <shelf_height>17,7999992371</shelf_height> - <shelf_depth>11,3000001907</shelf_depth> + <grossWeight>13,5</grossWeight> + <netWeight>11,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>16</shelfWidth> + <shelfHeight>17,7999992371</shelfHeight> + <shelfDepth>11,3000001907</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Summer Squash</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Summer Squash</productName> <sku>91507927775</sku> <srp>2,8499999046</srp> - <gross_weight>12</gross_weight> - <net_weight>11</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>16,7000007629</shelf_width> - <shelf_height>11,3000001907</shelf_height> - <shelf_depth>6,9400000572</shelf_depth> + <grossWeight>12</grossWeight> + <netWeight>11</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>16,7000007629</shelfWidth> + <shelfHeight>11,3000001907</shelfHeight> + <shelfDepth>6,9400000572</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Corn on the Cob</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Corn on the Cob</productName> <sku>64226911664</sku> <srp>1,2000000477</srp> - <gross_weight>7,2600002289</gross_weight> - <net_weight>6,2600002289</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>5,1399998665</shelf_width> - <shelf_height>14,6000003815</shelf_height> - <shelf_depth>10,3000001907</shelf_depth> + <grossWeight>7,2600002289</grossWeight> + <netWeight>6,2600002289</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>5,1399998665</shelfWidth> + <shelfHeight>14,6000003815</shelfHeight> + <shelfDepth>10,3000001907</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Asparagus</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Asparagus</productName> <sku>59187116026</sku> <srp>0,9599999785</srp> - <gross_weight>21,6000003815</gross_weight> - <net_weight>20,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>20,6000003815</shelf_width> - <shelf_height>20,2999992371</shelf_height> - <shelf_depth>20,1000003815</shelf_depth> + <grossWeight>21,6000003815</grossWeight> + <netWeight>20,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>20,6000003815</shelfWidth> + <shelfHeight>20,2999992371</shelfHeight> + <shelfDepth>20,1000003815</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Sweet Peas</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Sweet Peas</productName> <sku>91143866181</sku> <srp>1,3200000525</srp> - <gross_weight>6,2899999619</gross_weight> - <net_weight>5,2800002098</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>16,5</shelf_width> - <shelf_height>8,4499998093</shelf_height> - <shelf_depth>16,7999992371</shelf_depth> + <grossWeight>6,2899999619</grossWeight> + <netWeight>5,2800002098</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>16,5</shelfWidth> + <shelfHeight>8,4499998093</shelfHeight> + <shelfDepth>16,7999992371</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony New Potatos</product_name> + <brandName>Ebony</brandName> + <productName>Ebony New Potatos</productName> <sku>55341836810</sku> <srp>2,1900000572</srp> - <gross_weight>7,9600000381</gross_weight> - <net_weight>4,9600000381</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>5,7600002289</shelf_width> - <shelf_height>22,1000003815</shelf_height> - <shelf_depth>5,7199997902</shelf_depth> + <grossWeight>7,9600000381</grossWeight> + <netWeight>4,9600000381</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>5,7600002289</shelfWidth> + <shelfHeight>22,1000003815</shelfHeight> + <shelfDepth>5,7199997902</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Beets</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Beets</productName> <sku>32634223103</sku> <srp>2,7100000381</srp> - <gross_weight>14,6000003815</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>9,779999733</shelf_width> - <shelf_height>11,6999998093</shelf_height> - <shelf_depth>10,5</shelf_depth> + <grossWeight>14,6000003815</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>9,779999733</shelfWidth> + <shelfHeight>11,6999998093</shelfHeight> + <shelfDepth>10,5</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Prepared Salad</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Prepared Salad</productName> <sku>79972090125</sku> <srp>2,8399999142</srp> - <gross_weight>20,7999992371</gross_weight> - <net_weight>18,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>3,1600000858</shelf_width> - <shelf_height>10,1999998093</shelf_height> - <shelf_depth>22,8999996185</shelf_depth> + <grossWeight>20,7999992371</grossWeight> + <netWeight>18,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>3,1600000858</shelfWidth> + <shelfHeight>10,1999998093</shelfHeight> + <shelfDepth>22,8999996185</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Onions</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Onions</productName> <sku>81383071541</sku> <srp>3,2599999905</srp> - <gross_weight>11,5</gross_weight> - <net_weight>9,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>7,3699998856</shelf_width> - <shelf_height>8,779999733</shelf_height> - <shelf_depth>22,7000007629</shelf_depth> + <grossWeight>11,5</grossWeight> + <netWeight>9,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>7,3699998856</shelfWidth> + <shelfHeight>8,779999733</shelfHeight> + <shelfDepth>22,7000007629</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Green Pepper</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Green Pepper</productName> <sku>74056574702</sku> <srp>2,6500000954</srp> - <gross_weight>10,8000001907</gross_weight> - <net_weight>8,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>17,6000003815</shelf_width> - <shelf_height>15,6999998093</shelf_height> - <shelf_depth>22,2000007629</shelf_depth> + <grossWeight>10,8000001907</grossWeight> + <netWeight>8,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>17,6000003815</shelfWidth> + <shelfHeight>15,6999998093</shelfHeight> + <shelfDepth>22,2000007629</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Shitake Mushrooms</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Shitake Mushrooms</productName> <sku>79824493527</sku> <srp>2,9900000095</srp> - <gross_weight>12,3999996185</gross_weight> - <net_weight>10,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>18,2000007629</shelf_width> - <shelf_height>6,1399998665</shelf_height> - <shelf_depth>13,6000003815</shelf_depth> + <grossWeight>12,3999996185</grossWeight> + <netWeight>10,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>18,2000007629</shelfWidth> + <shelfHeight>6,1399998665</shelfHeight> + <shelfDepth>13,6000003815</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Lettuce</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Lettuce</productName> <sku>65637893080</sku> <srp>3,5099999905</srp> - <gross_weight>21,3999996185</gross_weight> - <net_weight>19,2999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>4,1500000954</shelf_width> - <shelf_height>9,25</shelf_height> - <shelf_depth>5,2100000381</shelf_depth> + <grossWeight>21,3999996185</grossWeight> + <netWeight>19,2999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>4,1500000954</shelfWidth> + <shelfHeight>9,25</shelfHeight> + <shelfDepth>5,2100000381</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Elephant Garlic</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Elephant Garlic</productName> <sku>40643578171</sku> <srp>2,2100000381</srp> - <gross_weight>7,4800000191</gross_weight> - <net_weight>4,4800000191</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>6,9200000763</shelf_width> - <shelf_height>16,2999992371</shelf_height> - <shelf_depth>6,4400000572</shelf_depth> + <grossWeight>7,4800000191</grossWeight> + <netWeight>4,4800000191</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>6,9200000763</shelfWidth> + <shelfHeight>16,2999992371</shelfHeight> + <shelfDepth>6,4400000572</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Red Pepper</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Red Pepper</productName> <sku>61792613863</sku> <srp>2,8800001144</srp> - <gross_weight>16,8999996185</gross_weight> - <net_weight>13,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>14,3000001907</shelf_width> - <shelf_height>20,5</shelf_height> - <shelf_depth>7,8800001144</shelf_depth> + <grossWeight>16,8999996185</grossWeight> + <netWeight>13,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>14,3000001907</shelfWidth> + <shelfHeight>20,5</shelfHeight> + <shelfDepth>7,8800001144</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Garlic</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Garlic</productName> <sku>72133935093</sku> <srp>2,5999999046</srp> - <gross_weight>8,1000003815</gross_weight> - <net_weight>6,0999999046</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>21,1000003815</shelf_width> - <shelf_height>13,5</shelf_height> - <shelf_depth>7,5300002098</shelf_depth> + <grossWeight>8,1000003815</grossWeight> + <netWeight>6,0999999046</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>21,1000003815</shelfWidth> + <shelfHeight>13,5</shelfHeight> + <shelfDepth>7,5300002098</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Potatos</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Potatos</productName> <sku>62520737051</sku> <srp>1,4099999666</srp> - <gross_weight>21,1000003815</gross_weight> - <net_weight>20,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>8,6999998093</shelf_width> - <shelf_height>6,9800000191</shelf_height> - <shelf_depth>22,7999992371</shelf_depth> + <grossWeight>21,1000003815</grossWeight> + <netWeight>20,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>8,6999998093</shelfWidth> + <shelfHeight>6,9800000191</shelfHeight> + <shelfDepth>22,7999992371</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Cauliflower</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Cauliflower</productName> <sku>30882783532</sku> <srp>1,3899999857</srp> - <gross_weight>19,3999996185</gross_weight> - <net_weight>17,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>14,1000003815</shelf_width> - <shelf_height>18,2000007629</shelf_height> - <shelf_depth>15,1999998093</shelf_depth> + <grossWeight>19,3999996185</grossWeight> + <netWeight>17,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>14,1000003815</shelfWidth> + <shelfHeight>18,2000007629</shelfHeight> + <shelfDepth>15,1999998093</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Tomatos</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Tomatos</productName> <sku>80507351756</sku> <srp>1,2200000286</srp> - <gross_weight>18,7000007629</gross_weight> - <net_weight>16,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>5,1199998856</shelf_width> - <shelf_height>20,7000007629</shelf_height> - <shelf_depth>14,6999998093</shelf_depth> + <grossWeight>18,7000007629</grossWeight> + <netWeight>16,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>5,1199998856</shelfWidth> + <shelfHeight>20,7000007629</shelfHeight> + <shelfDepth>14,6999998093</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Mushrooms</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Mushrooms</productName> <sku>29324205517</sku> <srp>0,5699999928</srp> - <gross_weight>21,7000007629</gross_weight> - <net_weight>19,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>12,5</shelf_width> - <shelf_height>10,1000003815</shelf_height> - <shelf_depth>10,6000003815</shelf_depth> + <grossWeight>21,7000007629</grossWeight> + <netWeight>19,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>12,5</shelfWidth> + <shelfHeight>10,1000003815</shelfHeight> + <shelfDepth>10,6000003815</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Baby Onion</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Baby Onion</productName> <sku>48186540007</sku> <srp>2,9700000286</srp> - <gross_weight>17,3999996185</gross_weight> - <net_weight>15,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>11,3000001907</shelf_width> - <shelf_height>15,6000003815</shelf_height> - <shelf_depth>11,3000001907</shelf_depth> + <grossWeight>17,3999996185</grossWeight> + <netWeight>15,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>11,3000001907</shelfWidth> + <shelfHeight>15,6000003815</shelfHeight> + <shelfDepth>11,3000001907</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Dried Mushrooms</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Dried Mushrooms</productName> <sku>80143290162</sku> <srp>3,3399999142</srp> - <gross_weight>20,8999996185</gross_weight> - <net_weight>18,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>21</shelf_width> - <shelf_height>21,7000007629</shelf_height> - <shelf_depth>17,1000003815</shelf_depth> + <grossWeight>20,8999996185</grossWeight> + <netWeight>18,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>21</shelfWidth> + <shelfHeight>21,7000007629</shelfHeight> + <shelfDepth>17,1000003815</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Fresh Lima Beans</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Fresh Lima Beans</productName> <sku>44341260790</sku> <srp>1,4500000477</srp> - <gross_weight>14,3000001907</gross_weight> - <net_weight>11,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>9,1599998474</shelf_width> - <shelf_height>21,5</shelf_height> - <shelf_depth>18,6000003815</shelf_depth> + <grossWeight>14,3000001907</grossWeight> + <netWeight>11,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>9,1599998474</shelfWidth> + <shelfHeight>21,5</shelfHeight> + <shelfDepth>18,6000003815</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Squash</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Squash</productName> <sku>21633647084</sku> <srp>1,7300000191</srp> - <gross_weight>18,7000007629</gross_weight> - <net_weight>16,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>21,5</shelf_width> - <shelf_height>21</shelf_height> - <shelf_depth>9,1300001144</shelf_depth> + <grossWeight>18,7000007629</grossWeight> + <netWeight>16,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>21,5</shelfWidth> + <shelfHeight>21</shelfHeight> + <shelfDepth>9,1300001144</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Broccoli</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Broccoli</productName> <sku>14362275004</sku> <srp>2,8299999237</srp> - <gross_weight>20</gross_weight> - <net_weight>18</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>8,7600002289</shelf_width> - <shelf_height>19,3999996185</shelf_height> - <shelf_depth>9,6999998093</shelf_depth> + <grossWeight>20</grossWeight> + <netWeight>18</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>8,7600002289</shelfWidth> + <shelfHeight>19,3999996185</shelfHeight> + <shelfDepth>9,6999998093</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Sweet Onion</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Sweet Onion</productName> <sku>56979143023</sku> <srp>2,1700000763</srp> - <gross_weight>15,6000003815</gross_weight> - <net_weight>14,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>12,8000001907</shelf_width> - <shelf_height>20,2000007629</shelf_height> - <shelf_depth>13,6000003815</shelf_depth> + <grossWeight>15,6000003815</grossWeight> + <netWeight>14,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>12,8000001907</shelfWidth> + <shelfHeight>20,2000007629</shelfHeight> + <shelfDepth>13,6000003815</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Summer Squash</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Summer Squash</productName> <sku>28895309567</sku> <srp>0,7300000191</srp> - <gross_weight>18,7000007629</gross_weight> - <net_weight>16,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>6,9200000763</shelf_width> - <shelf_height>6,2100000381</shelf_height> - <shelf_depth>19,6000003815</shelf_depth> + <grossWeight>18,7000007629</grossWeight> + <netWeight>16,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>6,9200000763</shelfWidth> + <shelfHeight>6,2100000381</shelfHeight> + <shelfDepth>19,6000003815</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Corn on the Cob</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Corn on the Cob</productName> <sku>80806578993</sku> <srp>1,9400000572</srp> - <gross_weight>13</gross_weight> - <net_weight>10</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>20,7999992371</shelf_width> - <shelf_height>21,6000003815</shelf_height> - <shelf_depth>5,8600001335</shelf_depth> + <grossWeight>13</grossWeight> + <netWeight>10</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>20,7999992371</shelfWidth> + <shelfHeight>21,6000003815</shelfHeight> + <shelfDepth>5,8600001335</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Asparagus</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Asparagus</productName> <sku>55812264084</sku> <srp>3,6400001049</srp> - <gross_weight>8,3500003815</gross_weight> - <net_weight>6,3499999046</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>7,5599999428</shelf_width> - <shelf_height>4,9200000763</shelf_height> - <shelf_depth>14,1999998093</shelf_depth> + <grossWeight>8,3500003815</grossWeight> + <netWeight>6,3499999046</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>7,5599999428</shelfWidth> + <shelfHeight>4,9200000763</shelfHeight> + <shelfDepth>14,1999998093</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Sweet Peas</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Sweet Peas</productName> <sku>76961299777</sku> <srp>2,1900000572</srp> - <gross_weight>14,5</gross_weight> - <net_weight>12,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>19,6000003815</shelf_width> - <shelf_height>21,1000003815</shelf_height> - <shelf_depth>21,6000003815</shelf_depth> + <grossWeight>14,5</grossWeight> + <netWeight>12,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>19,6000003815</shelfWidth> + <shelfHeight>21,1000003815</shelfHeight> + <shelfDepth>21,6000003815</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale New Potatos</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale New Potatos</productName> <sku>21204751133</sku> <srp>1,1399999857</srp> - <gross_weight>14,8000001907</gross_weight> - <net_weight>12,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>13,3000001907</shelf_width> - <shelf_height>12,5</shelf_height> - <shelf_depth>8,470000267</shelf_depth> + <grossWeight>14,8000001907</grossWeight> + <netWeight>12,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>13,3000001907</shelfWidth> + <shelfHeight>12,5</shelfHeight> + <shelfDepth>8,470000267</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Beets</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Beets</productName> <sku>11591553092</sku> <srp>2,5999999046</srp> - <gross_weight>9,0900001526</gross_weight> - <net_weight>6,0900001526</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>18,5</shelf_width> - <shelf_height>20,2999992371</shelf_height> - <shelf_depth>19,5</shelf_depth> + <grossWeight>9,0900001526</grossWeight> + <netWeight>6,0900001526</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>18,5</shelfWidth> + <shelfHeight>20,2999992371</shelfHeight> + <shelfDepth>19,5</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Prepared Salad</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Prepared Salad</productName> <sku>15072770714</sku> <srp>2,5899999142</srp> - <gross_weight>9,7700004578</gross_weight> - <net_weight>7,7699999809</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>14,3999996185</shelf_width> - <shelf_height>8,4099998474</shelf_height> - <shelf_depth>16,1000003815</shelf_depth> + <grossWeight>9,7700004578</grossWeight> + <netWeight>7,7699999809</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>14,3999996185</shelfWidth> + <shelfHeight>8,4099998474</shelfHeight> + <shelfDepth>16,1000003815</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Onions</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Onions</productName> <sku>40795208811</sku> <srp>2,4100000858</srp> - <gross_weight>16,3999996185</gross_weight> - <net_weight>13,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>8,9499998093</shelf_width> - <shelf_height>10,1999998093</shelf_height> - <shelf_depth>8,4799995422</shelf_depth> + <grossWeight>16,3999996185</grossWeight> + <netWeight>13,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>8,9499998093</shelfWidth> + <shelfHeight>10,1999998093</shelfHeight> + <shelfDepth>8,4799995422</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Green Pepper</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Green Pepper</productName> <sku>44229219555</sku> <srp>1,6499999762</srp> - <gross_weight>13,3999996185</gross_weight> - <net_weight>11,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>7,3299999237</shelf_width> - <shelf_height>13,6000003815</shelf_height> - <shelf_depth>21,2000007629</shelf_depth> + <grossWeight>13,3999996185</grossWeight> + <netWeight>11,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>7,3299999237</shelfWidth> + <shelfHeight>13,6000003815</shelfHeight> + <shelfDepth>21,2000007629</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Shitake Mushrooms</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Shitake Mushrooms</productName> <sku>63091554045</sku> <srp>3,5099999905</srp> - <gross_weight>19,6000003815</gross_weight> - <net_weight>18,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>20,7000007629</shelf_width> - <shelf_height>12,1000003815</shelf_height> - <shelf_depth>13,6999998093</shelf_depth> + <grossWeight>19,6000003815</grossWeight> + <netWeight>18,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>20,7000007629</shelfWidth> + <shelfHeight>12,1000003815</shelfHeight> + <shelfDepth>13,6999998093</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Lettuce</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Lettuce</productName> <sku>71146174073</sku> <srp>1,7699999809</srp> - <gross_weight>20,2999992371</gross_weight> - <net_weight>19,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>15,5</shelf_width> - <shelf_height>6,9099998474</shelf_height> - <shelf_depth>20,2999992371</shelf_depth> + <grossWeight>20,2999992371</grossWeight> + <netWeight>19,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>15,5</shelfWidth> + <shelfHeight>6,9099998474</shelfHeight> + <shelfDepth>20,2999992371</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Elephant Garlic</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Elephant Garlic</productName> <sku>59246274828</sku> <srp>2,6400001049</srp> - <gross_weight>7,4299998283</gross_weight> - <net_weight>5,4200000763</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>11,1000003815</shelf_width> - <shelf_height>21,7999992371</shelf_height> - <shelf_depth>3,8299999237</shelf_depth> + <grossWeight>7,4299998283</grossWeight> + <netWeight>5,4200000763</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>11,1000003815</shelfWidth> + <shelfHeight>21,7999992371</shelfHeight> + <shelfDepth>3,8299999237</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Red Pepper</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Red Pepper</productName> <sku>36538661122</sku> <srp>1,9299999475</srp> - <gross_weight>9,0200004578</gross_weight> - <net_weight>6,0199999809</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>11,6999998093</shelf_width> - <shelf_height>12,1999998093</shelf_height> - <shelf_depth>15,1999998093</shelf_depth> + <grossWeight>9,0200004578</grossWeight> + <netWeight>6,0199999809</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>11,6999998093</shelfWidth> + <shelfHeight>12,1999998093</shelfHeight> + <shelfDepth>15,1999998093</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Garlic</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Garlic</productName> <sku>59974398016</sku> <srp>1,1699999571</srp> - <gross_weight>9,220000267</gross_weight> - <net_weight>6,2199997902</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>7,0100002289</shelf_width> - <shelf_height>19,2000007629</shelf_height> - <shelf_depth>19,3999996185</shelf_depth> + <grossWeight>9,220000267</grossWeight> + <netWeight>6,2199997902</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>7,0100002289</shelfWidth> + <shelfHeight>19,2000007629</shelfHeight> + <shelfDepth>19,3999996185</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Potatos</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Potatos</productName> <sku>96504550576</sku> <srp>0,8399999738</srp> - <gross_weight>11,1999998093</gross_weight> - <net_weight>10,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>9,7899999619</shelf_width> - <shelf_height>6,3400001526</shelf_height> - <shelf_depth>20,6000003815</shelf_depth> + <grossWeight>11,1999998093</grossWeight> + <netWeight>10,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>9,7899999619</shelfWidth> + <shelfHeight>6,3400001526</shelfHeight> + <shelfDepth>20,6000003815</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Cauliflower</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Cauliflower</productName> <sku>23080183863</sku> <srp>1,8700000048</srp> - <gross_weight>14,6999998093</gross_weight> - <net_weight>13,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>7,8299999237</shelf_width> - <shelf_height>6,8499999046</shelf_height> - <shelf_depth>8,9300003052</shelf_depth> + <grossWeight>14,6999998093</grossWeight> + <netWeight>13,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>7,8299999237</shelfWidth> + <shelfHeight>6,8499999046</shelfHeight> + <shelfDepth>8,9300003052</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Tomatos</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Tomatos</productName> <sku>28848102688</sku> <srp>2,5499999523</srp> - <gross_weight>11,8999996185</gross_weight> - <net_weight>10,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>4</shelf_width> - <shelf_height>3,5799999237</shelf_height> - <shelf_depth>21,7000007629</shelf_depth> + <grossWeight>11,8999996185</grossWeight> + <netWeight>10,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>4</shelfWidth> + <shelfHeight>3,5799999237</shelfHeight> + <shelfDepth>21,7000007629</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Mushrooms</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Mushrooms</productName> <sku>69542331099</sku> <srp>2,9600000381</srp> - <gross_weight>13,8999996185</gross_weight> - <net_weight>11,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>16,7999992371</shelf_width> - <shelf_height>5,1199998856</shelf_height> - <shelf_depth>20,3999996185</shelf_depth> + <grossWeight>13,8999996185</grossWeight> + <netWeight>11,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>16,7999992371</shelfWidth> + <shelfHeight>5,1199998856</shelfHeight> + <shelfDepth>20,3999996185</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Baby Onion</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Baby Onion</productName> <sku>44548016190</sku> <srp>2,6600000858</srp> - <gross_weight>17</gross_weight> - <net_weight>14</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>22,6000003815</shelf_width> - <shelf_height>14,3999996185</shelf_height> - <shelf_depth>21,3999996185</shelf_depth> + <grossWeight>17</grossWeight> + <netWeight>14</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>22,6000003815</shelfWidth> + <shelfHeight>14,3999996185</shelfHeight> + <shelfDepth>21,3999996185</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Dried Mushrooms</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Dried Mushrooms</productName> <sku>65697051882</sku> <srp>1,4500000477</srp> - <gross_weight>17,1000003815</gross_weight> - <net_weight>15,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>3,2300000191</shelf_width> - <shelf_height>20</shelf_height> - <shelf_depth>16,1000003815</shelf_depth> + <grossWeight>17,1000003815</grossWeight> + <netWeight>15,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>3,2300000191</shelfWidth> + <shelfHeight>20</shelfHeight> + <shelfDepth>16,1000003815</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Fresh Lima Beans</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Fresh Lima Beans</productName> <sku>99940503239</sku> <srp>3,1700000763</srp> - <gross_weight>20,1000003815</gross_weight> - <net_weight>18,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>10,6000003815</shelf_width> - <shelf_height>9,4200000763</shelf_height> - <shelf_depth>12</shelf_depth> + <grossWeight>20,1000003815</grossWeight> + <netWeight>18,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>10,6000003815</shelfWidth> + <shelfHeight>9,4200000763</shelfHeight> + <shelfDepth>12</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Squash</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Squash</productName> <sku>90327305197</sku> <srp>1,8600000143</srp> - <gross_weight>21,2000007629</gross_weight> - <net_weight>20,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>19,7999992371</shelf_width> - <shelf_height>13,1000003815</shelf_height> - <shelf_depth>11,1000003815</shelf_depth> + <grossWeight>21,2000007629</grossWeight> + <netWeight>20,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>19,7999992371</shelfWidth> + <shelfHeight>13,1000003815</shelfHeight> + <shelfDepth>11,1000003815</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Broccoli</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Broccoli</productName> <sku>40281608700</sku> <srp>1,8099999428</srp> - <gross_weight>20,8999996185</gross_weight> - <net_weight>17,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>6,6300001144</shelf_width> - <shelf_height>8,3800001144</shelf_height> - <shelf_depth>9,3100004196</shelf_depth> + <grossWeight>20,8999996185</grossWeight> + <netWeight>17,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>6,6300001144</shelfWidth> + <shelfHeight>8,3800001144</shelfHeight> + <shelfDepth>9,3100004196</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Sweet Onion</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Sweet Onion</productName> <sku>21374009251</sku> <srp>1,3600000143</srp> - <gross_weight>13,5</gross_weight> - <net_weight>11,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>12,6000003815</shelf_width> - <shelf_height>16,7999992371</shelf_height> - <shelf_depth>8,9899997711</shelf_depth> + <grossWeight>13,5</grossWeight> + <netWeight>11,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>12,6000003815</shelfWidth> + <shelfHeight>16,7999992371</shelfHeight> + <shelfDepth>8,9899997711</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Summer Squash</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Summer Squash</productName> <sku>97098380923</sku> <srp>0,5500000119</srp> - <gross_weight>19,2000007629</gross_weight> - <net_weight>17,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>20,7000007629</shelf_width> - <shelf_height>20,2000007629</shelf_height> - <shelf_depth>7,1199998856</shelf_depth> + <grossWeight>19,2000007629</grossWeight> + <netWeight>17,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>20,7000007629</shelfWidth> + <shelfHeight>20,2000007629</shelfHeight> + <shelfDepth>7,1199998856</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Corn on the Cob</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Corn on the Cob</productName> <sku>41341832280</sku> <srp>2,7999999523</srp> - <gross_weight>12,6999998093</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>18,7999992371</shelf_width> - <shelf_height>5,5799999237</shelf_height> - <shelf_depth>11</shelf_depth> + <grossWeight>12,6999998093</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>18,7999992371</shelfWidth> + <shelfHeight>5,5799999237</shelfHeight> + <shelfDepth>11</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Asparagus</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Asparagus</productName> <sku>31728634238</sku> <srp>0,7799999714</srp> - <gross_weight>17,8999996185</gross_weight> - <net_weight>14,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>8,5399999619</shelf_width> - <shelf_height>6,2300000191</shelf_height> - <shelf_depth>3,7999999523</shelf_depth> + <grossWeight>17,8999996185</grossWeight> + <netWeight>14,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>8,5399999619</shelfWidth> + <shelfHeight>6,2300000191</shelfHeight> + <shelfDepth>3,7999999523</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Sweet Peas</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Sweet Peas</productName> <sku>35209851861</sku> <srp>3,5799999237</srp> - <gross_weight>19,8999996185</gross_weight> - <net_weight>18,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>11,3000001907</shelf_width> - <shelf_height>13,3000001907</shelf_height> - <shelf_depth>5,0300002098</shelf_depth> + <grossWeight>19,8999996185</grossWeight> + <netWeight>18,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>11,3000001907</shelfWidth> + <shelfHeight>13,3000001907</shelfHeight> + <shelfDepth>5,0300002098</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State New Potatos</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State New Potatos</productName> <sku>60932289958</sku> <srp>0,6700000167</srp> - <gross_weight>17,5</gross_weight> - <net_weight>14,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>19,8999996185</shelf_width> - <shelf_height>10</shelf_height> - <shelf_depth>20,1000003815</shelf_depth> + <grossWeight>17,5</grossWeight> + <netWeight>14,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>19,8999996185</shelfWidth> + <shelfHeight>10</shelfHeight> + <shelfDepth>20,1000003815</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Beets</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Beets</productName> <sku>33651273846</sku> <srp>3,4200000763</srp> - <gross_weight>20,6000003815</gross_weight> - <net_weight>19,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>36</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>5,5300002098</shelf_width> - <shelf_height>10,5</shelf_height> - <shelf_depth>6,1300001144</shelf_depth> + <grossWeight>20,6000003815</grossWeight> + <netWeight>19,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>36</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>5,5300002098</shelfWidth> + <shelfHeight>10,5</shelfHeight> + <shelfDepth>6,1300001144</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Prepared Salad</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Prepared Salad</productName> <sku>52513608336</sku> <srp>2,5</srp> - <gross_weight>6,6599998474</gross_weight> - <net_weight>4,6500000954</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>18,3999996185</shelf_width> - <shelf_height>12</shelf_height> - <shelf_depth>4,8600001335</shelf_depth> + <grossWeight>6,6599998474</grossWeight> + <netWeight>4,6500000954</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>18,3999996185</shelfWidth> + <shelfHeight>12</shelfHeight> + <shelfDepth>4,8600001335</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Onions</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Onions</productName> <sku>91546927094</sku> <srp>2,5299999714</srp> - <gross_weight>15,8999996185</gross_weight> - <net_weight>13,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>14,8999996185</shelf_width> - <shelf_height>17,1000003815</shelf_height> - <shelf_depth>14,1999998093</shelf_depth> + <grossWeight>15,8999996185</grossWeight> + <netWeight>13,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>14,8999996185</shelfWidth> + <shelfHeight>17,1000003815</shelfHeight> + <shelfDepth>14,1999998093</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Green Pepper</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Green Pepper</productName> <sku>79647027850</sku> <srp>3,6400001049</srp> - <gross_weight>12</gross_weight> - <net_weight>10</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>17,7999992371</shelf_width> - <shelf_height>8,3000001907</shelf_height> - <shelf_depth>14,8000001907</shelf_depth> + <grossWeight>12</grossWeight> + <netWeight>10</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>17,7999992371</shelfWidth> + <shelfHeight>8,3000001907</shelfHeight> + <shelfDepth>14,8000001907</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Shitake Mushrooms</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Shitake Mushrooms</productName> <sku>56939414143</sku> <srp>2,9300000668</srp> - <gross_weight>11,8999996185</gross_weight> - <net_weight>9,8900003433</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>8,0900001526</shelf_width> - <shelf_height>20,7000007629</shelf_height> - <shelf_depth>6,7699999809</shelf_depth> + <grossWeight>11,8999996185</grossWeight> + <netWeight>9,8900003433</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>8,0900001526</shelfWidth> + <shelfHeight>20,7000007629</shelfHeight> + <shelfDepth>6,7699999809</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Lettuce</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Lettuce</productName> <sku>80375151038</sku> <srp>3,1700000763</srp> - <gross_weight>7,6599998474</gross_weight> - <net_weight>5,6500000954</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>6,9699997902</shelf_width> - <shelf_height>6,3000001907</shelf_height> - <shelf_depth>7,4899997711</shelf_depth> + <grossWeight>7,6599998474</grossWeight> + <netWeight>5,6500000954</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>6,9699997902</shelfWidth> + <shelfHeight>6,3000001907</shelfHeight> + <shelfDepth>7,4899997711</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Elephant Garlic</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Elephant Garlic</productName> <sku>50807433724</sku> <srp>1,7100000381</srp> - <gross_weight>16,1000003815</gross_weight> - <net_weight>15,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>21,7999992371</shelf_width> - <shelf_height>20,5</shelf_height> - <shelf_depth>16,7000007629</shelf_depth> + <grossWeight>16,1000003815</grossWeight> + <netWeight>15,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>21,7999992371</shelfWidth> + <shelfHeight>20,5</shelfHeight> + <shelfDepth>16,7000007629</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Red Pepper</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Red Pepper</productName> <sku>43480936884</sku> <srp>3,8699998856</srp> - <gross_weight>9,5500001907</gross_weight> - <net_weight>6,5500001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>10</shelf_width> - <shelf_height>20,2999992371</shelf_height> - <shelf_depth>18,1000003815</shelf_depth> + <grossWeight>9,5500001907</grossWeight> + <netWeight>6,5500001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>10</shelfWidth> + <shelfHeight>20,2999992371</shelfHeight> + <shelfDepth>18,1000003815</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Garlic</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Garlic</productName> <sku>49248855710</sku> <srp>0,7400000095</srp> - <gross_weight>15,1999998093</gross_weight> - <net_weight>14,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>22,2999992371</shelf_width> - <shelf_height>19,8999996185</shelf_height> - <shelf_depth>8,1499996185</shelf_depth> + <grossWeight>15,1999998093</grossWeight> + <netWeight>14,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>22,2999992371</shelfWidth> + <shelfHeight>19,8999996185</shelfHeight> + <shelfDepth>8,1499996185</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Potatos</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Potatos</productName> <sku>11160125136</sku> <srp>1,9600000381</srp> - <gross_weight>8,1700000763</gross_weight> - <net_weight>6,1700000763</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>9,4300003052</shelf_width> - <shelf_height>16,3999996185</shelf_height> - <shelf_depth>9,7399997711</shelf_depth> + <grossWeight>8,1700000763</grossWeight> + <netWeight>6,1700000763</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>9,4300003052</shelfWidth> + <shelfHeight>16,3999996185</shelfHeight> + <shelfDepth>9,7399997711</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Cauliflower</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Cauliflower</productName> <sku>64948769211</sku> <srp>0,8100000024</srp> - <gross_weight>6,6300001144</gross_weight> - <net_weight>5,6300001144</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>12,6000003815</shelf_width> - <shelf_height>21</shelf_height> - <shelf_depth>22,1000003815</shelf_depth> + <grossWeight>6,6300001144</grossWeight> + <netWeight>5,6300001144</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>12,6000003815</shelfWidth> + <shelfHeight>21</shelfHeight> + <shelfDepth>22,1000003815</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Tomatos</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Tomatos</productName> <sku>86097804903</sku> <srp>2,2100000381</srp> - <gross_weight>19,6000003815</gross_weight> - <net_weight>18,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>20,2999992371</shelf_width> - <shelf_height>3,2999999523</shelf_height> - <shelf_depth>12,3999996185</shelf_depth> + <grossWeight>19,6000003815</grossWeight> + <netWeight>18,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>20,2999992371</shelfWidth> + <shelfHeight>3,2999999523</shelfHeight> + <shelfDepth>12,3999996185</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Mushrooms</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Mushrooms</productName> <sku>30341256260</sku> <srp>1,1599999666</srp> - <gross_weight>17,1000003815</gross_weight> - <net_weight>15,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>21,1000003815</shelf_width> - <shelf_height>12,3000001907</shelf_height> - <shelf_depth>10</shelf_depth> + <grossWeight>17,1000003815</grossWeight> + <netWeight>15,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>21,1000003815</shelfWidth> + <shelfHeight>12,3000001907</shelfHeight> + <shelfDepth>10</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Baby Onion</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Baby Onion</productName> <sku>20728058218</sku> <srp>2,6199998856</srp> - <gross_weight>12,8000001907</gross_weight> - <net_weight>11,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>20,7000007629</shelf_width> - <shelf_height>13,3000001907</shelf_height> - <shelf_depth>10,8000001907</shelf_depth> + <grossWeight>12,8000001907</grossWeight> + <netWeight>11,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>20,7000007629</shelfWidth> + <shelfHeight>13,3000001907</shelfHeight> + <shelfDepth>10,8000001907</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Dried Mushrooms</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Dried Mushrooms</productName> <sku>24209275841</sku> <srp>2,6099998951</srp> - <gross_weight>17,6000003815</gross_weight> - <net_weight>15,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>17,2000007629</shelf_width> - <shelf_height>18,3999996185</shelf_height> - <shelf_depth>21,1000003815</shelf_depth> + <grossWeight>17,6000003815</grossWeight> + <netWeight>15,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>17,2000007629</shelfWidth> + <shelfHeight>18,3999996185</shelfHeight> + <shelfDepth>21,1000003815</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Fresh Lima Beans</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Fresh Lima Beans</productName> <sku>49931713938</sku> <srp>2,4300000668</srp> - <gross_weight>18,7999992371</gross_weight> - <net_weight>17,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>3,6199998856</shelf_width> - <shelf_height>8,779999733</shelf_height> - <shelf_depth>15,1000003815</shelf_depth> + <grossWeight>18,7999992371</grossWeight> + <netWeight>17,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>3,6199998856</shelfWidth> + <shelfHeight>8,779999733</shelfHeight> + <shelfDepth>15,1000003815</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Squash</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Squash</productName> <sku>22650697827</sku> <srp>1,5499999523</srp> - <gross_weight>14</gross_weight> - <net_weight>11</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>4,0399999619</shelf_width> - <shelf_height>19,8999996185</shelf_height> - <shelf_depth>3,4600000381</shelf_depth> + <grossWeight>14</grossWeight> + <netWeight>11</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>4,0399999619</shelfWidth> + <shelfHeight>19,8999996185</shelfHeight> + <shelfDepth>3,4600000381</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Broccoli</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Broccoli</productName> <sku>86050598025</sku> <srp>1,3400000334</srp> - <gross_weight>10,3000001907</gross_weight> - <net_weight>8,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>8,7600002289</shelf_width> - <shelf_height>12,6999998093</shelf_height> - <shelf_depth>20,1000003815</shelf_depth> + <grossWeight>10,3000001907</grossWeight> + <netWeight>8,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>8,7600002289</shelfWidth> + <shelfHeight>12,6999998093</shelfHeight> + <shelfDepth>20,1000003815</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Sweet Onion</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Sweet Onion</productName> <sku>38667466044</sku> <srp>1,5700000525</srp> - <gross_weight>21,3999996185</gross_weight> - <net_weight>20,2999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>7,2100000381</shelf_width> - <shelf_height>7,6599998474</shelf_height> - <shelf_depth>9,6700000763</shelf_depth> + <grossWeight>21,3999996185</grossWeight> + <netWeight>20,2999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>7,2100000381</shelfWidth> + <shelfHeight>7,6599998474</shelfHeight> + <shelfDepth>9,6700000763</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Summer Squash</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Summer Squash</productName> <sku>22748995423</sku> <srp>1,7300000191</srp> - <gross_weight>15,1999998093</gross_weight> - <net_weight>12,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>4,3899998665</shelf_width> - <shelf_height>7,6900000572</shelf_height> - <shelf_depth>21,1000003815</shelf_depth> + <grossWeight>15,1999998093</grossWeight> + <netWeight>12,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>4,3899998665</shelfWidth> + <shelfHeight>7,6900000572</shelfHeight> + <shelfDepth>21,1000003815</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Corn on the Cob</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Corn on the Cob</productName> <sku>76946966052</sku> <srp>2,8399999142</srp> - <gross_weight>13,6999998093</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>17,1000003815</shelf_width> - <shelf_height>20</shelf_height> - <shelf_depth>5,9899997711</shelf_depth> + <grossWeight>13,6999998093</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>17,1000003815</shelfWidth> + <shelfHeight>20</shelfHeight> + <shelfDepth>5,9899997711</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Asparagus</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Asparagus</productName> <sku>78141482472</sku> <srp>2,2300000191</srp> - <gross_weight>8,0200004578</gross_weight> - <net_weight>6,0199999809</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>21,1000003815</shelf_width> - <shelf_height>9,9600000381</shelf_height> - <shelf_depth>9,6499996185</shelf_depth> + <grossWeight>8,0200004578</grossWeight> + <netWeight>6,0199999809</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>21,1000003815</shelfWidth> + <shelfHeight>9,9600000381</shelfHeight> + <shelfDepth>9,6499996185</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Sweet Peas</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Sweet Peas</productName> <sku>42555918097</sku> <srp>2,3699998856</srp> - <gross_weight>14,1000003815</gross_weight> - <net_weight>13,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>6,1100001335</shelf_width> - <shelf_height>18,5</shelf_height> - <shelf_depth>16,8999996185</shelf_depth> + <grossWeight>14,1000003815</grossWeight> + <netWeight>13,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>6,1100001335</shelfWidth> + <shelfHeight>18,5</shelfHeight> + <shelfDepth>16,8999996185</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos New Potatos</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos New Potatos</productName> <sku>79086070656</sku> <srp>3,9100000858</srp> - <gross_weight>17,2000007629</gross_weight> - <net_weight>15,1999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>11,8000001907</shelf_width> - <shelf_height>7,8800001144</shelf_height> - <shelf_depth>17,8999996185</shelf_depth> + <grossWeight>17,2000007629</grossWeight> + <netWeight>15,1999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>11,8000001907</shelfWidth> + <shelfHeight>7,8800001144</shelfHeight> + <shelfDepth>17,8999996185</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Beets</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Beets</productName> <sku>95661703944</sku> <srp>2,1800000668</srp> - <gross_weight>18,2999992371</gross_weight> - <net_weight>17,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>20</shelf_width> - <shelf_height>7,1300001144</shelf_height> - <shelf_depth>21,8999996185</shelf_depth> + <grossWeight>18,2999992371</grossWeight> + <netWeight>17,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>20</shelfWidth> + <shelfHeight>7,1300001144</shelfHeight> + <shelfDepth>21,8999996185</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Prepared Salad</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Prepared Salad</productName> <sku>11429622769</sku> <srp>3,7400000095</srp> - <gross_weight>13,1000003815</gross_weight> - <net_weight>12,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>4,9899997711</shelf_width> - <shelf_height>11,3999996185</shelf_height> - <shelf_depth>10,3999996185</shelf_depth> + <grossWeight>13,1000003815</grossWeight> + <netWeight>12,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>4,9899997711</shelfWidth> + <shelfHeight>11,3999996185</shelfHeight> + <shelfDepth>10,3999996185</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Onions</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Onions</productName> <sku>63340892195</sku> <srp>3,2699999809</srp> - <gross_weight>16,1000003815</gross_weight> - <net_weight>14,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>22,2999992371</shelf_width> - <shelf_height>6,4099998474</shelf_height> - <shelf_depth>8,9099998474</shelf_depth> + <grossWeight>16,1000003815</grossWeight> + <netWeight>14,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>22,2999992371</shelfWidth> + <shelfHeight>6,4099998474</shelfHeight> + <shelfDepth>8,9099998474</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Green Pepper</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Green Pepper</productName> <sku>38346577286</sku> <srp>3,8599998951</srp> - <gross_weight>17,2999992371</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>18,7999992371</shelf_width> - <shelf_height>11,1999998093</shelf_height> - <shelf_depth>20,3999996185</shelf_depth> + <grossWeight>17,2999992371</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>18,7999992371</shelfWidth> + <shelfHeight>11,1999998093</shelfHeight> + <shelfDepth>20,3999996185</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Shitake Mushrooms</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Shitake Mushrooms</productName> <sku>59495612978</sku> <srp>2,4000000954</srp> - <gross_weight>7,0599999428</gross_weight> - <net_weight>5,0500001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>21,5</shelf_width> - <shelf_height>3,0599999428</shelf_height> - <shelf_depth>17,8999996185</shelf_depth> + <grossWeight>7,0599999428</grossWeight> + <netWeight>5,0500001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>21,5</shelfWidth> + <shelfHeight>3,0599999428</shelfHeight> + <shelfDepth>17,8999996185</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Lettuce</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Lettuce</productName> <sku>93739064335</sku> <srp>3,3599998951</srp> - <gross_weight>18,7000007629</gross_weight> - <net_weight>15,6999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>12,3999996185</shelf_width> - <shelf_height>11,8999996185</shelf_height> - <shelf_depth>6,1300001144</shelf_depth> + <grossWeight>18,7000007629</grossWeight> + <netWeight>15,6999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>12,3999996185</shelfWidth> + <shelfHeight>11,8999996185</shelfHeight> + <shelfDepth>6,1300001144</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Elephant Garlic</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Elephant Garlic</productName> <sku>84125866293</sku> <srp>2,8199999332</srp> - <gross_weight>9,75</gross_weight> - <net_weight>7,75</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>11,3000001907</shelf_width> - <shelf_height>17,1000003815</shelf_height> - <shelf_depth>8,3000001907</shelf_depth> + <grossWeight>9,75</grossWeight> + <netWeight>7,75</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>11,3000001907</shelfWidth> + <shelfHeight>17,1000003815</shelfHeight> + <shelfDepth>8,3000001907</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Red Pepper</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Red Pepper</productName> <sku>52487912774</sku> <srp>1,7999999523</srp> - <gross_weight>8,220000267</gross_weight> - <net_weight>7,2199997902</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>14,5</shelf_width> - <shelf_height>21,7000007629</shelf_height> - <shelf_depth>20,6000003815</shelf_depth> + <grossWeight>8,220000267</grossWeight> + <netWeight>7,2199997902</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>14,5</shelfWidth> + <shelfHeight>21,7000007629</shelfHeight> + <shelfDepth>20,6000003815</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Garlic</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Garlic</productName> <sku>12112480998</sku> <srp>2,6300001144</srp> - <gross_weight>16,2000007629</gross_weight> - <net_weight>14,1999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>16,8999996185</shelf_width> - <shelf_height>15,8999996185</shelf_height> - <shelf_depth>7,5399999619</shelf_depth> + <grossWeight>16,2000007629</grossWeight> + <netWeight>14,1999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>16,8999996185</shelfWidth> + <shelfHeight>15,8999996185</shelfHeight> + <shelfDepth>7,5399999619</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Potatos</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Potatos</productName> <sku>74831464886</sku> <srp>0,9300000072</srp> - <gross_weight>18,2999992371</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>18</shelf_width> - <shelf_height>22,8999996185</shelf_height> - <shelf_depth>13,6999998093</shelf_depth> + <grossWeight>18,2999992371</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>18</shelfWidth> + <shelfHeight>22,8999996185</shelfHeight> + <shelfDepth>13,6999998093</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Cauliflower</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Cauliflower</productName> <sku>69791669249</sku> <srp>2,7200000286</srp> - <gross_weight>17,2000007629</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>14,8000001907</shelf_width> - <shelf_height>20,8999996185</shelf_height> - <shelf_depth>18,5</shelf_depth> + <grossWeight>17,2000007629</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>14,8000001907</shelfWidth> + <shelfHeight>20,8999996185</shelfHeight> + <shelfDepth>18,5</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Tomatos</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Tomatos</productName> <sku>11748419404</sku> <srp>0,9200000167</srp> - <gross_weight>13,8000001907</gross_weight> - <net_weight>12,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>8,8100004196</shelf_width> - <shelf_height>21</shelf_height> - <shelf_depth>21,3999996185</shelf_depth> + <grossWeight>13,8000001907</grossWeight> + <netWeight>12,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>8,8100004196</shelfWidth> + <shelfHeight>21</shelfHeight> + <shelfDepth>21,3999996185</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Mushrooms</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Mushrooms</productName> <sku>65946390032</sku> <srp>1,7400000095</srp> - <gross_weight>11,3000001907</gross_weight> - <net_weight>8,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>15,3000001907</shelf_width> - <shelf_height>10,8000001907</shelf_height> - <shelf_depth>17</shelf_depth> + <grossWeight>11,3000001907</grossWeight> + <netWeight>8,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>15,3000001907</shelfWidth> + <shelfHeight>10,8000001907</shelfHeight> + <shelfDepth>17</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Baby Onion</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Baby Onion</productName> <sku>43238776326</sku> <srp>1,3700000048</srp> - <gross_weight>8,3299999237</gross_weight> - <net_weight>6,3200001717</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>13</shelf_width> - <shelf_height>18,6000003815</shelf_height> - <shelf_depth>9,8400001526</shelf_depth> + <grossWeight>8,3299999237</grossWeight> + <netWeight>6,3200001717</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>13</shelfWidth> + <shelfHeight>18,6000003815</shelfHeight> + <shelfDepth>9,8400001526</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Dried Mushrooms</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Dried Mushrooms</productName> <sku>90576643347</sku> <srp>1,5</srp> - <gross_weight>9,9899997711</gross_weight> - <net_weight>7,9800000191</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>22,3999996185</shelf_width> - <shelf_height>21,2000007629</shelf_height> - <shelf_depth>13,6999998093</shelf_depth> + <grossWeight>9,9899997711</grossWeight> + <netWeight>7,9800000191</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>22,3999996185</shelfWidth> + <shelfHeight>21,2000007629</shelfHeight> + <shelfDepth>13,6999998093</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Fresh Lima Beans</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Fresh Lima Beans</productName> <sku>37106795907</sku> <srp>2,8099999428</srp> - <gross_weight>10,6999998093</gross_weight> - <net_weight>8,6899995804</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>16,5</shelf_width> - <shelf_height>20,3999996185</shelf_height> - <shelf_depth>20,2999992371</shelf_depth> + <grossWeight>10,6999998093</grossWeight> + <netWeight>8,6899995804</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>16,5</shelfWidth> + <shelfHeight>20,3999996185</shelfHeight> + <shelfDepth>20,2999992371</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Squash</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Squash</productName> <sku>83193079829</sku> <srp>1,3099999428</srp> - <gross_weight>14,6000003815</gross_weight> - <net_weight>13,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>18,3999996185</shelf_width> - <shelf_height>17,7000007629</shelf_height> - <shelf_depth>13,5</shelf_depth> + <grossWeight>14,6000003815</grossWeight> + <netWeight>13,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>18,3999996185</shelfWidth> + <shelfHeight>17,7000007629</shelfHeight> + <shelfDepth>13,5</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Broccoli</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Broccoli</productName> <sku>23181925415</sku> <srp>2,8900001049</srp> - <gross_weight>8,6800003052</gross_weight> - <net_weight>6,6799998283</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>36</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>13,3999996185</shelf_width> - <shelf_height>13,6999998093</shelf_height> - <shelf_depth>3,3499999046</shelf_depth> + <grossWeight>8,6800003052</grossWeight> + <netWeight>6,6799998283</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>36</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>13,3999996185</shelfWidth> + <shelfHeight>13,6999998093</shelfHeight> + <shelfDepth>3,3499999046</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Sweet Onion</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Sweet Onion</productName> <sku>48540301918</sku> <srp>1,8300000429</srp> - <gross_weight>9,7100000381</gross_weight> - <net_weight>8,7100000381</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>5,9099998474</shelf_width> - <shelf_height>3,8399999142</shelf_height> - <shelf_depth>15,5</shelf_depth> + <grossWeight>9,7100000381</grossWeight> + <netWeight>8,7100000381</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>5,9099998474</shelfWidth> + <shelfHeight>3,8399999142</shelfHeight> + <shelfDepth>15,5</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Canned Vegetables</product_subcategory> <product_category>Vegetables</product_category> <product_department>Canned Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Better</brand_name> - <product_name>Better Canned Beets</product_name> + <brandName>Better</brandName> + <productName>Better Canned Beets</productName> <sku>96490806937</sku> <srp>0,6000000238</srp> - <gross_weight>8,6000003815</gross_weight> - <net_weight>7,5999999046</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>18,5</shelf_width> - <shelf_height>18,7999992371</shelf_height> - <shelf_depth>8,4899997711</shelf_depth> + <grossWeight>8,6000003815</grossWeight> + <netWeight>7,5999999046</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>18,5</shelfWidth> + <shelfHeight>18,7999992371</shelfHeight> + <shelfDepth>8,4899997711</shelfDepth> </Product> <Product> - <brand_name>Better</brand_name> - <product_name>Better Creamed Corn</product_name> + <brandName>Better</brandName> + <productName>Better Creamed Corn</productName> <sku>99972024559</sku> <srp>1,2599999905</srp> - <gross_weight>11,6000003815</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>4,5999999046</shelf_width> - <shelf_height>5,9899997711</shelf_height> - <shelf_depth>19,3999996185</shelf_depth> + <grossWeight>11,6000003815</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>4,5999999046</shelfWidth> + <shelfHeight>5,9899997711</shelfHeight> + <shelfDepth>19,3999996185</shelfDepth> </Product> <Product> - <brand_name>Better</brand_name> - <product_name>Better Canned String Beans</product_name> + <brandName>Better</brandName> + <productName>Better Canned String Beans</productName> <sku>59596592783</sku> <srp>1,7400000095</srp> - <gross_weight>10,8999996185</gross_weight> - <net_weight>8,8900003433</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>3,6099998951</shelf_width> - <shelf_height>20,6000003815</shelf_height> - <shelf_depth>14</shelf_depth> + <grossWeight>10,8999996185</grossWeight> + <netWeight>8,8900003433</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>3,6099998951</shelfWidth> + <shelfHeight>20,6000003815</shelfHeight> + <shelfDepth>14</shelfDepth> </Product> <Product> - <brand_name>Better</brand_name> - <product_name>Better Canned Yams</product_name> + <brandName>Better</brandName> + <productName>Better Canned Yams</productName> <sku>57990807890</sku> <srp>2,8299999237</srp> - <gross_weight>15,8999996185</gross_weight> - <net_weight>13,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>3,5099999905</shelf_width> - <shelf_height>13,6999998093</shelf_height> - <shelf_depth>18,7000007629</shelf_depth> + <grossWeight>15,8999996185</grossWeight> + <netWeight>13,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>3,5099999905</shelfWidth> + <shelfHeight>13,6999998093</shelfHeight> + <shelfDepth>18,7000007629</shelfDepth> </Product> <Product> - <brand_name>Better</brand_name> - <product_name>Better Canned Tomatos</product_name> + <brandName>Better</brandName> + <productName>Better Canned Tomatos</productName> <sku>54145528674</sku> <srp>1,3200000525</srp> - <gross_weight>17,8999996185</gross_weight> - <net_weight>16,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>5,8600001335</shelf_width> - <shelf_height>12,1999998093</shelf_height> - <shelf_depth>9,3699998856</shelf_depth> + <grossWeight>17,8999996185</grossWeight> + <netWeight>16,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>5,8600001335</shelfWidth> + <shelfHeight>12,1999998093</shelfHeight> + <shelfDepth>9,3699998856</shelfDepth> </Product> <Product> - <brand_name>Better</brand_name> - <product_name>Better Canned Peas</product_name> + <brandName>Better</brandName> + <productName>Better Canned Peas</productName> <sku>75658625960</sku> <srp>1,3999999762</srp> - <gross_weight>21,2999992371</gross_weight> - <net_weight>19,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>14,3000001907</shelf_width> - <shelf_height>18,6000003815</shelf_height> - <shelf_depth>22</shelf_depth> + <grossWeight>21,2999992371</grossWeight> + <netWeight>19,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>14,3000001907</shelfWidth> + <shelfHeight>18,6000003815</shelfHeight> + <shelfDepth>22</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Canned Beets</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Canned Beets</productName> <sku>62908702492</sku> <srp>3,8299999237</srp> - <gross_weight>21,2000007629</gross_weight> - <net_weight>18,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>19</shelf_width> - <shelf_height>21,8999996185</shelf_height> - <shelf_depth>9,3900003433</shelf_depth> + <grossWeight>21,2000007629</grossWeight> + <netWeight>18,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>19</shelfWidth> + <shelfHeight>21,8999996185</shelfHeight> + <shelfDepth>9,3900003433</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Creamed Corn</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Creamed Corn</productName> <sku>79484335780</sku> <srp>2,9900000095</srp> - <gross_weight>6,9099998474</gross_weight> - <net_weight>3,9000000954</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>7,8000001907</shelf_width> - <shelf_height>17,7999992371</shelf_height> - <shelf_depth>8,2600002289</shelf_depth> + <grossWeight>6,9099998474</grossWeight> + <netWeight>3,9000000954</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>7,8000001907</shelfWidth> + <shelfHeight>17,7999992371</shelfHeight> + <shelfDepth>8,2600002289</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Canned String Beans</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Canned String Beans</productName> <sku>85252254605</sku> <srp>2,6700000763</srp> - <gross_weight>12,6000003815</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>8,8699998856</shelf_width> - <shelf_height>5,1799998283</shelf_height> - <shelf_depth>13,3000001907</shelf_depth> + <grossWeight>12,6000003815</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>8,8699998856</shelfWidth> + <shelfHeight>5,1799998283</shelfHeight> + <shelfDepth>13,3000001907</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Canned Yams</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Canned Yams</productName> <sku>22169209122</sku> <srp>2,7799999714</srp> - <gross_weight>21,2999992371</gross_weight> - <net_weight>19,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>5,9499998093</shelf_width> - <shelf_height>5,2199997902</shelf_height> - <shelf_depth>11,8000001907</shelf_depth> + <grossWeight>21,2999992371</grossWeight> + <netWeight>19,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>5,9499998093</shelfWidth> + <shelfHeight>5,2199997902</shelfHeight> + <shelfDepth>11,8000001907</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Canned Tomatos</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Canned Tomatos</productName> <sku>77561696171</sku> <srp>2,2899999619</srp> - <gross_weight>15</gross_weight> - <net_weight>14</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>19</shelf_width> - <shelf_height>8,7299995422</shelf_height> - <shelf_depth>5,0199999809</shelf_depth> + <grossWeight>15</grossWeight> + <netWeight>14</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>19</shelfWidth> + <shelfHeight>8,7299995422</shelfHeight> + <shelfDepth>5,0199999809</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Canned Peas</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Canned Peas</productName> <sku>61668921113</sku> <srp>3,9100000858</srp> - <gross_weight>21,8999996185</gross_weight> - <net_weight>20,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>8,1000003815</shelf_width> - <shelf_height>22</shelf_height> - <shelf_depth>21,5</shelf_depth> + <grossWeight>21,8999996185</grossWeight> + <netWeight>20,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>8,1000003815</shelfWidth> + <shelfHeight>22</shelfHeight> + <shelfDepth>21,5</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Canned Beets</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Canned Beets</productName> <sku>52903655171</sku> <srp>3,1500000954</srp> - <gross_weight>6,8000001907</gross_weight> - <net_weight>5,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>16,5</shelf_width> - <shelf_height>20</shelf_height> - <shelf_depth>19,7000007629</shelf_depth> + <grossWeight>6,8000001907</grossWeight> + <netWeight>5,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>16,5</shelfWidth> + <shelfHeight>20</shelfHeight> + <shelfDepth>19,7000007629</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Creamed Corn</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Creamed Corn</productName> <sku>76339392066</sku> <srp>3,2799999714</srp> - <gross_weight>16,2000007629</gross_weight> - <net_weight>14,1999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>4,1599998474</shelf_width> - <shelf_height>13,1999998093</shelf_height> - <shelf_depth>16,1000003815</shelf_depth> + <grossWeight>16,2000007629</grossWeight> + <netWeight>14,1999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>4,1599998474</shelfWidth> + <shelfHeight>13,1999998093</shelfHeight> + <shelfDepth>16,1000003815</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Canned String Beans</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Canned String Beans</productName> <sku>22869544625</sku> <srp>2,5899999142</srp> - <gross_weight>9,6300001144</gross_weight> - <net_weight>7,6300001144</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>3,5199999809</shelf_width> - <shelf_height>20,7999992371</shelf_height> - <shelf_depth>5,0900001526</shelf_depth> + <grossWeight>9,6300001144</grossWeight> + <netWeight>7,6300001144</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>3,5199999809</shelfWidth> + <shelfHeight>20,7999992371</shelfHeight> + <shelfDepth>5,0900001526</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Canned Yams</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Canned Yams</productName> <sku>45213096737</sku> <srp>1,6599999666</srp> - <gross_weight>7,3899998665</gross_weight> - <net_weight>6,3800001144</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>17,1000003815</shelf_width> - <shelf_height>21,2000007629</shelf_height> - <shelf_depth>11,8999996185</shelf_depth> + <grossWeight>7,3899998665</grossWeight> + <netWeight>6,3800001144</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>17,1000003815</shelfWidth> + <shelfHeight>21,2000007629</shelfHeight> + <shelfDepth>11,8999996185</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Canned Tomatos</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Canned Tomatos</productName> <sku>37010880112</sku> <srp>0,8700000048</srp> - <gross_weight>13,3999996185</gross_weight> - <net_weight>11,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>20,5</shelf_width> - <shelf_height>3,3699998856</shelf_height> - <shelf_depth>21,2999992371</shelf_depth> + <grossWeight>13,3999996185</grossWeight> + <netWeight>11,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>20,5</shelfWidth> + <shelfHeight>3,3699998856</shelfHeight> + <shelfDepth>21,2999992371</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Canned Peas</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Canned Peas</productName> <sku>84712808728</sku> <srp>1,5499999523</srp> - <gross_weight>17,5</gross_weight> - <net_weight>15,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>21,1000003815</shelf_width> - <shelf_height>8,3599996567</shelf_height> - <shelf_depth>4,2199997902</shelf_depth> + <grossWeight>17,5</grossWeight> + <netWeight>15,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>21,1000003815</shelfWidth> + <shelfHeight>8,3599996567</shelfHeight> + <shelfDepth>4,2199997902</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Canned Beets</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Canned Beets</productName> <sku>45425527691</sku> <srp>1,7400000095</srp> - <gross_weight>8,6599998474</gross_weight> - <net_weight>6,6500000954</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>8,7899999619</shelf_width> - <shelf_height>9,4099998474</shelf_height> - <shelf_depth>3,6700000763</shelf_depth> + <grossWeight>8,6599998474</grossWeight> + <netWeight>6,6500000954</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>8,7899999619</shelfWidth> + <shelfHeight>9,4099998474</shelfHeight> + <shelfDepth>3,6700000763</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Creamed Corn</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Creamed Corn</productName> <sku>64287862181</sku> <srp>3,8299999237</srp> - <gross_weight>15,1999998093</gross_weight> - <net_weight>13,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>15,8000001907</shelf_width> - <shelf_height>5,7800002098</shelf_height> - <shelf_depth>5,8600001335</shelf_depth> + <grossWeight>15,1999998093</grossWeight> + <netWeight>13,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>15,8000001907</shelfWidth> + <shelfHeight>5,7800002098</shelfHeight> + <shelfDepth>5,8600001335</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Canned String Beans</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Canned String Beans</productName> <sku>72342482209</sku> <srp>1,2000000477</srp> - <gross_weight>10</gross_weight> - <net_weight>9</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>22</shelf_width> - <shelf_height>12,3000001907</shelf_height> - <shelf_depth>19,2999992371</shelf_depth> + <grossWeight>10</grossWeight> + <netWeight>9</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>22</shelfWidth> + <shelfHeight>12,3000001907</shelfHeight> + <shelfDepth>19,2999992371</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Canned Yams</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Canned Yams</productName> <sku>37734969258</sku> <srp>1,3600000143</srp> - <gross_weight>19,7000007629</gross_weight> - <net_weight>18,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>22</shelf_width> - <shelf_height>14,6000003815</shelf_height> - <shelf_depth>17,6000003815</shelf_depth> + <grossWeight>19,7000007629</grossWeight> + <netWeight>18,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>22</shelfWidth> + <shelfHeight>14,6000003815</shelfHeight> + <shelfDepth>17,6000003815</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Canned Tomatos</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Canned Tomatos</productName> <sku>62581687569</sku> <srp>2,1500000954</srp> - <gross_weight>18</gross_weight> - <net_weight>16</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>6,4899997711</shelf_width> - <shelf_height>10,6000003815</shelf_height> - <shelf_depth>14,3999996185</shelf_depth> + <grossWeight>18</grossWeight> + <netWeight>16</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>6,4899997711</shelfWidth> + <shelfHeight>10,6000003815</shelfHeight> + <shelfDepth>14,3999996185</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Canned Peas</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Canned Peas</productName> <sku>53332551121</sku> <srp>2,4900000095</srp> - <gross_weight>8,0200004578</gross_weight> - <net_weight>5,0199999809</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>11</shelf_width> - <shelf_height>10,5</shelf_height> - <shelf_depth>11,1999998093</shelf_depth> + <grossWeight>8,0200004578</grossWeight> + <netWeight>5,0199999809</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>11</shelfWidth> + <shelfHeight>10,5</shelfHeight> + <shelfDepth>11,1999998093</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Canned Beets</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Canned Beets</productName> <sku>59582259058</sku> <srp>0,7200000286</srp> - <gross_weight>9,7100000381</gross_weight> - <net_weight>7,7100000381</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>17,5</shelf_width> - <shelf_height>20,6000003815</shelf_height> - <shelf_depth>3,4800000191</shelf_depth> + <grossWeight>9,7100000381</grossWeight> + <netWeight>7,7100000381</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>17,5</shelfWidth> + <shelfHeight>20,6000003815</shelfHeight> + <shelfDepth>3,4800000191</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Creamed Corn</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Creamed Corn</productName> <sku>65350177884</sku> <srp>1,1799999475</srp> - <gross_weight>10</gross_weight> - <net_weight>8</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>9,8299999237</shelf_width> - <shelf_height>20,8999996185</shelf_height> - <shelf_depth>10,1999998093</shelf_depth> + <grossWeight>10</grossWeight> + <netWeight>8</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>9,8299999237</shelfWidth> + <shelfHeight>20,8999996185</shelfHeight> + <shelfDepth>10,1999998093</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Canned String Beans</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Canned String Beans</productName> <sku>16044406294</sku> <srp>1,6000000238</srp> - <gross_weight>7,5</gross_weight> - <net_weight>6,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>19,7000007629</shelf_width> - <shelf_height>19,8999996185</shelf_height> - <shelf_depth>10,3999996185</shelf_depth> + <grossWeight>7,5</grossWeight> + <netWeight>6,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>19,7000007629</shelfWidth> + <shelfHeight>19,8999996185</shelfHeight> + <shelfDepth>10,3999996185</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Canned Yams</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Canned Yams</productName> <sku>12199127078</sku> <srp>3,9700000286</srp> - <gross_weight>11,5</gross_weight> - <net_weight>8,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>6,8800001144</shelf_width> - <shelf_height>9,720000267</shelf_height> - <shelf_depth>10,3000001907</shelf_depth> + <grossWeight>11,5</grossWeight> + <netWeight>8,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>6,8800001144</shelfWidth> + <shelfHeight>9,720000267</shelfHeight> + <shelfDepth>10,3000001907</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Canned Tomatos</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Canned Tomatos</productName> <sku>36829380393</sku> <srp>3,5</srp> - <gross_weight>6,1199998856</gross_weight> - <net_weight>3,1099998951</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>14,1000003815</shelf_width> - <shelf_height>18,7000007629</shelf_height> - <shelf_depth>13,1999998093</shelf_depth> + <grossWeight>6,1199998856</grossWeight> + <netWeight>3,1099998951</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>14,1000003815</shelfWidth> + <shelfHeight>18,7000007629</shelfHeight> + <shelfDepth>13,1999998093</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Canned Peas</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Canned Peas</productName> <sku>60845643877</sku> <srp>2,5399999619</srp> - <gross_weight>19,8999996185</gross_weight> - <net_weight>17,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>16,2999992371</shelf_width> - <shelf_height>22,5</shelf_height> - <shelf_depth>17,6000003815</shelf_depth> + <grossWeight>19,8999996185</grossWeight> + <netWeight>17,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>16,2999992371</shelfWidth> + <shelfHeight>22,5</shelfHeight> + <shelfDepth>17,6000003815</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>French Fries</product_subcategory> <product_category>Vegetables</product_category> <product_department>Frozen Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Low Fat French Fries</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Low Fat French Fries</productName> <sku>67432805895</sku> <srp>1,3500000238</srp> - <gross_weight>12</gross_weight> - <net_weight>9</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>10,8000001907</shelf_width> - <shelf_height>12,6000003815</shelf_height> - <shelf_depth>11,6000003815</shelf_depth> + <grossWeight>12</grossWeight> + <netWeight>9</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>10,8000001907</shelfWidth> + <shelfHeight>12,6000003815</shelfHeight> + <shelfDepth>11,6000003815</shelfDepth> </Product> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Fajita French Fries</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Fajita French Fries</productName> <sku>38593211770</sku> <srp>1,4299999475</srp> - <gross_weight>9,5699996948</gross_weight> - <net_weight>8,5600004196</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>15,8000001907</shelf_width> - <shelf_height>18,8999996185</shelf_height> - <shelf_depth>20,3999996185</shelf_depth> + <grossWeight>9,5699996948</grossWeight> + <netWeight>8,5600004196</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>15,8000001907</shelfWidth> + <shelfHeight>18,8999996185</shelfHeight> + <shelfDepth>20,3999996185</shelfDepth> </Product> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Home Style French Fries</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Home Style French Fries</productName> <sku>91970587372</sku> <srp>1,3799999952</srp> - <gross_weight>18,8999996185</gross_weight> - <net_weight>15,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>17,1000003815</shelf_width> - <shelf_height>6,2800002098</shelf_height> - <shelf_depth>19,8999996185</shelf_depth> + <grossWeight>18,8999996185</grossWeight> + <netWeight>15,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>17,1000003815</shelfWidth> + <shelfHeight>6,2800002098</shelfHeight> + <shelfDepth>19,8999996185</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Low Fat French Fries</product_name> + <brandName>Golden</brandName> + <productName>Golden Low Fat French Fries</productName> <sku>66946843266</sku> <srp>2,9700000286</srp> - <gross_weight>14,1999998093</gross_weight> - <net_weight>13,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>8,6999998093</shelf_width> - <shelf_height>21,7000007629</shelf_height> - <shelf_depth>10,6999998093</shelf_depth> + <grossWeight>14,1999998093</grossWeight> + <netWeight>13,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>8,6999998093</shelfWidth> + <shelfHeight>21,7000007629</shelfHeight> + <shelfDepth>10,6999998093</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Fajita French Fries</product_name> + <brandName>Golden</brandName> + <productName>Golden Fajita French Fries</productName> <sku>51418129801</sku> <srp>1,5900000334</srp> - <gross_weight>20,5</gross_weight> - <net_weight>17,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>14</shelf_width> - <shelf_height>20,7000007629</shelf_height> - <shelf_depth>14,3999996185</shelf_depth> + <grossWeight>20,5</grossWeight> + <netWeight>17,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>14</shelfWidth> + <shelfHeight>20,7000007629</shelfHeight> + <shelfDepth>14,3999996185</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Home Style French Fries</product_name> + <brandName>Golden</brandName> + <productName>Golden Home Style French Fries</productName> <sku>21439144015</sku> <srp>0,7200000286</srp> - <gross_weight>20,6000003815</gross_weight> - <net_weight>18,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>7,8000001907</shelf_width> - <shelf_height>13,8000001907</shelf_height> - <shelf_depth>7,2199997902</shelf_depth> + <grossWeight>20,6000003815</grossWeight> + <netWeight>18,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>7,8000001907</shelfWidth> + <shelfHeight>13,8000001907</shelfHeight> + <shelfDepth>7,2199997902</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Low Fat French Fries</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Low Fat French Fries</productName> <sku>75605292916</sku> <srp>3,9500000477</srp> - <gross_weight>7,5399999619</gross_weight> - <net_weight>6,5300002098</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>8,9799995422</shelf_width> - <shelf_height>6,3000001907</shelf_height> - <shelf_depth>8,1499996185</shelf_depth> + <grossWeight>7,5399999619</grossWeight> + <netWeight>6,5300002098</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>8,9799995422</shelfWidth> + <shelfHeight>6,3000001907</shelfHeight> + <shelfDepth>8,1499996185</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Fajita French Fries</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Fajita French Fries</productName> <sku>59860114455</sku> <srp>2,3099999428</srp> - <gross_weight>6,8800001144</gross_weight> - <net_weight>4,8800001144</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>18,2000007629</shelf_width> - <shelf_height>12,3000001907</shelf_height> - <shelf_depth>4,4099998474</shelf_depth> + <grossWeight>6,8800001144</grossWeight> + <netWeight>4,8800001144</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>18,2000007629</shelfWidth> + <shelfHeight>12,3000001907</shelfHeight> + <shelfDepth>4,4099998474</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Home Style French Fries</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Home Style French Fries</productName> <sku>28074564337</sku> <srp>0,8100000024</srp> - <gross_weight>9,9399995804</gross_weight> - <net_weight>7,9299998283</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>7,0300002098</shelf_width> - <shelf_height>14,8000001907</shelf_height> - <shelf_depth>5,9200000763</shelf_depth> + <grossWeight>9,9399995804</grossWeight> + <netWeight>7,9299998283</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>7,0300002098</shelfWidth> + <shelfHeight>14,8000001907</shelfHeight> + <shelfDepth>5,9200000763</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Low Fat French Fries</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Low Fat French Fries</productName> <sku>26132355332</sku> <srp>3,6800000668</srp> - <gross_weight>9,7899999619</gross_weight> - <net_weight>8,779999733</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>22</shelf_width> - <shelf_height>5,8000001907</shelf_height> - <shelf_depth>3,4300000668</shelf_depth> + <grossWeight>9,7899999619</grossWeight> + <netWeight>8,779999733</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>22</shelfWidth> + <shelfHeight>5,8000001907</shelfHeight> + <shelfDepth>3,4300000668</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Fajita French Fries</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Fajita French Fries</productName> <sku>71911644339</sku> <srp>2,8900001049</srp> - <gross_weight>13,8000001907</gross_weight> - <net_weight>10,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>15,8999996185</shelf_width> - <shelf_height>3,5599999428</shelf_height> - <shelf_depth>7,8299999237</shelf_depth> + <grossWeight>13,8000001907</grossWeight> + <netWeight>10,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>15,8999996185</shelfWidth> + <shelfHeight>3,5599999428</shelfHeight> + <shelfDepth>7,8299999237</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Home Style French Fries</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Home Style French Fries</productName> <sku>62560176253</sku> <srp>0,5099999905</srp> - <gross_weight>17,6000003815</gross_weight> - <net_weight>14,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>22,6000003815</shelf_width> - <shelf_height>18,2999992371</shelf_height> - <shelf_depth>13,8999996185</shelf_depth> + <grossWeight>17,6000003815</grossWeight> + <netWeight>14,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>22,6000003815</shelfWidth> + <shelfHeight>18,2999992371</shelfHeight> + <shelfDepth>13,8999996185</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Low Fat French Fries</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Low Fat French Fries</productName> <sku>92312397360</sku> <srp>2,4100000858</srp> - <gross_weight>8,1499996185</gross_weight> - <net_weight>6,1399998665</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>15,1000003815</shelf_width> - <shelf_height>3,0499999523</shelf_height> - <shelf_depth>8,1000003815</shelf_depth> + <grossWeight>8,1499996185</grossWeight> + <netWeight>6,1399998665</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>15,1000003815</shelfWidth> + <shelfHeight>3,0499999523</shelfHeight> + <shelfDepth>8,1000003815</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Fajita French Fries</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Fajita French Fries</productName> <sku>58852193951</sku> <srp>2,2200000286</srp> - <gross_weight>16,1000003815</gross_weight> - <net_weight>14,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>3,5799999237</shelf_width> - <shelf_height>18,7999992371</shelf_height> - <shelf_depth>18,7000007629</shelf_depth> + <grossWeight>16,1000003815</grossWeight> + <netWeight>14,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>3,5799999237</shelfWidth> + <shelfHeight>18,7999992371</shelfHeight> + <shelfDepth>18,7000007629</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Home Style French Fries</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Home Style French Fries</productName> <sku>90661347508</sku> <srp>0,9200000167</srp> - <gross_weight>6,8699998856</gross_weight> - <net_weight>5,8600001335</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>5,3899998665</shelf_width> - <shelf_height>3,5299999714</shelf_height> - <shelf_depth>9,5200004578</shelf_depth> + <grossWeight>6,8699998856</grossWeight> + <netWeight>5,8600001335</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>5,3899998665</shelfWidth> + <shelfHeight>3,5299999714</shelfHeight> + <shelfDepth>9,5200004578</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Pizza</product_subcategory> <product_category>Pizza</product_category> <product_department>Frozen Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Frozen Sausage Pizza</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Frozen Sausage Pizza</productName> <sku>68627322316</sku> <srp>0,8000000119</srp> - <gross_weight>15,5</gross_weight> - <net_weight>12,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>18,7999992371</shelf_width> - <shelf_height>18,7000007629</shelf_height> - <shelf_depth>22,3999996185</shelf_depth> + <grossWeight>15,5</grossWeight> + <netWeight>12,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>18,7999992371</shelfWidth> + <shelfHeight>18,7000007629</shelfHeight> + <shelfDepth>22,3999996185</shelfDepth> </Product> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Frozen Pepperoni Pizza</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Frozen Pepperoni Pizza</productName> <sku>60936763882</sku> <srp>1,1299999952</srp> - <gross_weight>9,1599998474</gross_weight> - <net_weight>7,1500000954</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>7,4899997711</shelf_width> - <shelf_height>11,6000003815</shelf_height> - <shelf_depth>11,8000001907</shelf_depth> + <grossWeight>9,1599998474</grossWeight> + <netWeight>7,1500000954</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>7,4899997711</shelfWidth> + <shelfHeight>11,6000003815</shelfHeight> + <shelfDepth>11,8000001907</shelfDepth> </Product> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Frozen Cheese Pizza</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Frozen Cheese Pizza</productName> <sku>77728862166</sku> <srp>1,5499999523</srp> - <gross_weight>13,6000003815</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>9,779999733</shelf_width> - <shelf_height>16,6000003815</shelf_height> - <shelf_depth>4,8499999046</shelf_depth> + <grossWeight>13,6000003815</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>9,779999733</shelfWidth> + <shelfHeight>16,6000003815</shelfHeight> + <shelfDepth>4,8499999046</shelfDepth> </Product> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Frozen Mushroom Pizza</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Frozen Mushroom Pizza</productName> <sku>52734547257</sku> <srp>1,25</srp> - <gross_weight>6,9800000191</gross_weight> - <net_weight>3,9800000191</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>9,1400003433</shelf_width> - <shelf_height>4,2800002098</shelf_height> - <shelf_depth>13,8000001907</shelf_depth> + <grossWeight>6,9800000191</grossWeight> + <netWeight>3,9800000191</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>9,1400003433</shelfWidth> + <shelfHeight>4,2800002098</shelfHeight> + <shelfDepth>13,8000001907</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Frozen Sausage Pizza</product_name> + <brandName>Golden</brandName> + <productName>Golden Frozen Sausage Pizza</productName> <sku>57333645224</sku> <srp>1,7799999714</srp> - <gross_weight>19</gross_weight> - <net_weight>17</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>15,1999998093</shelf_width> - <shelf_height>21,2000007629</shelf_height> - <shelf_depth>18,6000003815</shelf_depth> + <grossWeight>19</grossWeight> + <netWeight>17</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>15,1999998093</shelfWidth> + <shelfHeight>21,2000007629</shelfHeight> + <shelfDepth>18,6000003815</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Frozen Pepperoni Pizza</product_name> + <brandName>Golden</brandName> + <productName>Golden Frozen Pepperoni Pizza</productName> <sku>42999448180</sku> <srp>2,6800000668</srp> - <gross_weight>12,8000001907</gross_weight> - <net_weight>10,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>8,9399995804</shelf_width> - <shelf_height>4,0799999237</shelf_height> - <shelf_depth>3,0799999237</shelf_depth> + <grossWeight>12,8000001907</grossWeight> + <netWeight>10,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>8,9399995804</shelfWidth> + <shelfHeight>4,0799999237</shelfHeight> + <shelfDepth>3,0799999237</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Frozen Cheese Pizza</product_name> + <brandName>Golden</brandName> + <productName>Golden Frozen Cheese Pizza</productName> <sku>51054068207</sku> <srp>0,8299999833</srp> - <gross_weight>17,1000003815</gross_weight> - <net_weight>16,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>4,0900001526</shelf_width> - <shelf_height>16,7999992371</shelf_height> - <shelf_depth>18,6000003815</shelf_depth> + <grossWeight>17,1000003815</grossWeight> + <netWeight>16,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>4,0900001526</shelfWidth> + <shelfHeight>16,7999992371</shelfHeight> + <shelfDepth>18,6000003815</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Frozen Mushroom Pizza</product_name> + <brandName>Golden</brandName> + <productName>Golden Frozen Mushroom Pizza</productName> <sku>39154168963</sku> <srp>0,9599999785</srp> - <gross_weight>16,3999996185</gross_weight> - <net_weight>14,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>3,1099998951</shelf_width> - <shelf_height>11,5</shelf_height> - <shelf_depth>13,1000003815</shelf_depth> + <grossWeight>16,3999996185</grossWeight> + <netWeight>14,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>3,1099998951</shelfWidth> + <shelfHeight>11,5</shelfHeight> + <shelfDepth>13,1000003815</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Frozen Sausage Pizza</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Frozen Sausage Pizza</productName> <sku>92180926203</sku> <srp>1,4500000477</srp> - <gross_weight>18,7000007629</gross_weight> - <net_weight>16,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>7,4800000191</shelf_width> - <shelf_height>4,0199999809</shelf_height> - <shelf_depth>9,0200004578</shelf_depth> + <grossWeight>18,7000007629</grossWeight> + <netWeight>16,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>7,4800000191</shelfWidth> + <shelfHeight>4,0199999809</shelfHeight> + <shelfDepth>9,0200004578</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Frozen Pepperoni Pizza</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Frozen Pepperoni Pizza</productName> <sku>20895664095</sku> <srp>1,6799999475</srp> - <gross_weight>6,0599999428</gross_weight> - <net_weight>3,0499999523</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>6,9499998093</shelf_width> - <shelf_height>12,8000001907</shelf_height> - <shelf_depth>5,9400000572</shelf_depth> + <grossWeight>6,0599999428</grossWeight> + <netWeight>3,0499999523</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>6,9499998093</shelfWidth> + <shelfHeight>12,8000001907</shelfHeight> + <shelfDepth>5,9400000572</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Frozen Cheese Pizza</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Frozen Cheese Pizza</productName> <sku>55139115452</sku> <srp>2,6400001049</srp> - <gross_weight>12,6000003815</gross_weight> - <net_weight>9,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>13,5</shelf_width> - <shelf_height>6,9099998474</shelf_height> - <shelf_depth>20,7000007629</shelf_depth> + <grossWeight>12,6000003815</grossWeight> + <netWeight>9,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>13,5</shelfWidth> + <shelfHeight>6,9099998474</shelfHeight> + <shelfDepth>20,7000007629</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Frozen Mushroom Pizza</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Frozen Mushroom Pizza</productName> <sku>45525917410</sku> <srp>1,2100000381</srp> - <gross_weight>10,1000003815</gross_weight> - <net_weight>8,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>3,5199999809</shelf_width> - <shelf_height>5,9099998474</shelf_height> - <shelf_depth>20,8999996185</shelf_depth> + <grossWeight>10,1000003815</grossWeight> + <netWeight>8,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>3,5199999809</shelfWidth> + <shelfHeight>5,9099998474</shelfHeight> + <shelfDepth>20,8999996185</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Frozen Sausage Pizza</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Frozen Sausage Pizza</productName> <sku>47281391024</sku> <srp>0,5699999928</srp> - <gross_weight>16,8999996185</gross_weight> - <net_weight>14,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>18,5</shelf_width> - <shelf_height>15,3999996185</shelf_height> - <shelf_depth>10,5</shelf_depth> + <grossWeight>16,8999996185</grossWeight> + <netWeight>14,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>18,5</shelfWidth> + <shelfHeight>15,3999996185</shelfHeight> + <shelfDepth>10,5</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Frozen Pepperoni Pizza</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Frozen Pepperoni Pizza</productName> <sku>23800389170</sku> <srp>3,4600000381</srp> - <gross_weight>11</gross_weight> - <net_weight>9</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>8,8900003433</shelf_width> - <shelf_height>18,3999996185</shelf_height> - <shelf_depth>4,8299999237</shelf_depth> + <grossWeight>11</grossWeight> + <netWeight>9</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>8,8900003433</shelfWidth> + <shelfHeight>18,3999996185</shelfHeight> + <shelfDepth>4,8299999237</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Frozen Cheese Pizza</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Frozen Cheese Pizza</productName> <sku>62617242932</sku> <srp>2,7000000477</srp> - <gross_weight>16,2000007629</gross_weight> - <net_weight>15,1999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>8,6700000763</shelf_width> - <shelf_height>13,5</shelf_height> - <shelf_depth>15</shelf_depth> + <grossWeight>16,2000007629</grossWeight> + <netWeight>15,1999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>8,6700000763</shelfWidth> + <shelfHeight>13,5</shelfHeight> + <shelfDepth>15</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Frozen Mushroom Pizza</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Frozen Mushroom Pizza</productName> <sku>81479577422</sku> <srp>1,5499999523</srp> - <gross_weight>6,8800001144</gross_weight> - <net_weight>4,8800001144</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>4,4499998093</shelf_width> - <shelf_height>17,6000003815</shelf_height> - <shelf_depth>12,3000001907</shelf_depth> + <grossWeight>6,8800001144</grossWeight> + <netWeight>4,8800001144</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>4,4499998093</shelfWidth> + <shelfHeight>17,6000003815</shelfHeight> + <shelfDepth>12,3000001907</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Frozen Sausage Pizza</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Frozen Sausage Pizza</productName> <sku>95793614983</sku> <srp>3,3900001049</srp> - <gross_weight>18,7999992371</gross_weight> - <net_weight>17,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>21,2999992371</shelf_width> - <shelf_height>9,6300001144</shelf_height> - <shelf_depth>21,6000003815</shelf_depth> + <grossWeight>18,7999992371</grossWeight> + <netWeight>17,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>21,2999992371</shelfWidth> + <shelfHeight>9,6300001144</shelfHeight> + <shelfDepth>21,6000003815</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Frozen Pepperoni Pizza</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Frozen Pepperoni Pizza</productName> <sku>85769148468</sku> <srp>2,5699999332</srp> - <gross_weight>12,1000003815</gross_weight> - <net_weight>11,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>14,8000001907</shelf_width> - <shelf_height>13,5</shelf_height> - <shelf_depth>21,2000007629</shelf_depth> + <grossWeight>12,1000003815</grossWeight> + <netWeight>11,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>14,8000001907</shelfWidth> + <shelfHeight>13,5</shelfHeight> + <shelfDepth>21,2000007629</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Frozen Cheese Pizza</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Frozen Cheese Pizza</productName> <sku>73869249224</sku> <srp>3,4500000477</srp> - <gross_weight>19,2000007629</gross_weight> - <net_weight>18,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>12,8000001907</shelf_width> - <shelf_height>14,3000001907</shelf_height> - <shelf_depth>8,4200000763</shelf_depth> + <grossWeight>19,2000007629</grossWeight> + <netWeight>18,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>12,8000001907</shelfWidth> + <shelfHeight>14,3000001907</shelfHeight> + <shelfDepth>8,4200000763</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Frozen Mushroom Pizza</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Frozen Mushroom Pizza</productName> <sku>51161635518</sku> <srp>3,7300000191</srp> - <gross_weight>18,5</gross_weight> - <net_weight>15,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>13,8000001907</shelf_width> - <shelf_height>22,3999996185</shelf_height> - <shelf_depth>10,3999996185</shelf_depth> + <grossWeight>18,5</grossWeight> + <netWeight>15,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>13,8000001907</shelfWidth> + <shelfHeight>22,3999996185</shelfHeight> + <shelfDepth>10,3999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Hamburger</product_subcategory> <product_category>Meat</product_category> <product_department>Meat</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Ship Shape</brand_name> - <product_name>Ship Shape Extra Lean Hamburger</product_name> + <brandName>Ship Shape</brandName> + <productName>Ship Shape Extra Lean Hamburger</productName> <sku>69512901902</sku> <srp>2,9700000286</srp> - <gross_weight>13,3999996185</gross_weight> - <net_weight>11,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>4,4600000381</shelf_width> - <shelf_height>19,6000003815</shelf_height> - <shelf_depth>7,5300002098</shelf_depth> + <grossWeight>13,3999996185</grossWeight> + <netWeight>11,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>4,4600000381</shelfWidth> + <shelfHeight>19,6000003815</shelfHeight> + <shelfDepth>7,5300002098</shelfDepth> </Product> <Product> - <brand_name>Ship Shape</brand_name> - <product_name>Ship Shape Seasoned Hamburger</product_name> + <brandName>Ship Shape</brandName> + <productName>Ship Shape Seasoned Hamburger</productName> <sku>90661937594</sku> <srp>1,75</srp> - <gross_weight>8,2600002289</gross_weight> - <net_weight>6,2600002289</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>9,3599996567</shelf_width> - <shelf_height>3,9900000095</shelf_height> - <shelf_depth>16</shelf_depth> + <grossWeight>8,2600002289</grossWeight> + <netWeight>6,2600002289</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>9,3599996567</shelfWidth> + <shelfHeight>3,9900000095</shelfHeight> + <shelfDepth>16</shelfDepth> </Product> <Product> - <brand_name>Footnote</brand_name> - <product_name>Footnote Extra Lean Hamburger</product_name> + <brandName>Footnote</brandName> + <productName>Footnote Extra Lean Hamburger</productName> <sku>92293117642</sku> <srp>0,9700000286</srp> - <gross_weight>13,1999998093</gross_weight> - <net_weight>11,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>4,4200000763</shelf_width> - <shelf_height>22,2000007629</shelf_height> - <shelf_depth>19,8999996185</shelf_depth> + <grossWeight>13,1999998093</grossWeight> + <netWeight>11,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>4,4200000763</shelfWidth> + <shelfHeight>22,2000007629</shelfHeight> + <shelfDepth>19,8999996185</shelfDepth> </Product> <Product> - <brand_name>Footnote</brand_name> - <product_name>Footnote Seasoned Hamburger</product_name> + <brandName>Footnote</brandName> + <productName>Footnote Seasoned Hamburger</productName> <sku>54204387068</sku> <srp>1,4900000095</srp> - <gross_weight>13</gross_weight> - <net_weight>11</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>7,5500001907</shelf_width> - <shelf_height>7</shelf_height> - <shelf_depth>11,6999998093</shelf_depth> + <grossWeight>13</grossWeight> + <netWeight>11</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>7,5500001907</shelfWidth> + <shelfHeight>7</shelfHeight> + <shelfDepth>11,6999998093</shelfDepth> </Product> <Product> - <brand_name>Quick</brand_name> - <product_name>Quick Extra Lean Hamburger</product_name> + <brandName>Quick</brandName> + <productName>Quick Extra Lean Hamburger</productName> <sku>74355801939</sku> <srp>2,6099998951</srp> - <gross_weight>20,8999996185</gross_weight> - <net_weight>17,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>14,8999996185</shelf_width> - <shelf_height>5,75</shelf_height> - <shelf_depth>7,8499999046</shelf_depth> + <grossWeight>20,8999996185</grossWeight> + <netWeight>17,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>14,8999996185</shelfWidth> + <shelfHeight>5,75</shelfHeight> + <shelfDepth>7,8499999046</shelfDepth> </Product> <Product> - <brand_name>Quick</brand_name> - <product_name>Quick Seasoned Hamburger</product_name> + <brandName>Quick</brandName> + <productName>Quick Seasoned Hamburger</productName> <sku>82410421967</sku> <srp>3,6400001049</srp> - <gross_weight>15,6000003815</gross_weight> - <net_weight>14,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>12,1000003815</shelf_width> - <shelf_height>11,1999998093</shelf_height> - <shelf_depth>13,8000001907</shelf_depth> + <grossWeight>15,6000003815</grossWeight> + <netWeight>14,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>12,1000003815</shelfWidth> + <shelfHeight>11,1999998093</shelfHeight> + <shelfDepth>13,8000001907</shelfDepth> </Product> <Product> - <brand_name>Genteel</brand_name> - <product_name>Genteel Extra Lean Hamburger</product_name> + <brandName>Genteel</brandName> + <productName>Genteel Extra Lean Hamburger</productName> <sku>67939990162</sku> <srp>1,8999999762</srp> - <gross_weight>11,3000001907</gross_weight> - <net_weight>8,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>19,7999992371</shelf_width> - <shelf_height>3,5099999905</shelf_height> - <shelf_depth>3,4200000763</shelf_depth> + <grossWeight>11,3000001907</grossWeight> + <netWeight>8,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>19,7999992371</shelfWidth> + <shelfHeight>3,5099999905</shelfHeight> + <shelfDepth>3,4200000763</shelfDepth> </Product> <Product> - <brand_name>Genteel</brand_name> - <product_name>Genteel Seasoned Hamburger</product_name> + <brandName>Genteel</brandName> + <productName>Genteel Seasoned Hamburger</productName> <sku>25277857184</sku> <srp>1,1499999762</srp> - <gross_weight>11,1000003815</gross_weight> - <net_weight>9,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>9,8699998856</shelf_width> - <shelf_height>7,0999999046</shelf_height> - <shelf_depth>20,2999992371</shelf_depth> + <grossWeight>11,1000003815</grossWeight> + <netWeight>9,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>9,8699998856</shelfWidth> + <shelfHeight>7,0999999046</shelfHeight> + <shelfDepth>20,2999992371</shelfDepth> </Product> <Product> - <brand_name>Gerolli</brand_name> - <product_name>Gerolli Extra Lean Hamburger</product_name> + <brandName>Gerolli</brandName> + <productName>Gerolli Extra Lean Hamburger</productName> <sku>69705173373</sku> <srp>3,3800001144</srp> - <gross_weight>13,8000001907</gross_weight> - <net_weight>11,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>12,8000001907</shelf_width> - <shelf_height>4,7600002289</shelf_height> - <shelf_depth>20,3999996185</shelf_depth> + <grossWeight>13,8000001907</grossWeight> + <netWeight>11,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>12,8000001907</shelfWidth> + <shelfHeight>4,7600002289</shelfHeight> + <shelfDepth>20,3999996185</shelfDepth> </Product> <Product> - <brand_name>Gerolli</brand_name> - <product_name>Gerolli Seasoned Hamburger</product_name> + <brandName>Gerolli</brandName> + <productName>Gerolli Seasoned Hamburger</productName> <sku>13948624730</sku> <srp>1,3400000334</srp> - <gross_weight>19,5</gross_weight> - <net_weight>17,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>3,7899999619</shelf_width> - <shelf_height>17,6000003815</shelf_height> - <shelf_depth>8</shelf_depth> + <grossWeight>19,5</grossWeight> + <netWeight>17,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>3,7899999619</shelfWidth> + <shelfHeight>17,6000003815</shelfHeight> + <shelfDepth>8</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Eggs</product_subcategory> <product_category>Eggs</product_category> <product_department>Eggs</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Urban</brand_name> - <product_name>Urban Small Brown Eggs</product_name> + <brandName>Urban</brandName> + <productName>Urban Small Brown Eggs</productName> <sku>63735123276</sku> <srp>2,3499999046</srp> - <gross_weight>19,2999992371</gross_weight> - <net_weight>17,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>19,3999996185</shelf_width> - <shelf_height>22,7999992371</shelf_height> - <shelf_depth>10</shelf_depth> + <grossWeight>19,2999992371</grossWeight> + <netWeight>17,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>19,3999996185</shelfWidth> + <shelfHeight>22,7999992371</shelfHeight> + <shelfDepth>10</shelfDepth> </Product> <Product> - <brand_name>Urban</brand_name> - <product_name>Urban Large Brown Eggs</product_name> + <brandName>Urban</brandName> + <productName>Urban Large Brown Eggs</productName> <sku>84884158968</sku> <srp>1,7899999619</srp> - <gross_weight>14,1000003815</gross_weight> - <net_weight>12,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>14</shelf_width> - <shelf_height>3,8599998951</shelf_height> - <shelf_depth>6,0500001907</shelf_depth> + <grossWeight>14,1000003815</grossWeight> + <netWeight>12,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>14</shelfWidth> + <shelfHeight>3,8599998951</shelfHeight> + <shelfDepth>6,0500001907</shelfDepth> </Product> <Product> - <brand_name>Urban</brand_name> - <product_name>Urban Small Eggs</product_name> + <brandName>Urban</brandName> + <productName>Urban Small Eggs</productName> <sku>29127610325</sku> <srp>3,7400000095</srp> - <gross_weight>10,3000001907</gross_weight> - <net_weight>8,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>5,7699999809</shelf_width> - <shelf_height>7,1900000572</shelf_height> - <shelf_depth>19,1000003815</shelf_depth> + <grossWeight>10,3000001907</grossWeight> + <netWeight>8,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>5,7699999809</shelfWidth> + <shelfHeight>7,1900000572</shelfHeight> + <shelfDepth>19,1000003815</shelfDepth> </Product> <Product> - <brand_name>Urban</brand_name> - <product_name>Urban Large Eggs</product_name> + <brandName>Urban</brandName> + <productName>Urban Large Eggs</productName> <sku>19514412283</sku> <srp>1,3099999428</srp> - <gross_weight>9,2100000381</gross_weight> - <net_weight>7,2100000381</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>22,5</shelf_width> - <shelf_height>5,1700000763</shelf_height> - <shelf_depth>3,8699998856</shelf_depth> + <grossWeight>9,2100000381</grossWeight> + <netWeight>7,2100000381</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>22,5</shelfWidth> + <shelfHeight>5,1700000763</shelfHeight> + <shelfDepth>3,8699998856</shelfDepth> </Product> <Product> - <brand_name>Urban</brand_name> - <product_name>Urban Egg Substitute</product_name> + <brandName>Urban</brandName> + <productName>Urban Egg Substitute</productName> <sku>89093499779</sku> <srp>1,2999999523</srp> - <gross_weight>13</gross_weight> - <net_weight>10</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>5,8400001526</shelf_width> - <shelf_height>9,1199998856</shelf_height> - <shelf_depth>19,3999996185</shelf_depth> + <grossWeight>13</grossWeight> + <netWeight>10</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>5,8400001526</shelfWidth> + <shelfHeight>9,1199998856</shelfHeight> + <shelfDepth>19,3999996185</shelfDepth> </Product> <Product> - <brand_name>Blue Medal</brand_name> - <product_name>Blue Medal Small Brown Eggs</product_name> + <brandName>Blue Medal</brandName> + <productName>Blue Medal Small Brown Eggs</productName> <sku>50154744982</sku> <srp>2,7999999523</srp> - <gross_weight>14,6999998093</gross_weight> - <net_weight>12,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>20</shelf_width> - <shelf_height>10,1999998093</shelf_height> - <shelf_depth>8,8599996567</shelf_depth> + <grossWeight>14,6999998093</grossWeight> + <netWeight>12,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>20</shelfWidth> + <shelfHeight>10,1999998093</shelfHeight> + <shelfDepth>8,8599996567</shelfDepth> </Product> <Product> - <brand_name>Blue Medal</brand_name> - <product_name>Blue Medal Large Brown Eggs</product_name> + <brandName>Blue Medal</brandName> + <productName>Blue Medal Large Brown Eggs</productName> <sku>27447131276</sku> <srp>2,1900000572</srp> - <gross_weight>19,5</gross_weight> - <net_weight>17,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>8,2899999619</shelf_width> - <shelf_height>14,1999998093</shelf_height> - <shelf_depth>9,1300001144</shelf_depth> + <grossWeight>19,5</grossWeight> + <netWeight>17,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>8,2899999619</shelfWidth> + <shelfHeight>14,1999998093</shelfHeight> + <shelfDepth>9,1300001144</shelfDepth> </Product> <Product> - <brand_name>Blue Medal</brand_name> - <product_name>Blue Medal Small Eggs</product_name> + <brandName>Blue Medal</brandName> + <productName>Blue Medal Small Eggs</productName> <sku>39665827155</sku> <srp>1,3200000525</srp> - <gross_weight>12,3999996185</gross_weight> - <net_weight>10,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>15,3000001907</shelf_width> - <shelf_height>10,6999998093</shelf_height> - <shelf_depth>10,6999998093</shelf_depth> + <grossWeight>12,3999996185</grossWeight> + <netWeight>10,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>15,3000001907</shelfWidth> + <shelfHeight>10,6999998093</shelfHeight> + <shelfDepth>10,6999998093</shelfDepth> </Product> <Product> - <brand_name>Blue Medal</brand_name> - <product_name>Blue Medal Large Eggs</product_name> + <brandName>Blue Medal</brandName> + <productName>Blue Medal Large Eggs</productName> <sku>76195979714</sku> <srp>3,6300001144</srp> - <gross_weight>17,1000003815</gross_weight> - <net_weight>14,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>12,8000001907</shelf_width> - <shelf_height>9,1000003815</shelf_height> - <shelf_depth>11,1000003815</shelf_depth> + <grossWeight>17,1000003815</grossWeight> + <netWeight>14,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>12,8000001907</shelfWidth> + <shelfHeight>9,1000003815</shelfHeight> + <shelfDepth>11,1000003815</shelfDepth> </Product> <Product> - <brand_name>Blue Medal</brand_name> - <product_name>Blue Medal Egg Substitute</product_name> + <brandName>Blue Medal</brandName> + <productName>Blue Medal Egg Substitute</productName> <sku>68869482874</sku> <srp>2,1300001144</srp> - <gross_weight>17</gross_weight> - <net_weight>15</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>12,8000001907</shelf_width> - <shelf_height>18,2000007629</shelf_height> - <shelf_depth>10,5</shelf_depth> + <grossWeight>17</grossWeight> + <netWeight>15</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>12,8000001907</shelfWidth> + <shelfHeight>18,2000007629</shelfHeight> + <shelfDepth>10,5</shelfDepth> </Product> <Product> - <brand_name>National</brand_name> - <product_name>National Small Brown Eggs</product_name> + <brandName>National</brandName> + <productName>National Small Brown Eggs</productName> <sku>56790165305</sku> <srp>2,1900000572</srp> - <gross_weight>18</gross_weight> - <net_weight>17</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>3,4800000191</shelf_width> - <shelf_height>5,6100001335</shelf_height> - <shelf_depth>3,0399999619</shelf_depth> + <grossWeight>18</grossWeight> + <netWeight>17</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>3,4800000191</shelfWidth> + <shelfHeight>5,6100001335</shelfHeight> + <shelfDepth>3,0399999619</shelfDepth> </Product> <Product> - <brand_name>National</brand_name> - <product_name>National Large Brown Eggs</product_name> + <brandName>National</brandName> + <productName>National Large Brown Eggs</productName> <sku>36369252800</sku> <srp>1,1699999571</srp> - <gross_weight>17</gross_weight> - <net_weight>15</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>8,3400001526</shelf_width> - <shelf_height>20,2000007629</shelf_height> - <shelf_depth>20,2000007629</shelf_depth> + <grossWeight>17</grossWeight> + <netWeight>15</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>8,3400001526</shelfWidth> + <shelfHeight>20,2000007629</shelfHeight> + <shelfDepth>20,2000007629</shelfDepth> </Product> <Product> - <brand_name>National</brand_name> - <product_name>National Small Eggs</product_name> + <brandName>National</brandName> + <productName>National Small Eggs</productName> <sku>85993821024</sku> <srp>2,8900001049</srp> - <gross_weight>21,2999992371</gross_weight> - <net_weight>19,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>12,6000003815</shelf_width> - <shelf_height>3,0399999619</shelf_height> - <shelf_depth>18,2000007629</shelf_depth> + <grossWeight>21,2999992371</grossWeight> + <netWeight>19,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>12,6000003815</shelfWidth> + <shelfHeight>3,0399999619</shelfHeight> + <shelfDepth>18,2000007629</shelfDepth> </Product> <Product> - <brand_name>National</brand_name> - <product_name>National Large Eggs</product_name> + <brandName>National</brandName> + <productName>National Large Eggs</productName> <sku>58712804913</sku> <srp>0,9300000072</srp> - <gross_weight>16,6000003815</gross_weight> - <net_weight>14,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>19,8999996185</shelf_width> - <shelf_height>12,8999996185</shelf_height> - <shelf_depth>11,6000003815</shelf_depth> + <grossWeight>16,6000003815</grossWeight> + <netWeight>14,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>19,8999996185</shelfWidth> + <shelfHeight>12,8999996185</shelfHeight> + <shelfDepth>11,6000003815</shelfDepth> </Product> <Product> - <brand_name>National</brand_name> - <product_name>National Egg Substitute</product_name> + <brandName>National</brandName> + <productName>National Egg Substitute</productName> <sku>53673009276</sku> <srp>3,7400000095</srp> - <gross_weight>21,2999992371</gross_weight> - <net_weight>19,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>7,25</shelf_width> - <shelf_height>8,0399999619</shelf_height> - <shelf_depth>19,5</shelf_depth> + <grossWeight>21,2999992371</grossWeight> + <netWeight>19,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>7,25</shelfWidth> + <shelfHeight>8,0399999619</shelfHeight> + <shelfDepth>19,5</shelfDepth> </Product> <Product> - <brand_name>Jumbo</brand_name> - <product_name>Jumbo Small Brown Eggs</product_name> + <brandName>Jumbo</brandName> + <productName>Jumbo Small Brown Eggs</productName> <sku>92480153441</sku> <srp>1,4199999571</srp> - <gross_weight>21,7000007629</gross_weight> - <net_weight>19,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>17,7999992371</shelf_width> - <shelf_height>16,6000003815</shelf_height> - <shelf_depth>17,2999992371</shelf_depth> + <grossWeight>21,7000007629</grossWeight> + <netWeight>19,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>17,7999992371</shelfWidth> + <shelfHeight>16,6000003815</shelfHeight> + <shelfDepth>17,2999992371</shelfDepth> </Product> <Product> - <brand_name>Jumbo</brand_name> - <product_name>Jumbo Large Brown Eggs</product_name> + <brandName>Jumbo</brandName> + <productName>Jumbo Large Brown Eggs</productName> <sku>10534773468</sku> <srp>2,6800000668</srp> - <gross_weight>7,3800001144</gross_weight> - <net_weight>5,3800001144</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>17,1000003815</shelf_width> - <shelf_height>4,8299999237</shelf_height> - <shelf_depth>3,7300000191</shelf_depth> + <grossWeight>7,3800001144</grossWeight> + <netWeight>5,3800001144</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>17,1000003815</shelfWidth> + <shelfHeight>4,8299999237</shelfHeight> + <shelfDepth>3,7300000191</shelfDepth> </Product> <Product> - <brand_name>Jumbo</brand_name> - <product_name>Jumbo Small Eggs</product_name> + <brandName>Jumbo</brandName> + <productName>Jumbo Small Eggs</productName> <sku>88634874224</sku> <srp>0,75</srp> - <gross_weight>8,9399995804</gross_weight> - <net_weight>6,9299998283</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>8,5100002289</shelf_width> - <shelf_height>5,2199997902</shelf_height> - <shelf_depth>12,6000003815</shelf_depth> + <grossWeight>8,9399995804</grossWeight> + <netWeight>6,9299998283</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>8,5100002289</shelfWidth> + <shelfHeight>5,2199997902</shelfHeight> + <shelfDepth>12,6000003815</shelfDepth> </Product> <Product> - <brand_name>Jumbo</brand_name> - <product_name>Jumbo Large Eggs</product_name> + <brandName>Jumbo</brandName> + <productName>Jumbo Large Eggs</productName> <sku>65927260518</sku> <srp>3,8399999142</srp> - <gross_weight>21,8999996185</gross_weight> - <net_weight>18,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>6,1599998474</shelf_width> - <shelf_height>13</shelf_height> - <shelf_depth>5,4099998474</shelf_depth> + <grossWeight>21,8999996185</grossWeight> + <netWeight>18,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>6,1599998474</shelfWidth> + <shelfHeight>13</shelfHeight> + <shelfDepth>5,4099998474</shelfDepth> </Product> <Product> - <brand_name>Jumbo</brand_name> - <product_name>Jumbo Egg Substitute</product_name> + <brandName>Jumbo</brandName> + <productName>Jumbo Egg Substitute</productName> <sku>23265127539</sku> <srp>2,9700000286</srp> - <gross_weight>7,6199998856</gross_weight> - <net_weight>5,6100001335</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>15,5</shelf_width> - <shelf_height>15,6000003815</shelf_height> - <shelf_depth>9,279999733</shelf_depth> + <grossWeight>7,6199998856</grossWeight> + <netWeight>5,6100001335</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>15,5</shelfWidth> + <shelfHeight>15,6000003815</shelfHeight> + <shelfDepth>9,279999733</shelfDepth> </Product> <Product> - <brand_name>Giant</brand_name> - <product_name>Giant Small Brown Eggs</product_name> + <brandName>Giant</brandName> + <productName>Giant Small Brown Eggs</productName> <sku>86328013539</sku> <srp>1,7100000381</srp> - <gross_weight>9,0500001907</gross_weight> - <net_weight>7,0500001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>20,7999992371</shelf_width> - <shelf_height>20,5</shelf_height> - <shelf_depth>18,6000003815</shelf_depth> + <grossWeight>9,0500001907</grossWeight> + <netWeight>7,0500001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>20,7999992371</shelfWidth> + <shelfHeight>20,5</shelfHeight> + <shelfDepth>18,6000003815</shelfDepth> </Product> <Product> - <brand_name>Giant</brand_name> - <product_name>Giant Large Brown Eggs</product_name> + <brandName>Giant</brandName> + <productName>Giant Large Brown Eggs</productName> <sku>43665880560</sku> <srp>3,8399999142</srp> - <gross_weight>18,7999992371</gross_weight> - <net_weight>16,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>4,3299999237</shelf_width> - <shelf_height>18,2000007629</shelf_height> - <shelf_depth>4,8000001907</shelf_depth> + <grossWeight>18,7999992371</grossWeight> + <netWeight>16,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>4,3299999237</shelfWidth> + <shelfHeight>18,2000007629</shelfHeight> + <shelfDepth>4,8000001907</shelfDepth> </Product> <Product> - <brand_name>Giant</brand_name> - <product_name>Giant Small Eggs</product_name> + <brandName>Giant</brandName> + <productName>Giant Small Eggs</productName> <sku>21174731850</sku> <srp>2,2599999905</srp> - <gross_weight>12,1999998093</gross_weight> - <net_weight>10,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>3,6900000572</shelf_width> - <shelf_height>5,8099999428</shelf_height> - <shelf_depth>13,6999998093</shelf_depth> + <grossWeight>12,1999998093</grossWeight> + <netWeight>10,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>3,6900000572</shelfWidth> + <shelfHeight>5,8099999428</shelfHeight> + <shelfDepth>13,6999998093</shelfDepth> </Product> <Product> - <brand_name>Giant</brand_name> - <product_name>Giant Large Eggs</product_name> + <brandName>Giant</brandName> + <productName>Giant Large Eggs</productName> <sku>13848235011</sku> <srp>1,6499999762</srp> - <gross_weight>19,7999992371</gross_weight> - <net_weight>16,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>22,6000003815</shelf_width> - <shelf_height>21</shelf_height> - <shelf_depth>5,7600002289</shelf_depth> + <grossWeight>19,7999992371</grossWeight> + <netWeight>16,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>22,6000003815</shelfWidth> + <shelfHeight>21</shelfHeight> + <shelfDepth>5,7600002289</shelfDepth> </Product> <Product> - <brand_name>Giant</brand_name> - <product_name>Giant Egg Substitute</product_name> + <brandName>Giant</brandName> + <productName>Giant Egg Substitute</productName> <sku>19616153836</sku> <srp>1,3300000429</srp> - <gross_weight>10,8999996185</gross_weight> - <net_weight>9,8900003433</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>10,5</shelf_width> - <shelf_height>7,3699998856</shelf_height> - <shelf_depth>15,3999996185</shelf_depth> + <grossWeight>10,8999996185</grossWeight> + <netWeight>9,8900003433</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>10,5</shelfWidth> + <shelfHeight>7,3699998856</shelfHeight> + <shelfDepth>15,3999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Tofu</product_subcategory> <product_category>Packaged Vegetables</product_category> <product_department>Produce</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Firm Tofu</product_name> + <brandName>High Top</brandName> + <productName>High Top Firm Tofu</productName> <sku>31548164486</sku> <srp>3,3599998951</srp> - <gross_weight>11,6000003815</gross_weight> - <net_weight>8,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>18,7999992371</shelf_width> - <shelf_height>7,3800001144</shelf_height> - <shelf_depth>10,1999998093</shelf_depth> + <grossWeight>11,6000003815</grossWeight> + <netWeight>8,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>18,7999992371</shelfWidth> + <shelfHeight>7,3800001144</shelfHeight> + <shelfDepth>10,1999998093</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Firm Tofu</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Firm Tofu</productName> <sku>15501666665</sku> <srp>2,2899999619</srp> - <gross_weight>17,2999992371</gross_weight> - <net_weight>15,1999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>21,1000003815</shelf_width> - <shelf_height>6,0100002289</shelf_height> - <shelf_depth>15,6999998093</shelf_depth> + <grossWeight>17,2999992371</grossWeight> + <netWeight>15,1999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>21,1000003815</shelfWidth> + <shelfHeight>6,0100002289</shelfHeight> + <shelfDepth>15,6999998093</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Firm Tofu</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Firm Tofu</productName> <sku>29530960917</sku> <srp>1,6699999571</srp> - <gross_weight>18,1000003815</gross_weight> - <net_weight>16,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>17,5</shelf_width> - <shelf_height>19</shelf_height> - <shelf_depth>18,2999992371</shelf_depth> + <grossWeight>18,1000003815</grossWeight> + <netWeight>16,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>17,5</shelfWidth> + <shelfHeight>19</shelfHeight> + <shelfDepth>18,2999992371</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Firm Tofu</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Firm Tofu</productName> <sku>49567652344</sku> <srp>1,6599999666</srp> - <gross_weight>13,6000003815</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>15,3000001907</shelf_width> - <shelf_height>14,8000001907</shelf_height> - <shelf_depth>4,8499999046</shelf_depth> + <grossWeight>13,6000003815</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>15,3000001907</shelfWidth> + <shelfHeight>14,8000001907</shelfHeight> + <shelfDepth>4,8499999046</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Firm Tofu</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Firm Tofu</productName> <sku>74774398207</sku> <srp>2,1700000763</srp> - <gross_weight>6,9600000381</gross_weight> - <net_weight>3,9600000381</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>13,1999998093</shelf_width> - <shelf_height>21</shelf_height> - <shelf_depth>22,2000007629</shelf_depth> + <grossWeight>6,9600000381</grossWeight> + <netWeight>3,9600000381</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>13,1999998093</shelfWidth> + <shelfHeight>21</shelfHeight> + <shelfDepth>22,2000007629</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Dish Soap</product_subcategory> <product_category>Bathroom Products</product_category> <product_department>Health and Hygiene</product_department> - <product_family>Non-Consumable</product_family> - </Product_class> - <Product_class> + <productFamily>Non-Consumable</productFamily> + </ProductClass> + <ProductClass> <product_subcategory>Dishwasher Soap</product_subcategory> <product_category>Bathroom Products</product_category> <product_department>Health and Hygiene</product_department> - <product_family>Non-Consumable</product_family> - </Product_class> - <Product_class> + <productFamily>Non-Consumable</productFamily> + </ProductClass> + <ProductClass> <product_subcategory>Aspirin</product_subcategory> <product_category>Pain Relievers</product_category> <product_department>Health and Hygiene</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Faux Products</brand_name> - <product_name>Faux Products Childrens Aspirin</product_name> + <brandName>Faux Products</brandName> + <productName>Faux Products Childrens Aspirin</productName> <sku>36991460919</sku> <srp>1,9900000095</srp> - <gross_weight>12,5</gross_weight> - <net_weight>10,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>6,1100001335</shelf_width> - <shelf_height>8,8900003433</shelf_height> - <shelf_depth>17,1000003815</shelf_depth> + <grossWeight>12,5</grossWeight> + <netWeight>10,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>6,1100001335</shelfWidth> + <shelfHeight>8,8900003433</shelfHeight> + <shelfDepth>17,1000003815</shelfDepth> </Product> <Product> - <brand_name>Faux Products</brand_name> - <product_name>Faux Products Buffered Aspirin</product_name> + <brandName>Faux Products</brandName> + <productName>Faux Products Buffered Aspirin</productName> <sku>31951665282</sku> <srp>3,8399999142</srp> - <gross_weight>12,3999996185</gross_weight> - <net_weight>9,3900003433</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>3,0999999046</shelf_width> - <shelf_height>17,5</shelf_height> - <shelf_depth>22,6000003815</shelf_depth> + <grossWeight>12,3999996185</grossWeight> + <netWeight>9,3900003433</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>3,0999999046</shelfWidth> + <shelfHeight>17,5</shelfHeight> + <shelfDepth>22,6000003815</shelfDepth> </Product> <Product> - <brand_name>Bird Call</brand_name> - <product_name>Bird Call Childrens Aspirin</product_name> + <brandName>Bird Call</brandName> + <productName>Bird Call Childrens Aspirin</productName> <sku>36503105759</sku> <srp>2,8699998856</srp> - <gross_weight>19,8999996185</gross_weight> - <net_weight>17,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>15,6000003815</shelf_width> - <shelf_height>8,6400003433</shelf_height> - <shelf_depth>10,6000003815</shelf_depth> + <grossWeight>19,8999996185</grossWeight> + <netWeight>17,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>15,6000003815</shelfWidth> + <shelfHeight>8,6400003433</shelfHeight> + <shelfDepth>10,6000003815</shelfDepth> </Product> <Product> - <brand_name>Bird Call</brand_name> - <product_name>Bird Call Buffered Aspirin</product_name> + <brandName>Bird Call</brandName> + <productName>Bird Call Buffered Aspirin</productName> <sku>57652141451</sku> <srp>1,6599999666</srp> - <gross_weight>15,3999996185</gross_weight> - <net_weight>13,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>11,3999996185</shelf_width> - <shelf_height>3,8699998856</shelf_height> - <shelf_depth>7,0300002098</shelf_depth> + <grossWeight>15,3999996185</grossWeight> + <netWeight>13,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>11,3999996185</shelfWidth> + <shelfHeight>3,8699998856</shelfHeight> + <shelfDepth>7,0300002098</shelfDepth> </Product> <Product> - <brand_name>Consolidated</brand_name> - <product_name>Consolidated Childrens Aspirin</product_name> + <brandName>Consolidated</brandName> + <productName>Consolidated Childrens Aspirin</productName> <sku>75562120079</sku> <srp>3,9100000858</srp> - <gross_weight>13</gross_weight> - <net_weight>11</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>17,2999992371</shelf_width> - <shelf_height>15,6000003815</shelf_height> - <shelf_depth>3,2100000381</shelf_depth> + <grossWeight>13</grossWeight> + <netWeight>11</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>17,2999992371</shelfWidth> + <shelfHeight>15,6000003815</shelfHeight> + <shelfDepth>3,2100000381</shelfDepth> </Product> <Product> - <brand_name>Consolidated</brand_name> - <product_name>Consolidated Buffered Aspirin</product_name> + <brandName>Consolidated</brandName> + <productName>Consolidated Buffered Aspirin</productName> <sku>11284558176</sku> <srp>0,8500000238</srp> - <gross_weight>8,5699996948</gross_weight> - <net_weight>6,5599999428</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>13,1000003815</shelf_width> - <shelf_height>10,8000001907</shelf_height> - <shelf_depth>19,6000003815</shelf_depth> + <grossWeight>8,5699996948</grossWeight> + <netWeight>6,5599999428</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>13,1000003815</shelfWidth> + <shelfHeight>10,8000001907</shelfHeight> + <shelfDepth>19,6000003815</shelfDepth> </Product> <Product> - <brand_name>Steady</brand_name> - <product_name>Steady Childrens Aspirin</product_name> + <brandName>Steady</brandName> + <productName>Steady Childrens Aspirin</productName> <sku>31435973048</sku> <srp>1,7400000095</srp> - <gross_weight>10,8000001907</gross_weight> - <net_weight>8,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>11,5</shelf_width> - <shelf_height>5,4899997711</shelf_height> - <shelf_depth>20,2999992371</shelf_depth> + <grossWeight>10,8000001907</grossWeight> + <netWeight>8,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>11,5</shelfWidth> + <shelfHeight>5,4899997711</shelfHeight> + <shelfDepth>20,2999992371</shelfDepth> </Product> <Product> - <brand_name>Steady</brand_name> - <product_name>Steady Buffered Aspirin</product_name> + <brandName>Steady</brandName> + <productName>Steady Buffered Aspirin</productName> <sku>37203891873</sku> <srp>1,4199999571</srp> - <gross_weight>19,1000003815</gross_weight> - <net_weight>18,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>10,8000001907</shelf_width> - <shelf_height>19,2999992371</shelf_height> - <shelf_depth>12,6999998093</shelf_depth> + <grossWeight>19,1000003815</grossWeight> + <netWeight>18,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>10,8000001907</shelfWidth> + <shelfHeight>19,2999992371</shelfHeight> + <shelfDepth>12,6999998093</shelfDepth> </Product> <Product> - <brand_name>Hilltop</brand_name> - <product_name>Hilltop Childrens Aspirin</product_name> + <brandName>Hilltop</brandName> + <productName>Hilltop Childrens Aspirin</productName> <sku>78147458434</sku> <srp>2,4700000286</srp> - <gross_weight>6,4000000954</gross_weight> - <net_weight>4,4000000954</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>15,3999996185</shelf_width> - <shelf_height>8,0900001526</shelf_height> - <shelf_depth>16,8999996185</shelf_depth> + <grossWeight>6,4000000954</grossWeight> + <netWeight>4,4000000954</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>15,3999996185</shelfWidth> + <shelfHeight>8,0900001526</shelfHeight> + <shelfDepth>16,8999996185</shelfDepth> </Product> <Product> - <brand_name>Hilltop</brand_name> - <product_name>Hilltop Buffered Aspirin</product_name> + <brandName>Hilltop</brandName> + <productName>Hilltop Buffered Aspirin</productName> <sku>86202078461</sku> <srp>2,4900000095</srp> - <gross_weight>6,4899997711</gross_weight> - <net_weight>4,4800000191</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>13,6999998093</shelf_width> - <shelf_height>8,0799999237</shelf_height> - <shelf_depth>21,8999996185</shelf_depth> + <grossWeight>6,4899997711</grossWeight> + <netWeight>4,4800000191</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>13,6999998093</shelfWidth> + <shelfHeight>8,0799999237</shelfHeight> + <shelfDepth>21,8999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Ibuprofen</product_subcategory> <product_category>Pain Relievers</product_category> <product_department>Health and Hygiene</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Faux Products</brand_name> - <product_name>Faux Products 200 MG Ibuprofen</product_name> + <brandName>Faux Products</brandName> + <productName>Faux Products 200 MG Ibuprofen</productName> <sku>52691374421</sku> <srp>1,2100000381</srp> - <gross_weight>13,3000001907</gross_weight> - <net_weight>10,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>7,7199997902</shelf_width> - <shelf_height>19,7000007629</shelf_height> - <shelf_depth>17,2999992371</shelf_depth> + <grossWeight>13,3000001907</grossWeight> + <netWeight>10,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>7,7199997902</shelfWidth> + <shelfHeight>19,7000007629</shelfHeight> + <shelfDepth>17,2999992371</shelfDepth> </Product> <Product> - <brand_name>Bird Call</brand_name> - <product_name>Bird Call 200 MG Ibuprofen</product_name> + <brandName>Bird Call</brandName> + <productName>Bird Call 200 MG Ibuprofen</productName> <sku>67993462681</sku> <srp>2,3800001144</srp> - <gross_weight>19</gross_weight> - <net_weight>17</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>9,7100000381</shelf_width> - <shelf_height>4,1199998856</shelf_height> - <shelf_depth>10,8000001907</shelf_depth> + <grossWeight>19</grossWeight> + <netWeight>17</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>9,7100000381</shelfWidth> + <shelfHeight>4,1199998856</shelfHeight> + <shelfDepth>10,8000001907</shelfDepth> </Product> <Product> - <brand_name>Consolidated</brand_name> - <product_name>Consolidated 200 MG Ibuprofen</product_name> + <brandName>Consolidated</brandName> + <productName>Consolidated 200 MG Ibuprofen</productName> <sku>74003542065</sku> <srp>3,9800000191</srp> - <gross_weight>10</gross_weight> - <net_weight>8</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>18,2999992371</shelf_width> - <shelf_height>9,8400001526</shelf_height> - <shelf_depth>9,1999998093</shelf_depth> + <grossWeight>10</grossWeight> + <netWeight>8</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>18,2999992371</shelfWidth> + <shelfHeight>9,8400001526</shelfHeight> + <shelfDepth>9,1999998093</shelfDepth> </Product> <Product> - <brand_name>Steady</brand_name> - <product_name>Steady 200 MG Ibuprofen</product_name> + <brandName>Steady</brandName> + <productName>Steady 200 MG Ibuprofen</productName> <sku>23017291426</sku> <srp>2,8299999237</srp> - <gross_weight>11,8000001907</gross_weight> - <net_weight>9,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>6,0900001526</shelf_width> - <shelf_height>17,7999992371</shelf_height> - <shelf_depth>14,8999996185</shelf_depth> + <grossWeight>11,8000001907</grossWeight> + <netWeight>9,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>6,0900001526</shelfWidth> + <shelfHeight>17,7999992371</shelfHeight> + <shelfDepth>14,8999996185</shelfDepth> </Product> <Product> - <brand_name>Hilltop</brand_name> - <product_name>Hilltop 200 MG Ibuprofen</product_name> + <brandName>Hilltop</brandName> + <productName>Hilltop 200 MG Ibuprofen</productName> <sku>74302179217</sku> <srp>3,5999999046</srp> - <gross_weight>8,7700004578</gross_weight> - <net_weight>7,7699999809</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>5,2100000381</shelf_width> - <shelf_height>9,3500003815</shelf_height> - <shelf_depth>21,2000007629</shelf_depth> + <grossWeight>8,7700004578</grossWeight> + <netWeight>7,7699999809</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>5,2100000381</shelfWidth> + <shelfHeight>9,3500003815</shelfHeight> + <shelfDepth>21,2000007629</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Acetominifen</product_subcategory> <product_category>Pain Relievers</product_category> <product_department>Health and Hygiene</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Faux Products</brand_name> - <product_name>Faux Products 200 MG Acetominifen</product_name> + <brandName>Faux Products</brandName> + <productName>Faux Products 200 MG Acetominifen</productName> <sku>16889345049</sku> <srp>2,3199999332</srp> - <gross_weight>11,1000003815</gross_weight> - <net_weight>9,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>15,1000003815</shelf_width> - <shelf_height>5,1799998283</shelf_height> - <shelf_depth>8,029999733</shelf_depth> + <grossWeight>11,1000003815</grossWeight> + <netWeight>9,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>15,1000003815</shelfWidth> + <shelfHeight>5,1799998283</shelfHeight> + <shelfDepth>8,029999733</shelfDepth> </Product> <Product> - <brand_name>Bird Call</brand_name> - <product_name>Bird Call 200 MG Acetominifen</product_name> + <brandName>Bird Call</brandName> + <productName>Bird Call 200 MG Acetominifen</productName> <sku>58380264639</sku> <srp>3,1800000668</srp> - <gross_weight>20,5</gross_weight> - <net_weight>17,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>14,8000001907</shelf_width> - <shelf_height>3,0999999046</shelf_height> - <shelf_depth>20,3999996185</shelf_depth> + <grossWeight>20,5</grossWeight> + <netWeight>17,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>14,8000001907</shelfWidth> + <shelfHeight>3,0999999046</shelfHeight> + <shelfDepth>20,3999996185</shelfDepth> </Product> <Product> - <brand_name>Consolidated</brand_name> - <product_name>Consolidated 200 MG Acetominifen</product_name> + <brandName>Consolidated</brandName> + <productName>Consolidated 200 MG Acetominifen</productName> <sku>92865876555</sku> <srp>1,8300000429</srp> - <gross_weight>13,6000003815</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>16,6000003815</shelf_width> - <shelf_height>10</shelf_height> - <shelf_depth>13</shelf_depth> + <grossWeight>13,6000003815</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>16,6000003815</shelfWidth> + <shelfHeight>10</shelfHeight> + <shelfDepth>13</shelfDepth> </Product> <Product> - <brand_name>Steady</brand_name> - <product_name>Steady 200 MG Acetominifen</product_name> + <brandName>Steady</brandName> + <productName>Steady 200 MG Acetominifen</productName> <sku>64120846390</sku> <srp>1,5299999714</srp> - <gross_weight>6,3200001717</gross_weight> - <net_weight>4,3200001717</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>18,5</shelf_width> - <shelf_height>13</shelf_height> - <shelf_depth>21,6000003815</shelf_depth> + <grossWeight>6,3200001717</grossWeight> + <netWeight>4,3200001717</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>18,5</shelfWidth> + <shelfHeight>13</shelfHeight> + <shelfDepth>21,6000003815</shelfDepth> </Product> <Product> - <brand_name>Hilltop</brand_name> - <product_name>Hilltop 200 MG Acetominifen</product_name> + <brandName>Hilltop</brandName> + <productName>Hilltop 200 MG Acetominifen</productName> <sku>51594565510</sku> <srp>2,8900001049</srp> - <gross_weight>18,8999996185</gross_weight> - <net_weight>17,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>14,1000003815</shelf_width> - <shelf_height>5,5999999046</shelf_height> - <shelf_depth>13</shelf_depth> + <grossWeight>18,8999996185</grossWeight> + <netWeight>17,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>14,1000003815</shelfWidth> + <shelfHeight>5,5999999046</shelfHeight> + <shelfDepth>13</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Nasal Sprays</product_subcategory> <product_category>Decongestants</product_category> <product_department>Health and Hygiene</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Faux Products</brand_name> - <product_name>Faux Products HCL Nasal Spray</product_name> + <brandName>Faux Products</brandName> + <productName>Faux Products HCL Nasal Spray</productName> <sku>18083861470</sku> <srp>1,6100000143</srp> - <gross_weight>20,7999992371</gross_weight> - <net_weight>19,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>21,2999992371</shelf_width> - <shelf_height>18</shelf_height> - <shelf_depth>5,0300002098</shelf_depth> + <grossWeight>20,7999992371</grossWeight> + <netWeight>19,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>21,2999992371</shelfWidth> + <shelfHeight>18</shelfHeight> + <shelfDepth>5,0300002098</shelfDepth> </Product> <Product> - <brand_name>Faux Products</brand_name> - <product_name>Faux Products Dishwasher Detergent</product_name> + <brandName>Faux Products</brandName> + <productName>Faux Products Dishwasher Detergent</productName> <sku>41519598364</sku> <srp>1,7400000095</srp> - <gross_weight>16,7000007629</gross_weight> - <net_weight>13,6999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>20,6000003815</shelf_width> - <shelf_height>12,1999998093</shelf_height> - <shelf_depth>16,2999992371</shelf_depth> + <grossWeight>16,7000007629</grossWeight> + <netWeight>13,6999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>20,6000003815</shelfWidth> + <shelfHeight>12,1999998093</shelfHeight> + <shelfDepth>16,2999992371</shelfDepth> </Product> <Product> - <brand_name>Bird Call</brand_name> - <product_name>Bird Call HCL Nasal Spray</product_name> + <brandName>Bird Call</brandName> + <productName>Bird Call HCL Nasal Spray</productName> <sku>92840180993</sku> <srp>0,5400000215</srp> - <gross_weight>17,2999992371</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>10,6000003815</shelf_width> - <shelf_height>18,5</shelf_height> - <shelf_depth>16,2999992371</shelf_depth> + <grossWeight>17,2999992371</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>10,6000003815</shelfWidth> + <shelfHeight>18,5</shelfHeight> + <shelfDepth>16,2999992371</shelfDepth> </Product> <Product> - <brand_name>Bird Call</brand_name> - <product_name>Bird Call Dishwasher Detergent</product_name> + <brandName>Bird Call</brandName> + <productName>Bird Call Dishwasher Detergent</productName> <sku>52464749217</sku> <srp>1,8799999952</srp> - <gross_weight>20,8999996185</gross_weight> - <net_weight>18,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>8,9200000763</shelf_width> - <shelf_height>18,7000007629</shelf_height> - <shelf_depth>20,2000007629</shelf_depth> + <grossWeight>20,8999996185</grossWeight> + <netWeight>18,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>8,9200000763</shelfWidth> + <shelfHeight>18,7000007629</shelfHeight> + <shelfDepth>20,2000007629</shelfDepth> </Product> <Product> - <brand_name>Consolidated</brand_name> - <product_name>Consolidated HCL Nasal Spray</product_name> + <brandName>Consolidated</brandName> + <productName>Consolidated HCL Nasal Spray</productName> <sku>65801325440</sku> <srp>2,2000000477</srp> - <gross_weight>9,1899995804</gross_weight> - <net_weight>6,1799998283</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>12,3999996185</shelf_width> - <shelf_height>5,3200001717</shelf_height> - <shelf_depth>9,4799995422</shelf_depth> + <grossWeight>9,1899995804</grossWeight> + <netWeight>6,1799998283</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>12,3999996185</shelfWidth> + <shelfHeight>5,3200001717</shelfHeight> + <shelfDepth>9,4799995422</shelfDepth> </Product> <Product> - <brand_name>Consolidated</brand_name> - <product_name>Consolidated Dishwasher Detergent</product_name> + <brandName>Consolidated</brandName> + <productName>Consolidated Dishwasher Detergent</productName> <sku>53901426196</sku> <srp>2,6700000763</srp> - <gross_weight>12,8000001907</gross_weight> - <net_weight>10,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>10,6000003815</shelf_width> - <shelf_height>5,5799999237</shelf_height> - <shelf_depth>13,3000001907</shelf_depth> + <grossWeight>12,8000001907</grossWeight> + <netWeight>10,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>10,6000003815</shelfWidth> + <shelfHeight>5,5799999237</shelfHeight> + <shelfDepth>13,3000001907</shelfDepth> </Product> <Product> - <brand_name>Steady</brand_name> - <product_name>Steady HCL Nasal Spray</product_name> + <brandName>Steady</brandName> + <productName>Steady HCL Nasal Spray</productName> <sku>19172012209</sku> <srp>1,9700000286</srp> - <gross_weight>19,8999996185</gross_weight> - <net_weight>17,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>8,2100000381</shelf_width> - <shelf_height>5,0799999237</shelf_height> - <shelf_depth>12,3000001907</shelf_depth> + <grossWeight>19,8999996185</grossWeight> + <netWeight>17,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>8,2100000381</shelfWidth> + <shelfHeight>5,0799999237</shelfHeight> + <shelfDepth>12,3000001907</shelfDepth> </Product> <Product> - <brand_name>Steady</brand_name> - <product_name>Steady Dishwasher Detergent</product_name> + <brandName>Steady</brandName> + <productName>Steady Dishwasher Detergent</productName> <sku>84394162297</sku> <srp>1,9299999475</srp> - <gross_weight>19,5</gross_weight> - <net_weight>16,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>5,9899997711</shelf_width> - <shelf_height>8,3800001144</shelf_height> - <shelf_depth>22,5</shelf_depth> + <grossWeight>19,5</grossWeight> + <netWeight>16,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>5,9899997711</shelfWidth> + <shelfHeight>8,3800001144</shelfHeight> + <shelfDepth>22,5</shelfDepth> </Product> <Product> - <brand_name>Hilltop</brand_name> - <product_name>Hilltop HCL Nasal Spray</product_name> + <brandName>Hilltop</brandName> + <productName>Hilltop HCL Nasal Spray</productName> <sku>75030302405</sku> <srp>2,1300001144</srp> - <gross_weight>21,1000003815</gross_weight> - <net_weight>19,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>5,6300001144</shelf_width> - <shelf_height>6,8699998856</shelf_height> - <shelf_depth>12,3000001907</shelf_depth> + <grossWeight>21,1000003815</grossWeight> + <netWeight>19,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>5,6300001144</shelfWidth> + <shelfHeight>6,8699998856</shelfHeight> + <shelfDepth>12,3000001907</shelfDepth> </Product> <Product> - <brand_name>Hilltop</brand_name> - <product_name>Hilltop Dishwasher Detergent</product_name> + <brandName>Hilltop</brandName> + <productName>Hilltop Dishwasher Detergent</productName> <sku>45462585091</sku> <srp>1,6799999475</srp> - <gross_weight>21,5</gross_weight> - <net_weight>18,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>8,9600000381</shelf_width> - <shelf_height>16,8999996185</shelf_height> - <shelf_depth>12,1999998093</shelf_depth> + <grossWeight>21,5</grossWeight> + <netWeight>18,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>8,9600000381</shelfWidth> + <shelfHeight>16,8999996185</shelfHeight> + <shelfDepth>12,1999998093</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Mouthwash</product_subcategory> <product_category>Bathroom Products</product_category> <product_department>Health and Hygiene</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Faux Products</brand_name> - <product_name>Faux Products Laundry Detergent</product_name> + <brandName>Faux Products</brandName> + <productName>Faux Products Laundry Detergent</productName> <sku>10393303036</sku> <srp>2,2300000191</srp> - <gross_weight>21,2999992371</gross_weight> - <net_weight>20,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>13,5</shelf_width> - <shelf_height>4,8200001717</shelf_height> - <shelf_depth>14,6999998093</shelf_depth> + <grossWeight>21,2999992371</grossWeight> + <netWeight>20,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>13,5</shelfWidth> + <shelfHeight>4,8200001717</shelfHeight> + <shelfDepth>14,6999998093</shelfDepth> </Product> <Product> - <brand_name>Faux Products</brand_name> - <product_name>Faux Products Mint Mouthwash</product_name> + <brandName>Faux Products</brandName> + <productName>Faux Products Mint Mouthwash</productName> <sku>62304572463</sku> <srp>2,4000000954</srp> - <gross_weight>19,1000003815</gross_weight> - <net_weight>16,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>20,8999996185</shelf_width> - <shelf_height>10,1999998093</shelf_height> - <shelf_depth>5,4800000191</shelf_depth> + <grossWeight>19,1000003815</grossWeight> + <netWeight>16,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>20,8999996185</shelfWidth> + <shelfHeight>10,1999998093</shelfHeight> + <shelfDepth>5,4800000191</shelfDepth> </Product> <Product> - <brand_name>Bird Call</brand_name> - <product_name>Bird Call Laundry Detergent</product_name> + <brandName>Bird Call</brandName> + <productName>Bird Call Laundry Detergent</productName> <sku>52100687623</sku> <srp>2,1099998951</srp> - <gross_weight>16,5</gross_weight> - <net_weight>13,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>22,7999992371</shelf_width> - <shelf_height>5,0999999046</shelf_height> - <shelf_depth>6,6199998856</shelf_depth> + <grossWeight>16,5</grossWeight> + <netWeight>13,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>22,7999992371</shelfWidth> + <shelfHeight>5,0999999046</shelfHeight> + <shelfDepth>6,6199998856</shelfDepth> </Product> <Product> - <brand_name>Bird Call</brand_name> - <product_name>Bird Call Mint Mouthwash</product_name> + <brandName>Bird Call</brandName> + <productName>Bird Call Mint Mouthwash</productName> <sku>16298658251</sku> <srp>0,5699999928</srp> - <gross_weight>18</gross_weight> - <net_weight>15</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>8,0399999619</shelf_width> - <shelf_height>4,0700001717</shelf_height> - <shelf_depth>16,1000003815</shelf_depth> + <grossWeight>18</grossWeight> + <netWeight>15</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>8,0399999619</shelfWidth> + <shelfHeight>4,0700001717</shelfHeight> + <shelfDepth>16,1000003815</shelfDepth> </Product> <Product> - <brand_name>Consolidated</brand_name> - <product_name>Consolidated Laundry Detergent</product_name> + <brandName>Consolidated</brandName> + <productName>Consolidated Laundry Detergent</productName> <sku>91159701943</sku> <srp>0,8500000238</srp> - <gross_weight>14,6999998093</gross_weight> - <net_weight>12,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>9,8999996185</shelf_width> - <shelf_height>20,2000007629</shelf_height> - <shelf_depth>22,6000003815</shelf_depth> + <grossWeight>14,6999998093</grossWeight> + <netWeight>12,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>9,8999996185</shelfWidth> + <shelfHeight>20,2000007629</shelfHeight> + <shelfDepth>22,6000003815</shelfDepth> </Product> <Product> - <brand_name>Consolidated</brand_name> - <product_name>Consolidated Mint Mouthwash</product_name> + <brandName>Consolidated</brandName> + <productName>Consolidated Mint Mouthwash</productName> <sku>17735335230</sku> <srp>1,8899999857</srp> - <gross_weight>16,5</gross_weight> - <net_weight>13,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>20</shelf_width> - <shelf_height>9,2399997711</shelf_height> - <shelf_depth>7,0799999237</shelf_depth> + <grossWeight>16,5</grossWeight> + <netWeight>13,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>20</shelfWidth> + <shelfHeight>9,2399997711</shelfHeight> + <shelfDepth>7,0799999237</shelfDepth> </Product> <Product> - <brand_name>Steady</brand_name> - <product_name>Steady Laundry Detergent</product_name> + <brandName>Steady</brandName> + <productName>Steady Laundry Detergent</productName> <sku>37886750102</sku> <srp>0,5699999928</srp> - <gross_weight>13,6999998093</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>13,1000003815</shelf_width> - <shelf_height>15,6999998093</shelf_height> - <shelf_depth>4,3699998856</shelf_depth> + <grossWeight>13,6999998093</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>13,1000003815</shelfWidth> + <shelfHeight>15,6999998093</shelfHeight> + <shelfDepth>4,3699998856</shelfDepth> </Product> <Product> - <brand_name>Steady</brand_name> - <product_name>Steady Mint Mouthwash</product_name> + <brandName>Steady</brandName> + <productName>Steady Mint Mouthwash</productName> <sku>76703603863</sku> <srp>2,2400000095</srp> - <gross_weight>21,1000003815</gross_weight> - <net_weight>20,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>8,3999996185</shelf_width> - <shelf_height>14</shelf_height> - <shelf_depth>7,0799999237</shelf_depth> + <grossWeight>21,1000003815</grossWeight> + <netWeight>20,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>8,3999996185</shelfWidth> + <shelfHeight>14</shelfHeight> + <shelfDepth>7,0799999237</shelfDepth> </Product> <Product> - <brand_name>Hilltop</brand_name> - <product_name>Hilltop Laundry Detergent</product_name> + <brandName>Hilltop</brandName> + <productName>Hilltop Laundry Detergent</productName> <sku>95815276503</sku> <srp>1,9199999571</srp> - <gross_weight>9,2600002289</gross_weight> - <net_weight>8,2600002289</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>22,5</shelf_width> - <shelf_height>5,7600002289</shelf_height> - <shelf_depth>6,5199999809</shelf_depth> + <grossWeight>9,2600002289</grossWeight> + <netWeight>8,2600002289</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>22,5</shelfWidth> + <shelfHeight>5,7600002289</shelfHeight> + <shelfDepth>6,5199999809</shelfDepth> </Product> <Product> - <brand_name>Hilltop</brand_name> - <product_name>Hilltop Mint Mouthwash</product_name> + <brandName>Hilltop</brandName> + <productName>Hilltop Mint Mouthwash</productName> <sku>35438118577</sku> <srp>3,6199998856</srp> - <gross_weight>19,2999992371</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>11,5</shelf_width> - <shelf_height>22</shelf_height> - <shelf_depth>18,2999992371</shelf_depth> + <grossWeight>19,2999992371</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>11,5</shelfWidth> + <shelfHeight>22</shelfHeight> + <shelfDepth>18,2999992371</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Cold Remedies</product_subcategory> <product_category>Cold Remedies</product_category> <product_department>Health and Hygiene</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Faux Products</brand_name> - <product_name>Faux Products Multi-Symptom Cold Remedy</product_name> + <brandName>Faux Products</brandName> + <productName>Faux Products Multi-Symptom Cold Remedy</productName> <sku>78049750924</sku> <srp>0,5299999714</srp> - <gross_weight>14,5</gross_weight> - <net_weight>12,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>8,0900001526</shelf_width> - <shelf_height>17,6000003815</shelf_height> - <shelf_depth>7,0199999809</shelf_depth> + <grossWeight>14,5</grossWeight> + <netWeight>12,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>8,0900001526</shelfWidth> + <shelfHeight>17,6000003815</shelfHeight> + <shelfDepth>7,0199999809</shelfDepth> </Product> <Product> - <brand_name>Faux Products</brand_name> - <product_name>Faux Products Childrens Cold Remedy</product_name> + <brandName>Faux Products</brandName> + <productName>Faux Products Childrens Cold Remedy</productName> <sku>94625384211</sku> <srp>1,5499999523</srp> - <gross_weight>9,4899997711</gross_weight> - <net_weight>7,4800000191</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>14,1999998093</shelf_width> - <shelf_height>10,6000003815</shelf_height> - <shelf_depth>3,4900000095</shelf_depth> + <grossWeight>9,4899997711</grossWeight> + <netWeight>7,4800000191</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>14,1999998093</shelfWidth> + <shelfHeight>10,6000003815</shelfHeight> + <shelfDepth>3,4900000095</shelfDepth> </Product> <Product> - <brand_name>Bird Call</brand_name> - <product_name>Bird Call Multi-Symptom Cold Remedy</product_name> + <brandName>Bird Call</brandName> + <productName>Bird Call Multi-Symptom Cold Remedy</productName> <sku>91281602978</sku> <srp>2,8900001049</srp> - <gross_weight>17,2999992371</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>8,779999733</shelf_width> - <shelf_height>9,6099996567</shelf_height> - <shelf_depth>6,3400001526</shelf_depth> + <grossWeight>17,2999992371</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>8,779999733</shelfWidth> + <shelfHeight>9,6099996567</shelfHeight> + <shelfDepth>6,3400001526</shelfDepth> </Product> <Product> - <brand_name>Bird Call</brand_name> - <product_name>Bird Call Childrens Cold Remedy</product_name> + <brandName>Bird Call</brandName> + <productName>Bird Call Childrens Cold Remedy</productName> <sku>20143937468</sku> <srp>1,7400000095</srp> - <gross_weight>12,8000001907</gross_weight> - <net_weight>10,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>4,5799999237</shelf_width> - <shelf_height>4,8400001526</shelf_height> - <shelf_depth>22,7000007629</shelf_depth> + <grossWeight>12,8000001907</grossWeight> + <netWeight>10,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>4,5799999237</shelfWidth> + <shelfHeight>4,8400001526</shelfHeight> + <shelfDepth>22,7000007629</shelfDepth> </Product> <Product> - <brand_name>Consolidated</brand_name> - <product_name>Consolidated Multi-Symptom Cold Remedy</product_name> + <brandName>Consolidated</brandName> + <productName>Consolidated Multi-Symptom Cold Remedy</productName> <sku>31193812489</sku> <srp>1,9500000477</srp> - <gross_weight>15,5</gross_weight> - <net_weight>12,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>15,8000001907</shelf_width> - <shelf_height>4,7300000191</shelf_height> - <shelf_depth>22,2999992371</shelf_depth> + <grossWeight>15,5</grossWeight> + <netWeight>12,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>15,8000001907</shelfWidth> + <shelfHeight>4,7300000191</shelfHeight> + <shelfDepth>22,2999992371</shelfDepth> </Product> <Product> - <brand_name>Consolidated</brand_name> - <product_name>Consolidated Childrens Cold Remedy</product_name> + <brandName>Consolidated</brandName> + <productName>Consolidated Childrens Cold Remedy</productName> <sku>54629549384</sku> <srp>2,1900000572</srp> - <gross_weight>11</gross_weight> - <net_weight>9</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>11,6000003815</shelf_width> - <shelf_height>19,8999996185</shelf_height> - <shelf_depth>18,7000007629</shelf_depth> + <grossWeight>11</grossWeight> + <netWeight>9</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>11,6000003815</shelfWidth> + <shelfHeight>19,8999996185</shelfHeight> + <shelfDepth>18,7000007629</shelfDepth> </Product> <Product> - <brand_name>Steady</brand_name> - <product_name>Steady Multi-Symptom Cold Remedy</product_name> + <brandName>Steady</brandName> + <productName>Steady Multi-Symptom Cold Remedy</productName> <sku>74780964255</sku> <srp>3,5</srp> - <gross_weight>21,7999992371</gross_weight> - <net_weight>20,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>15,8999996185</shelf_width> - <shelf_height>18,5</shelf_height> - <shelf_depth>21,7999992371</shelf_depth> + <grossWeight>21,7999992371</grossWeight> + <netWeight>20,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>15,8999996185</shelfWidth> + <shelfHeight>18,5</shelfHeight> + <shelfDepth>21,7999992371</shelfDepth> </Product> <Product> - <brand_name>Steady</brand_name> - <product_name>Steady Childrens Cold Remedy</product_name> + <brandName>Steady</brandName> + <productName>Steady Childrens Cold Remedy</productName> <sku>78262181878</sku> <srp>0,6700000167</srp> - <gross_weight>19,2000007629</gross_weight> - <net_weight>17,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>20,6000003815</shelf_width> - <shelf_height>20,5</shelf_height> - <shelf_depth>17,6000003815</shelf_depth> + <grossWeight>19,2000007629</grossWeight> + <netWeight>17,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>20,6000003815</shelfWidth> + <shelfHeight>20,5</shelfHeight> + <shelfDepth>17,6000003815</shelfDepth> </Product> <Product> - <brand_name>Hilltop</brand_name> - <product_name>Hilltop Multi-Symptom Cold Remedy</product_name> + <brandName>Hilltop</brandName> + <productName>Hilltop Multi-Symptom Cold Remedy</productName> <sku>38136088252</sku> <srp>2,8299999237</srp> - <gross_weight>10,6000003815</gross_weight> - <net_weight>8,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>12,6000003815</shelf_width> - <shelf_height>5,0300002098</shelf_height> - <shelf_depth>20,6000003815</shelf_depth> + <grossWeight>10,6000003815</grossWeight> + <netWeight>8,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>12,6000003815</shelfWidth> + <shelfHeight>5,0300002098</shelfHeight> + <shelfDepth>20,6000003815</shelfDepth> </Product> <Product> - <brand_name>Hilltop</brand_name> - <product_name>Hilltop Childrens Cold Remedy</product_name> + <brandName>Hilltop</brandName> + <productName>Hilltop Childrens Cold Remedy</productName> <sku>43904007077</sku> <srp>0,7300000191</srp> - <gross_weight>12,8999996185</gross_weight> - <net_weight>9,8900003433</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>4,0599999428</shelf_width> - <shelf_height>6,3000001907</shelf_height> - <shelf_depth>19,8999996185</shelf_depth> + <grossWeight>12,8999996185</grossWeight> + <netWeight>9,8900003433</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>4,0599999428</shelfWidth> + <shelfHeight>6,3000001907</shelfHeight> + <shelfDepth>19,8999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Milk</product_subcategory> <product_category>Dairy</product_category> <product_department>Dairy</product_department> - <product_family>Drink</product_family> + <productFamily>Drink</productFamily> <Product> - <brand_name>Carlson</brand_name> - <product_name>Carlson 2% Milk</product_name> + <brandName>Carlson</brandName> + <productName>Carlson 2% Milk</productName> <sku>55306581854</sku> <srp>3,4900000095</srp> - <gross_weight>11,6000003815</gross_weight> - <net_weight>9,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>12,8999996185</shelf_width> - <shelf_height>11,3999996185</shelf_height> - <shelf_depth>7,1500000954</shelf_depth> + <grossWeight>11,6000003815</grossWeight> + <netWeight>9,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>12,8999996185</shelfWidth> + <shelfHeight>11,3999996185</shelfHeight> + <shelfDepth>7,1500000954</shelfDepth> </Product> <Product> - <brand_name>Carlson</brand_name> - <product_name>Carlson Buttermilk</product_name> + <brandName>Carlson</brandName> + <productName>Carlson Buttermilk</productName> <sku>91836734414</sku> <srp>1,1399999857</srp> - <gross_weight>14,3999996185</gross_weight> - <net_weight>12,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>4,9200000763</shelf_width> - <shelf_height>9,3599996567</shelf_height> - <shelf_depth>21,2000007629</shelf_depth> + <grossWeight>14,3999996185</grossWeight> + <netWeight>12,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>4,9200000763</shelfWidth> + <shelfHeight>9,3599996567</shelfHeight> + <shelfDepth>21,2000007629</shelfDepth> </Product> <Product> - <brand_name>Carlson</brand_name> - <product_name>Carlson Chocolate Milk</product_name> + <brandName>Carlson</brandName> + <productName>Carlson Chocolate Milk</productName> <sku>18412367701</sku> <srp>2,2999999523</srp> - <gross_weight>19,3999996185</gross_weight> - <net_weight>17,2999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>10</shelf_width> - <shelf_height>8,6000003815</shelf_height> - <shelf_depth>9,7100000381</shelf_depth> + <grossWeight>19,3999996185</grossWeight> + <netWeight>17,2999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>10</shelfWidth> + <shelfHeight>8,6000003815</shelfHeight> + <shelfDepth>9,7100000381</shelfDepth> </Product> <Product> - <brand_name>Carlson</brand_name> - <product_name>Carlson 1% Milk</product_name> + <brandName>Carlson</brandName> + <productName>Carlson 1% Milk</productName> <sku>24180286526</sku> <srp>0,9200000167</srp> - <gross_weight>6,6300001144</gross_weight> - <net_weight>5,6300001144</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>17,8999996185</shelf_width> - <shelf_height>11,1000003815</shelf_height> - <shelf_depth>13,6000003815</shelf_depth> + <grossWeight>6,6300001144</grossWeight> + <netWeight>5,6300001144</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>17,8999996185</shelfWidth> + <shelfHeight>11,1000003815</shelfHeight> + <shelfDepth>13,6000003815</shelfDepth> </Product> <Product> - <brand_name>Carlson</brand_name> - <product_name>Carlson Whole Milk</product_name> + <brandName>Carlson</brandName> + <productName>Carlson Whole Milk</productName> <sku>76091555953</sku> <srp>0,6600000262</srp> - <gross_weight>9,779999733</gross_weight> - <net_weight>7,7699999809</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>14,8999996185</shelf_width> - <shelf_height>19,1000003815</shelf_height> - <shelf_depth>22,6000003815</shelf_depth> + <grossWeight>9,779999733</grossWeight> + <netWeight>7,7699999809</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>14,8999996185</shelfWidth> + <shelfHeight>19,1000003815</shelfHeight> + <shelfDepth>22,6000003815</shelfDepth> </Product> <Product> - <brand_name>Club</brand_name> - <product_name>Club 2% Milk</product_name> + <brandName>Club</brandName> + <productName>Club 2% Milk</productName> <sku>25262761712</sku> <srp>0,7099999785</srp> - <gross_weight>20,6000003815</gross_weight> - <net_weight>18,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>4,0999999046</shelf_width> - <shelf_height>15,3000001907</shelf_height> - <shelf_depth>11,6000003815</shelf_depth> + <grossWeight>20,6000003815</grossWeight> + <netWeight>18,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>4,0999999046</shelfWidth> + <shelfHeight>15,3000001907</shelfHeight> + <shelfDepth>11,6000003815</shelfDepth> </Product> <Product> - <brand_name>Club</brand_name> - <product_name>Club Buttermilk</product_name> + <brandName>Club</brandName> + <productName>Club Buttermilk</productName> <sku>74887329936</sku> <srp>0,6100000143</srp> - <gross_weight>20,1000003815</gross_weight> - <net_weight>18,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>13,5</shelf_width> - <shelf_height>8,6899995804</shelf_height> - <shelf_depth>16,7000007629</shelf_depth> + <grossWeight>20,1000003815</grossWeight> + <netWeight>18,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>13,5</shelfWidth> + <shelfHeight>8,6899995804</shelfHeight> + <shelfDepth>16,7000007629</shelfDepth> </Product> <Product> - <brand_name>Club</brand_name> - <product_name>Club Chocolate Milk</product_name> + <brandName>Club</brandName> + <productName>Club Chocolate Milk</productName> <sku>23704183697</sku> <srp>2,3099999428</srp> - <gross_weight>15,5</gross_weight> - <net_weight>13,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>10,6999998093</shelf_width> - <shelf_height>15</shelf_height> - <shelf_depth>13,1000003815</shelf_depth> + <grossWeight>15,5</grossWeight> + <netWeight>13,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>10,6999998093</shelfWidth> + <shelfHeight>15</shelfHeight> + <shelfDepth>13,1000003815</shelfDepth> </Product> <Product> - <brand_name>Club</brand_name> - <product_name>Club 1% Milk</product_name> + <brandName>Club</brandName> + <productName>Club 1% Milk</productName> <sku>42566518187</sku> <srp>1,3999999762</srp> - <gross_weight>18,7999992371</gross_weight> - <net_weight>15,6999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>5,5700001717</shelf_width> - <shelf_height>16,2999992371</shelf_height> - <shelf_depth>22,1000003815</shelf_depth> + <grossWeight>18,7999992371</grossWeight> + <netWeight>15,6999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>5,5700001717</shelfWidth> + <shelfHeight>16,2999992371</shelfHeight> + <shelfDepth>22,1000003815</shelfDepth> </Product> <Product> - <brand_name>Club</brand_name> - <product_name>Club Whole Milk</product_name> + <brandName>Club</brandName> + <productName>Club Whole Milk</productName> <sku>50621138215</sku> <srp>2,6600000858</srp> - <gross_weight>7,0300002098</gross_weight> - <net_weight>5,0300002098</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>4,4200000763</shelf_width> - <shelf_height>13,3000001907</shelf_height> - <shelf_depth>20,7999992371</shelf_depth> + <grossWeight>7,0300002098</grossWeight> + <netWeight>5,0300002098</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>4,4200000763</shelfWidth> + <shelfHeight>13,3000001907</shelfHeight> + <shelfDepth>20,7999992371</shelfDepth> </Product> <Product> - <brand_name>Gorilla</brand_name> - <product_name>Gorilla 2% Milk</product_name> + <brandName>Gorilla</brandName> + <productName>Gorilla 2% Milk</productName> <sku>68670495152</sku> <srp>3,6900000572</srp> - <gross_weight>14,3000001907</gross_weight> - <net_weight>13,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>21,1000003815</shelf_width> - <shelf_height>7,1300001144</shelf_height> - <shelf_depth>14,8000001907</shelf_depth> + <grossWeight>14,3000001907</grossWeight> + <netWeight>13,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>21,1000003815</shelfWidth> + <shelfHeight>7,1300001144</shelfHeight> + <shelfDepth>14,8000001907</shelfDepth> </Product> <Product> - <brand_name>Gorilla</brand_name> - <product_name>Gorilla Buttermilk</product_name> + <brandName>Gorilla</brandName> + <productName>Gorilla Buttermilk</productName> <sku>59057297110</sku> <srp>1,4900000095</srp> - <gross_weight>20,2999992371</gross_weight> - <net_weight>17,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>9,6000003815</shelf_width> - <shelf_height>6,4299998283</shelf_height> - <shelf_depth>13</shelf_depth> + <grossWeight>20,2999992371</grossWeight> + <netWeight>17,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>9,6000003815</shelfWidth> + <shelfHeight>6,4299998283</shelfHeight> + <shelfDepth>13</shelfDepth> </Product> <Product> - <brand_name>Gorilla</brand_name> - <product_name>Gorilla Chocolate Milk</product_name> + <brandName>Gorilla</brandName> + <productName>Gorilla Chocolate Milk</productName> <sku>62538514733</sku> <srp>1,4700000286</srp> - <gross_weight>13,3999996185</gross_weight> - <net_weight>10,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>15,1999998093</shelf_width> - <shelf_height>22,6000003815</shelf_height> - <shelf_depth>15,1000003815</shelf_depth> + <grossWeight>13,3999996185</grossWeight> + <netWeight>10,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>15,1999998093</shelfWidth> + <shelfHeight>22,6000003815</shelfHeight> + <shelfDepth>15,1000003815</shelfDepth> </Product> <Product> - <brand_name>Gorilla</brand_name> - <product_name>Gorilla 1% Milk</product_name> + <brandName>Gorilla</brandName> + <productName>Gorilla 1% Milk</productName> <sku>22163082957</sku> <srp>2,2999999523</srp> - <gross_weight>9,4300003052</gross_weight> - <net_weight>8,4300003052</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>13</shelf_width> - <shelf_height>5,6599998474</shelf_height> - <shelf_depth>6,4200000763</shelf_depth> + <grossWeight>9,4300003052</grossWeight> + <netWeight>8,4300003052</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>13</shelfWidth> + <shelfHeight>5,6599998474</shelfHeight> + <shelfDepth>6,4200000763</shelfDepth> </Product> <Product> - <brand_name>Gorilla</brand_name> - <product_name>Gorilla Whole Milk</product_name> + <brandName>Gorilla</brandName> + <productName>Gorilla Whole Milk</productName> <sku>60979936718</sku> <srp>0,6100000143</srp> - <gross_weight>10,3999996185</gross_weight> - <net_weight>7,3899998665</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>16,2000007629</shelf_width> - <shelf_height>16,7999992371</shelf_height> - <shelf_depth>21,1000003815</shelf_depth> + <grossWeight>10,3999996185</grossWeight> + <netWeight>7,3899998665</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>16,2000007629</shelfWidth> + <shelfHeight>16,7999992371</shelfHeight> + <shelfDepth>21,1000003815</shelfDepth> </Product> <Product> - <brand_name>Even Better</brand_name> - <product_name>Even Better 2% Milk</product_name> + <brandName>Even Better</brandName> + <productName>Even Better 2% Milk</productName> <sku>62660415768</sku> <srp>0,7900000215</srp> - <gross_weight>15,6999998093</gross_weight> - <net_weight>12,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>6,5399999619</shelf_width> - <shelf_height>16,7000007629</shelf_height> - <shelf_depth>18,3999996185</shelf_depth> + <grossWeight>15,6999998093</grossWeight> + <netWeight>12,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>6,5399999619</shelfWidth> + <shelfHeight>16,7000007629</shelfHeight> + <shelfDepth>18,3999996185</shelfDepth> </Product> <Product> - <brand_name>Even Better</brand_name> - <product_name>Even Better Buttermilk</product_name> + <brandName>Even Better</brandName> + <productName>Even Better Buttermilk</productName> <sku>24571685194</sku> <srp>1,1499999762</srp> - <gross_weight>21,7000007629</gross_weight> - <net_weight>19,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>15</shelf_width> - <shelf_height>16</shelf_height> - <shelf_depth>16,5</shelf_depth> + <grossWeight>21,7000007629</grossWeight> + <netWeight>19,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>15</shelfWidth> + <shelfHeight>16</shelfHeight> + <shelfDepth>16,5</shelfDepth> </Product> <Product> - <brand_name>Even Better</brand_name> - <product_name>Even Better Chocolate Milk</product_name> + <brandName>Even Better</brandName> + <productName>Even Better Chocolate Milk</productName> <sku>89577370285</sku> <srp>0,8500000238</srp> - <gross_weight>14,8000001907</gross_weight> - <net_weight>12,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>20,6000003815</shelf_width> - <shelf_height>12,1999998093</shelf_height> - <shelf_depth>18,7000007629</shelf_depth> + <grossWeight>14,8000001907</grossWeight> + <netWeight>12,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>20,6000003815</shelfWidth> + <shelfHeight>12,1999998093</shelfHeight> + <shelfDepth>18,7000007629</shelfDepth> </Product> <Product> - <brand_name>Even Better</brand_name> - <product_name>Even Better 1% Milk</product_name> + <brandName>Even Better</brandName> + <productName>Even Better 1% Milk</productName> <sku>20726405978</sku> <srp>3,2899999619</srp> - <gross_weight>21,7999992371</gross_weight> - <net_weight>18,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>13,1000003815</shelf_width> - <shelf_height>7,1799998283</shelf_height> - <shelf_depth>6,5700001717</shelf_depth> + <grossWeight>21,7999992371</grossWeight> + <netWeight>18,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>13,1000003815</shelfWidth> + <shelfHeight>7,1799998283</shelfHeight> + <shelfDepth>6,5700001717</shelfDepth> </Product> <Product> - <brand_name>Even Better</brand_name> - <product_name>Even Better Whole Milk</product_name> + <brandName>Even Better</brandName> + <productName>Even Better Whole Milk</productName> <sku>54969857335</sku> <srp>1,25</srp> - <gross_weight>8,0200004578</gross_weight> - <net_weight>6,0199999809</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>21,7000007629</shelf_width> - <shelf_height>5,9499998093</shelf_height> - <shelf_depth>6,2899999619</shelf_depth> + <grossWeight>8,0200004578</grossWeight> + <netWeight>6,0199999809</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>21,7000007629</shelfWidth> + <shelfHeight>5,9499998093</shelfHeight> + <shelfDepth>6,2899999619</shelfDepth> </Product> <Product> - <brand_name>Booker</brand_name> - <product_name>Booker 2% Milk</product_name> + <brandName>Booker</brandName> + <productName>Booker 2% Milk</productName> <sku>43768212199</sku> <srp>0,5699999928</srp> - <gross_weight>16,2999992371</gross_weight> - <net_weight>15,1999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>22,6000003815</shelf_width> - <shelf_height>19</shelf_height> - <shelf_depth>20,7999992371</shelf_depth> + <grossWeight>16,2999992371</grossWeight> + <netWeight>15,1999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>22,6000003815</shelfWidth> + <shelfHeight>19</shelfHeight> + <shelfDepth>20,7999992371</shelfDepth> </Product> <Product> - <brand_name>Booker</brand_name> - <product_name>Booker Buttermilk</product_name> + <brandName>Booker</brandName> + <productName>Booker Buttermilk</productName> <sku>16487196087</sku> <srp>2,4700000286</srp> - <gross_weight>13,1000003815</gross_weight> - <net_weight>11,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>6,7600002289</shelf_width> - <shelf_height>4,4200000763</shelf_height> - <shelf_depth>21,7999992371</shelf_depth> + <grossWeight>13,1000003815</grossWeight> + <netWeight>11,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>6,7600002289</shelfWidth> + <shelfHeight>4,4200000763</shelfHeight> + <shelfDepth>21,7999992371</shelfDepth> </Product> <Product> - <brand_name>Booker</brand_name> - <product_name>Booker Chocolate Milk</product_name> + <brandName>Booker</brandName> + <productName>Booker Chocolate Milk</productName> <sku>11447400450</sku> <srp>1,3200000525</srp> - <gross_weight>18,6000003815</gross_weight> - <net_weight>16,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>12,3999996185</shelf_width> - <shelf_height>20,2999992371</shelf_height> - <shelf_depth>5,1700000763</shelf_depth> + <grossWeight>18,6000003815</grossWeight> + <netWeight>16,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>12,3999996185</shelfWidth> + <shelfHeight>20,2999992371</shelfHeight> + <shelfDepth>5,1700000763</shelfDepth> </Product> <Product> - <brand_name>Booker</brand_name> - <product_name>Booker 1% Milk</product_name> + <brandName>Booker</brandName> + <productName>Booker 1% Milk</productName> <sku>43404150605</sku> <srp>2,5799999237</srp> - <gross_weight>18,2999992371</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>8,75</shelf_width> - <shelf_height>12,5</shelf_height> - <shelf_depth>15,3000001907</shelf_depth> + <grossWeight>18,2999992371</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>8,75</shelfWidth> + <shelfHeight>12,5</shelfHeight> + <shelfDepth>15,3000001907</shelfDepth> </Product> <Product> - <brand_name>Booker</brand_name> - <product_name>Booker Whole Milk</product_name> + <brandName>Booker</brandName> + <productName>Booker Whole Milk</productName> <sku>97602121233</sku> <srp>3,4600000381</srp> - <gross_weight>15,1000003815</gross_weight> - <net_weight>13,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>12,8000001907</shelf_width> - <shelf_height>17,7999992371</shelf_height> - <shelf_depth>16,2999992371</shelf_depth> + <grossWeight>15,1000003815</grossWeight> + <netWeight>13,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>12,8000001907</shelfWidth> + <shelfHeight>17,7999992371</shelfHeight> + <shelfDepth>16,2999992371</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Fresh Chicken</product_subcategory> <product_category>Meat</product_category> <product_department>Deli</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Moms</brand_name> - <product_name>Moms Roasted Chicken</product_name> + <brandName>Moms</brandName> + <productName>Moms Roasted Chicken</productName> <sku>79627898335</sku> <srp>1,6200000048</srp> - <gross_weight>10,1999998093</gross_weight> - <net_weight>8,1899995804</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>12,3999996185</shelf_width> - <shelf_height>16,2999992371</shelf_height> - <shelf_depth>13,6999998093</shelf_depth> + <grossWeight>10,1999998093</grossWeight> + <netWeight>8,1899995804</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>12,3999996185</shelfWidth> + <shelfHeight>16,2999992371</shelfHeight> + <shelfDepth>13,6999998093</shelfDepth> </Product> <Product> - <brand_name>Red Spade</brand_name> - <product_name>Red Spade Roasted Chicken</product_name> + <brandName>Red Spade</brandName> + <productName>Red Spade Roasted Chicken</productName> <sku>33215050101</sku> <srp>2,7599999905</srp> - <gross_weight>21,7999992371</gross_weight> - <net_weight>20,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>4,5500001907</shelf_width> - <shelf_height>5,6900000572</shelf_height> - <shelf_depth>7,9499998093</shelf_depth> + <grossWeight>21,7999992371</grossWeight> + <netWeight>20,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>4,5500001907</shelfWidth> + <shelfHeight>5,6900000572</shelfHeight> + <shelfDepth>7,9499998093</shelfDepth> </Product> <Product> - <brand_name>American</brand_name> - <product_name>American Roasted Chicken</product_name> + <brandName>American</brandName> + <productName>American Roasted Chicken</productName> <sku>81011092066</sku> <srp>2,9700000286</srp> - <gross_weight>12,3000001907</gross_weight> - <net_weight>10,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>4,0799999237</shelf_width> - <shelf_height>4,6199998856</shelf_height> - <shelf_depth>16,1000003815</shelf_depth> + <grossWeight>12,3000001907</grossWeight> + <netWeight>10,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>4,0799999237</shelfWidth> + <shelfHeight>4,6199998856</shelfHeight> + <shelfDepth>16,1000003815</shelfDepth> </Product> <Product> - <brand_name>Cutting Edge</brand_name> - <product_name>Cutting Edge Roasted Chicken</product_name> + <brandName>Cutting Edge</brandName> + <productName>Cutting Edge Roasted Chicken</productName> <sku>82447769045</sku> <srp>1,9900000095</srp> - <gross_weight>15,6000003815</gross_weight> - <net_weight>14,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>14,8999996185</shelf_width> - <shelf_height>16,7000007629</shelf_height> - <shelf_depth>15,5</shelf_depth> + <grossWeight>15,6000003815</grossWeight> + <netWeight>14,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>14,8999996185</shelfWidth> + <shelfHeight>16,7000007629</shelfHeight> + <shelfDepth>15,5</shelfDepth> </Product> <Product> - <brand_name>Lake</brand_name> - <product_name>Lake Roasted Chicken</product_name> + <brandName>Lake</brandName> + <productName>Lake Roasted Chicken</productName> <sku>95577149987</sku> <srp>2,6600000858</srp> - <gross_weight>21,2000007629</gross_weight> - <net_weight>19,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>21</shelf_width> - <shelf_height>11,8999996185</shelf_height> - <shelf_depth>11</shelf_depth> + <grossWeight>21,2000007629</grossWeight> + <netWeight>19,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>21</shelfWidth> + <shelfHeight>11,8999996185</shelfHeight> + <shelfDepth>11</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Conditioner</product_subcategory> <product_category>Bathroom Products</product_category> <product_department>Health and Hygiene</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Faux Products</brand_name> - <product_name>Faux Products Silky Smooth Hair Conditioner</product_name> + <brandName>Faux Products</brandName> + <productName>Faux Products Silky Smooth Hair Conditioner</productName> <sku>15625960230</sku> <srp>2,2899999619</srp> - <gross_weight>19,7000007629</gross_weight> - <net_weight>17,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>14,5</shelf_width> - <shelf_height>8,2299995422</shelf_height> - <shelf_depth>15</shelf_depth> + <grossWeight>19,7000007629</grossWeight> + <netWeight>17,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>14,5</shelfWidth> + <shelfHeight>8,2299995422</shelfHeight> + <shelfDepth>15</shelfDepth> </Product> <Product> - <brand_name>Bird Call</brand_name> - <product_name>Bird Call Silky Smooth Hair Conditioner</product_name> + <brandName>Bird Call</brandName> + <productName>Bird Call Silky Smooth Hair Conditioner</productName> <sku>31408185362</sku> <srp>0,5199999809</srp> - <gross_weight>13,3999996185</gross_weight> - <net_weight>11,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>10,1000003815</shelf_width> - <shelf_height>10,6999998093</shelf_height> - <shelf_depth>17,1000003815</shelf_depth> + <grossWeight>13,3999996185</grossWeight> + <netWeight>11,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>10,1000003815</shelfWidth> + <shelfHeight>10,6999998093</shelfHeight> + <shelfDepth>17,1000003815</shelfDepth> </Product> <Product> - <brand_name>Consolidated</brand_name> - <product_name>Consolidated Silky Smooth Hair Conditioner</product_name> + <brandName>Consolidated</brandName> + <productName>Consolidated Silky Smooth Hair Conditioner</productName> <sku>89795927405</sku> <srp>1,4700000286</srp> - <gross_weight>6,5100002289</gross_weight> - <net_weight>4,5100002289</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>17,3999996185</shelf_width> - <shelf_height>5,1300001144</shelf_height> - <shelf_depth>15,3000001907</shelf_depth> + <grossWeight>6,5100002289</grossWeight> + <netWeight>4,5100002289</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>17,3999996185</shelfWidth> + <shelfHeight>5,1300001144</shelfHeight> + <shelfDepth>15,3000001907</shelfDepth> </Product> <Product> - <brand_name>Steady</brand_name> - <product_name>Steady Silky Smooth Hair Conditioner</product_name> + <brandName>Steady</brandName> + <productName>Steady Silky Smooth Hair Conditioner</productName> <sku>66828675866</sku> <srp>1,4500000477</srp> - <gross_weight>9,6499996185</gross_weight> - <net_weight>7,6399998665</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>21,1000003815</shelf_width> - <shelf_height>17,6000003815</shelf_height> - <shelf_depth>10,6999998093</shelf_depth> + <grossWeight>9,6499996185</grossWeight> + <netWeight>7,6399998665</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>21,1000003815</shelfWidth> + <shelfHeight>17,6000003815</shelfHeight> + <shelfDepth>10,6999998093</shelfDepth> </Product> <Product> - <brand_name>Hilltop</brand_name> - <product_name>Hilltop Silky Smooth Hair Conditioner</product_name> + <brandName>Hilltop</brandName> + <productName>Hilltop Silky Smooth Hair Conditioner</productName> <sku>87351329922</sku> <srp>1,4900000095</srp> - <gross_weight>13,1000003815</gross_weight> - <net_weight>10,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>10,1999998093</shelf_width> - <shelf_height>9,5399999619</shelf_height> - <shelf_depth>5,0399999619</shelf_depth> + <grossWeight>13,1000003815</grossWeight> + <netWeight>10,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>10,1999998093</shelfWidth> + <shelfHeight>9,5399999619</shelfHeight> + <shelfDepth>5,0399999619</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Shampoo</product_subcategory> <product_category>Bathroom Products</product_category> <product_department>Health and Hygiene</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Faux Products</brand_name> - <product_name>Faux Products Conditioning Shampoo</product_name> + <brandName>Faux Products</brandName> + <productName>Faux Products Conditioning Shampoo</productName> <sku>44682019352</sku> <srp>1,4800000191</srp> - <gross_weight>8,2700004578</gross_weight> - <net_weight>6,2699999809</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>8,5500001907</shelf_width> - <shelf_height>14,1000003815</shelf_height> - <shelf_depth>3,4800000191</shelf_depth> + <grossWeight>8,2700004578</grossWeight> + <netWeight>6,2699999809</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>8,5500001907</shelfWidth> + <shelfHeight>14,1000003815</shelfHeight> + <shelfDepth>3,4800000191</shelfDepth> </Product> <Product> - <brand_name>Faux Products</brand_name> - <product_name>Faux Products Extra Moisture Shampoo</product_name> + <brandName>Faux Products</brandName> + <productName>Faux Products Extra Moisture Shampoo</productName> <sku>35068821310</sku> <srp>2,2799999714</srp> - <gross_weight>20,1000003815</gross_weight> - <net_weight>19,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>7,8600001335</shelf_width> - <shelf_height>8,3299999237</shelf_height> - <shelf_depth>14,6999998093</shelf_depth> + <grossWeight>20,1000003815</grossWeight> + <netWeight>19,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>7,8600001335</shelfWidth> + <shelfHeight>8,3299999237</shelfHeight> + <shelfDepth>14,6999998093</shelfDepth> </Product> <Product> - <brand_name>Faux Products</brand_name> - <product_name>Faux Products Apricot Shampoo</product_name> + <brandName>Faux Products</brandName> + <productName>Faux Products Apricot Shampoo</productName> <sku>64272477030</sku> <srp>2,9800000191</srp> - <gross_weight>11,6000003815</gross_weight> - <net_weight>8,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>21,3999996185</shelf_width> - <shelf_height>6,6100001335</shelf_height> - <shelf_depth>22,3999996185</shelf_depth> + <grossWeight>11,6000003815</grossWeight> + <netWeight>8,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>21,3999996185</shelfWidth> + <shelfHeight>6,6100001335</shelfHeight> + <shelfDepth>22,3999996185</shelfDepth> </Product> <Product> - <brand_name>Bird Call</brand_name> - <product_name>Bird Call Conditioning Shampoo</product_name> + <brandName>Bird Call</brandName> + <productName>Bird Call Conditioning Shampoo</productName> <sku>77242599129</sku> <srp>2,9300000668</srp> - <gross_weight>15,3000001907</gross_weight> - <net_weight>14,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>13</shelf_width> - <shelf_height>3,8800001144</shelf_height> - <shelf_depth>22</shelf_depth> + <grossWeight>15,3000001907</grossWeight> + <netWeight>14,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>13</shelfWidth> + <shelfHeight>3,8800001144</shelfHeight> + <shelfDepth>22</shelfDepth> </Product> <Product> - <brand_name>Bird Call</brand_name> - <product_name>Bird Call Extra Moisture Shampoo</product_name> + <brandName>Bird Call</brandName> + <productName>Bird Call Extra Moisture Shampoo</productName> <sku>69916102290</sku> <srp>1,4299999475</srp> - <gross_weight>18,8999996185</gross_weight> - <net_weight>16,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>11,3000001907</shelf_width> - <shelf_height>4,1300001144</shelf_height> - <shelf_depth>5,8899998665</shelf_depth> + <grossWeight>18,8999996185</grossWeight> + <netWeight>16,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>11,3000001907</shelfWidth> + <shelfHeight>4,1300001144</shelfHeight> + <shelfDepth>5,8899998665</shelfDepth> </Product> <Product> - <brand_name>Bird Call</brand_name> - <product_name>Bird Call Apricot Shampoo</product_name> + <brandName>Bird Call</brandName> + <productName>Bird Call Apricot Shampoo</productName> <sku>61497420668</sku> <srp>2,2799999714</srp> - <gross_weight>16,2000007629</gross_weight> - <net_weight>15,1999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>17,2999992371</shelf_width> - <shelf_height>8,3800001144</shelf_height> - <shelf_depth>6,75</shelf_depth> + <grossWeight>16,2000007629</grossWeight> + <netWeight>15,1999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>17,2999992371</shelfWidth> + <shelfHeight>8,3800001144</shelfHeight> + <shelfDepth>6,75</shelfDepth> </Product> <Product> - <brand_name>Consolidated</brand_name> - <product_name>Consolidated Conditioning Shampoo</product_name> + <brandName>Consolidated</brandName> + <productName>Consolidated Conditioning Shampoo</productName> <sku>26301613450</sku> <srp>1,9700000286</srp> - <gross_weight>12,5</gross_weight> - <net_weight>10,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>5,1500000954</shelf_width> - <shelf_height>8,8699998856</shelf_height> - <shelf_depth>13,3999996185</shelf_depth> + <grossWeight>12,5</grossWeight> + <netWeight>10,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>5,1500000954</shelfWidth> + <shelfHeight>8,8699998856</shelfHeight> + <shelfDepth>13,3999996185</shelfDepth> </Product> <Product> - <brand_name>Consolidated</brand_name> - <product_name>Consolidated Extra Moisture Shampoo</product_name> + <brandName>Consolidated</brandName> + <productName>Consolidated Extra Moisture Shampoo</productName> <sku>47450649142</sku> <srp>0,7300000191</srp> - <gross_weight>16,2000007629</gross_weight> - <net_weight>14,1999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>3,4400000572</shelf_width> - <shelf_height>9,1199998856</shelf_height> - <shelf_depth>17,2999992371</shelf_depth> + <grossWeight>16,2000007629</grossWeight> + <netWeight>14,1999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>3,4400000572</shelfWidth> + <shelfHeight>9,1199998856</shelfHeight> + <shelfDepth>17,2999992371</shelfDepth> </Product> <Product> - <brand_name>Consolidated</brand_name> - <product_name>Consolidated Apricot Shampoo</product_name> + <brandName>Consolidated</brandName> + <productName>Consolidated Apricot Shampoo</productName> <sku>72080902457</sku> <srp>0,9599999785</srp> - <gross_weight>9,4200000763</gross_weight> - <net_weight>7,4200000763</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>19</shelf_width> - <shelf_height>15,3000001907</shelf_height> - <shelf_depth>19,2999992371</shelf_depth> + <grossWeight>9,4200000763</grossWeight> + <netWeight>7,4200000763</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>19</shelfWidth> + <shelfHeight>15,3000001907</shelfHeight> + <shelfDepth>19,2999992371</shelfDepth> </Product> <Product> - <brand_name>Steady</brand_name> - <product_name>Steady Conditioning Shampoo</product_name> + <brandName>Steady</brandName> + <productName>Steady Conditioning Shampoo</productName> <sku>67602064013</sku> <srp>1,5099999905</srp> - <gross_weight>12</gross_weight> - <net_weight>10</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>21,2000007629</shelf_width> - <shelf_height>6,7100000381</shelf_height> - <shelf_depth>4,9299998283</shelf_depth> + <grossWeight>12</grossWeight> + <netWeight>10</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>21,2000007629</shelfWidth> + <shelfHeight>6,7100000381</shelfHeight> + <shelfDepth>4,9299998283</shelfDepth> </Product> <Product> - <brand_name>Steady</brand_name> - <product_name>Steady Extra Moisture Shampoo</product_name> + <brandName>Steady</brandName> + <productName>Steady Extra Moisture Shampoo</productName> <sku>44894450306</sku> <srp>1,7999999523</srp> - <gross_weight>11,5</gross_weight> - <net_weight>8,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>19</shelf_width> - <shelf_height>10</shelf_height> - <shelf_depth>15</shelf_depth> + <grossWeight>11,5</grossWeight> + <netWeight>8,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>19</shelfWidth> + <shelfHeight>10</shelfHeight> + <shelfDepth>15</shelfDepth> </Product> <Product> - <brand_name>Steady</brand_name> - <product_name>Steady Apricot Shampoo</product_name> + <brandName>Steady</brandName> + <productName>Steady Apricot Shampoo</productName> <sku>38762469887</sku> <srp>2,3499999046</srp> - <gross_weight>11,3000001907</gross_weight> - <net_weight>9,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>13,6999998093</shelf_width> - <shelf_height>22,1000003815</shelf_height> - <shelf_depth>10,1999998093</shelf_depth> + <grossWeight>11,3000001907</grossWeight> + <netWeight>9,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>13,6999998093</shelfWidth> + <shelfHeight>22,1000003815</shelfHeight> + <shelfDepth>10,1999998093</shelfDepth> </Product> <Product> - <brand_name>Hilltop</brand_name> - <product_name>Hilltop Conditioning Shampoo</product_name> + <brandName>Hilltop</brandName> + <productName>Hilltop Conditioning Shampoo</productName> <sku>70047573447</sku> <srp>3,5699999332</srp> - <gross_weight>16,2999992371</gross_weight> - <net_weight>13,1999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>15,8000001907</shelf_width> - <shelf_height>5,3899998665</shelf_height> - <shelf_depth>8,9200000763</shelf_depth> + <grossWeight>16,2999992371</grossWeight> + <netWeight>13,1999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>15,8000001907</shelfWidth> + <shelfHeight>5,3899998665</shelfHeight> + <shelfDepth>8,9200000763</shelfDepth> </Product> <Product> - <brand_name>Hilltop</brand_name> - <product_name>Hilltop Extra Moisture Shampoo</product_name> + <brandName>Hilltop</brandName> + <productName>Hilltop Extra Moisture Shampoo</productName> <sku>73528791069</sku> <srp>3,5499999523</srp> - <gross_weight>18,6000003815</gross_weight> - <net_weight>16,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>7,3499999046</shelf_width> - <shelf_height>6,6599998474</shelf_height> - <shelf_depth>8,2100000381</shelf_depth> + <grossWeight>18,6000003815</grossWeight> + <netWeight>16,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>7,3499999046</shelfWidth> + <shelfHeight>6,6599998474</shelfHeight> + <shelfDepth>8,2100000381</shelfDepth> </Product> <Product> - <brand_name>Hilltop</brand_name> - <product_name>Hilltop Apricot Shampoo</product_name> + <brandName>Hilltop</brandName> + <productName>Hilltop Apricot Shampoo</productName> <sku>71970213055</sku> <srp>2,3800001144</srp> - <gross_weight>16</gross_weight> - <net_weight>13</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>11,8000001907</shelf_width> - <shelf_height>19,7000007629</shelf_height> - <shelf_depth>9,0600004196</shelf_depth> + <grossWeight>16</grossWeight> + <netWeight>13</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>11,8000001907</shelfWidth> + <shelfHeight>19,7000007629</shelfHeight> + <shelfDepth>9,0600004196</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Lightbulbs</product_subcategory> <product_category>Electrical</product_category> <product_department>Household</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny 60 Watt Lightbulb</product_name> + <brandName>Denny</brandName> + <productName>Denny 60 Watt Lightbulb</productName> <sku>37310257554</sku> <srp>1,9199999571</srp> - <gross_weight>20</gross_weight> - <net_weight>18</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>5,5900001526</shelf_width> - <shelf_height>12,5</shelf_height> - <shelf_depth>20,2000007629</shelf_depth> + <grossWeight>20</grossWeight> + <netWeight>18</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>5,5900001526</shelfWidth> + <shelfHeight>12,5</shelfHeight> + <shelfDepth>20,2000007629</shelfDepth> </Product> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny 100 Watt Lightbulb</product_name> + <brandName>Denny</brandName> + <productName>Denny 100 Watt Lightbulb</productName> <sku>54062916636</sku> <srp>3,7000000477</srp> - <gross_weight>13,3000001907</gross_weight> - <net_weight>11,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>9,0100002289</shelf_width> - <shelf_height>22</shelf_height> - <shelf_depth>22,2999992371</shelf_depth> + <grossWeight>13,3000001907</grossWeight> + <netWeight>11,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>9,0100002289</shelfWidth> + <shelfHeight>22</shelfHeight> + <shelfDepth>22,2999992371</shelfDepth> </Product> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny 75 Watt Lightbulb</product_name> + <brandName>Denny</brandName> + <productName>Denny 75 Watt Lightbulb</productName> <sku>96679784655</sku> <srp>3,9300000668</srp> - <gross_weight>15,6999998093</gross_weight> - <net_weight>13,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>9,3299999237</shelf_width> - <shelf_height>20</shelf_height> - <shelf_depth>11,5</shelf_depth> + <grossWeight>15,6999998093</grossWeight> + <netWeight>13,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>9,3299999237</shelfWidth> + <shelfHeight>20</shelfHeight> + <shelfDepth>11,5</shelfDepth> </Product> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny 25 Watt Lightbulb</product_name> + <brandName>Denny</brandName> + <productName>Denny 25 Watt Lightbulb</productName> <sku>84415823817</sku> <srp>2,2699999809</srp> - <gross_weight>21,2000007629</gross_weight> - <net_weight>20,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>6,8200001717</shelf_width> - <shelf_height>14,8999996185</shelf_height> - <shelf_depth>4,6700000763</shelf_depth> + <grossWeight>21,2000007629</grossWeight> + <netWeight>20,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>6,8200001717</shelfWidth> + <shelfHeight>14,8999996185</shelfHeight> + <shelfDepth>4,6700000763</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality 60 Watt Lightbulb</product_name> + <brandName>High Quality</brandName> + <productName>High Quality 60 Watt Lightbulb</productName> <sku>83591044545</sku> <srp>3,5099999905</srp> - <gross_weight>21,6000003815</gross_weight> - <net_weight>20,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>6,3400001526</shelf_width> - <shelf_height>4,3299999237</shelf_height> - <shelf_depth>20</shelf_depth> + <grossWeight>21,6000003815</grossWeight> + <netWeight>20,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>6,3400001526</shelfWidth> + <shelfHeight>4,3299999237</shelfHeight> + <shelfDepth>20</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality 100 Watt Lightbulb</product_name> + <brandName>High Quality</brandName> + <productName>High Quality 100 Watt Lightbulb</productName> <sku>50496844649</sku> <srp>1,5399999619</srp> - <gross_weight>20,7999992371</gross_weight> - <net_weight>18,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>11,5</shelf_width> - <shelf_height>3,2200000286</shelf_height> - <shelf_depth>10,1999998093</shelf_depth> + <grossWeight>20,7999992371</grossWeight> + <netWeight>18,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>11,5</shelfWidth> + <shelfHeight>3,2200000286</shelfHeight> + <shelfDepth>10,1999998093</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality 75 Watt Lightbulb</product_name> + <brandName>High Quality</brandName> + <productName>High Quality 75 Watt Lightbulb</productName> <sku>47379688620</sku> <srp>2,2100000381</srp> - <gross_weight>21,2999992371</gross_weight> - <net_weight>19,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>3,6900000572</shelf_width> - <shelf_height>9,9799995422</shelf_height> - <shelf_depth>19,8999996185</shelf_depth> + <grossWeight>21,2999992371</grossWeight> + <netWeight>19,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>3,6900000572</shelfWidth> + <shelfHeight>9,9799995422</shelfHeight> + <shelfDepth>19,8999996185</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality 25 Watt Lightbulb</product_name> + <brandName>High Quality</brandName> + <productName>High Quality 25 Watt Lightbulb</productName> <sku>31577443480</sku> <srp>0,5</srp> - <gross_weight>9,6099996567</gross_weight> - <net_weight>8,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>21,2000007629</shelf_width> - <shelf_height>4,6999998093</shelf_height> - <shelf_depth>13,6000003815</shelf_depth> + <grossWeight>9,6099996567</grossWeight> + <netWeight>8,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>21,2000007629</shelfWidth> + <shelfHeight>4,6999998093</shelfHeight> + <shelfDepth>13,6000003815</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant 60 Watt Lightbulb</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant 60 Watt Lightbulb</productName> <sku>23503254055</sku> <srp>2,5699999332</srp> - <gross_weight>12</gross_weight> - <net_weight>9</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>15,8000001907</shelf_width> - <shelf_height>4,4699997902</shelf_height> - <shelf_depth>3,5099999905</shelf_depth> + <grossWeight>12</grossWeight> + <netWeight>9</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>15,8000001907</shelfWidth> + <shelfHeight>4,4699997902</shelfHeight> + <shelfDepth>3,5099999905</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant 100 Watt Lightbulb</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant 100 Watt Lightbulb</productName> <sku>61080326437</sku> <srp>1,8899999857</srp> - <gross_weight>18</gross_weight> - <net_weight>16</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>14,3999996185</shelf_width> - <shelf_height>22,7000007629</shelf_height> - <shelf_depth>16,5</shelf_depth> + <grossWeight>18</grossWeight> + <netWeight>16</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>14,3999996185</shelfWidth> + <shelfHeight>22,7000007629</shelfHeight> + <shelfDepth>16,5</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant 75 Watt Lightbulb</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant 75 Watt Lightbulb</productName> <sku>57963170409</sku> <srp>2,5499999523</srp> - <gross_weight>6,3200001717</gross_weight> - <net_weight>5,3200001717</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>12</shelf_width> - <shelf_height>17,3999996185</shelf_height> - <shelf_depth>10,1999998093</shelf_depth> + <grossWeight>6,3200001717</grossWeight> + <netWeight>5,3200001717</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>12</shelfWidth> + <shelfHeight>17,3999996185</shelfHeight> + <shelfDepth>10,1999998093</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant 25 Watt Lightbulb</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant 25 Watt Lightbulb</productName> <sku>43628973364</sku> <srp>1,4500000477</srp> - <gross_weight>16,8999996185</gross_weight> - <net_weight>15,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>12,5</shelf_width> - <shelf_height>3,5199999809</shelf_height> - <shelf_depth>8,9200000763</shelf_depth> + <grossWeight>16,8999996185</grossWeight> + <netWeight>15,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>12,5</shelfWidth> + <shelfHeight>3,5199999809</shelfHeight> + <shelfDepth>8,9200000763</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing 60 Watt Lightbulb</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing 60 Watt Lightbulb</productName> <sku>95565938353</sku> <srp>1,3300000429</srp> - <gross_weight>20,6000003815</gross_weight> - <net_weight>18,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>6,1799998283</shelf_width> - <shelf_height>17,2999992371</shelf_height> - <shelf_depth>17,2000007629</shelf_depth> + <grossWeight>20,6000003815</grossWeight> + <netWeight>18,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>6,1799998283</shelfWidth> + <shelfHeight>17,2999992371</shelfHeight> + <shelfDepth>17,2000007629</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing 100 Watt Lightbulb</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing 100 Watt Lightbulb</productName> <sku>27761893868</sku> <srp>1,5399999619</srp> - <gross_weight>15,8000001907</gross_weight> - <net_weight>14,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>13,3999996185</shelf_width> - <shelf_height>4,4400000572</shelf_height> - <shelf_depth>19,2000007629</shelf_depth> + <grossWeight>15,8000001907</grossWeight> + <netWeight>14,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>13,3999996185</shelfWidth> + <shelfHeight>4,4400000572</shelfHeight> + <shelfDepth>19,2000007629</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing 75 Watt Lightbulb</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing 75 Watt Lightbulb</productName> <sku>53120270371</sku> <srp>2,4800000191</srp> - <gross_weight>11,1000003815</gross_weight> - <net_weight>8,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>3,2599999905</shelf_width> - <shelf_height>5,3200001717</shelf_height> - <shelf_depth>5,5399999619</shelf_depth> + <grossWeight>11,1000003815</grossWeight> + <netWeight>8,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>3,2599999905</shelfWidth> + <shelfHeight>5,3200001717</shelfHeight> + <shelfDepth>5,5399999619</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing 25 Watt Lightbulb</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing 25 Watt Lightbulb</productName> <sku>68052621483</sku> <srp>2,6700000763</srp> - <gross_weight>13,6999998093</gross_weight> - <net_weight>12,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>9,7299995422</shelf_width> - <shelf_height>6,5599999428</shelf_height> - <shelf_depth>19,7999992371</shelf_depth> + <grossWeight>13,6999998093</grossWeight> + <netWeight>12,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>9,7299995422</shelfWidth> + <shelfHeight>6,5599999428</shelfHeight> + <shelfDepth>19,7999992371</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset 60 Watt Lightbulb</product_name> + <brandName>Sunset</brandName> + <productName>Sunset 60 Watt Lightbulb</productName> <sku>56587154269</sku> <srp>2,1700000763</srp> - <gross_weight>21,6000003815</gross_weight> - <net_weight>20,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>22,8999996185</shelf_width> - <shelf_height>3,2799999714</shelf_height> - <shelf_depth>17,6000003815</shelf_depth> + <grossWeight>21,6000003815</grossWeight> + <netWeight>20,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>22,8999996185</shelfWidth> + <shelfHeight>3,2799999714</shelfHeight> + <shelfDepth>17,6000003815</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset 100 Watt Lightbulb</product_name> + <brandName>Sunset</brandName> + <productName>Sunset 100 Watt Lightbulb</productName> <sku>83140047192</sku> <srp>1,6399999857</srp> - <gross_weight>16,7000007629</gross_weight> - <net_weight>13,6999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>6,1700000763</shelf_width> - <shelf_height>14,1000003815</shelf_height> - <shelf_depth>14,1000003815</shelf_depth> + <grossWeight>16,7000007629</grossWeight> + <netWeight>13,6999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>6,1700000763</shelfWidth> + <shelfHeight>14,1000003815</shelfHeight> + <shelfDepth>14,1000003815</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset 75 Watt Lightbulb</product_name> + <brandName>Sunset</brandName> + <productName>Sunset 75 Watt Lightbulb</productName> <sku>40330317616</sku> <srp>1,9099999666</srp> - <gross_weight>18,7000007629</gross_weight> - <net_weight>16,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>13,5</shelf_width> - <shelf_height>9,7700004578</shelf_height> - <shelf_depth>13,5</shelf_depth> + <grossWeight>18,7000007629</grossWeight> + <netWeight>16,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>13,5</shelfWidth> + <shelfHeight>9,7700004578</shelfHeight> + <shelfDepth>13,5</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset 25 Watt Lightbulb</product_name> + <brandName>Sunset</brandName> + <productName>Sunset 25 Watt Lightbulb</productName> <sku>32639759182</sku> <srp>2,5299999714</srp> - <gross_weight>18,7000007629</gross_weight> - <net_weight>16,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>3,7200000286</shelf_width> - <shelf_height>8,7299995422</shelf_height> - <shelf_depth>8,4200000763</shelf_depth> + <grossWeight>18,7000007629</grossWeight> + <netWeight>16,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>3,7200000286</shelfWidth> + <shelfHeight>8,7299995422</shelfHeight> + <shelfDepth>8,4200000763</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Hot Dogs</product_subcategory> <product_category>Meat</product_category> <product_department>Deli</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Moms</brand_name> - <product_name>Moms Chicken Hot Dogs</product_name> + <brandName>Moms</brandName> + <productName>Moms Chicken Hot Dogs</productName> <sku>16489728093</sku> <srp>1,4900000095</srp> - <gross_weight>11,3000001907</gross_weight> - <net_weight>10,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>13,6999998093</shelf_width> - <shelf_height>18,6000003815</shelf_height> - <shelf_depth>18,3999996185</shelf_depth> + <grossWeight>11,3000001907</grossWeight> + <netWeight>10,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>13,6999998093</shelfWidth> + <shelfHeight>18,6000003815</shelfHeight> + <shelfDepth>18,3999996185</shelfDepth> </Product> <Product> - <brand_name>Moms</brand_name> - <product_name>Moms Turkey Hot Dogs</product_name> + <brandName>Moms</brandName> + <productName>Moms Turkey Hot Dogs</productName> <sku>87318456768</sku> <srp>1,1100000143</srp> - <gross_weight>17,2999992371</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>3,2100000381</shelf_width> - <shelf_height>6,9099998474</shelf_height> - <shelf_depth>8,9499998093</shelf_depth> + <grossWeight>17,2999992371</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>3,2100000381</shelfWidth> + <shelfHeight>6,9099998474</shelfHeight> + <shelfDepth>8,9499998093</shelfDepth> </Product> <Product> - <brand_name>Moms</brand_name> - <product_name>Moms Foot-Long Hot Dogs</product_name> + <brandName>Moms</brandName> + <productName>Moms Foot-Long Hot Dogs</productName> <sku>82278661131</sku> <srp>3,8499999046</srp> - <gross_weight>16,2000007629</gross_weight> - <net_weight>14,1999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>18,8999996185</shelf_width> - <shelf_height>11,5</shelf_height> - <shelf_depth>3,6800000668</shelf_depth> + <grossWeight>16,2000007629</grossWeight> + <netWeight>14,1999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>18,8999996185</shelfWidth> + <shelfHeight>11,5</shelfHeight> + <shelfDepth>3,6800000668</shelfDepth> </Product> <Product> - <brand_name>Red Spade</brand_name> - <product_name>Red Spade Chicken Hot Dogs</product_name> + <brandName>Red Spade</brandName> + <productName>Red Spade Chicken Hot Dogs</productName> <sku>28232321143</sku> <srp>2,9500000477</srp> - <gross_weight>20,2999992371</gross_weight> - <net_weight>18,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>4,4099998474</shelf_width> - <shelf_height>15,8999996185</shelf_height> - <shelf_depth>17,8999996185</shelf_depth> + <grossWeight>20,2999992371</grossWeight> + <netWeight>18,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>4,4099998474</shelfWidth> + <shelfHeight>15,8999996185</shelfHeight> + <shelfDepth>17,8999996185</shelfDepth> </Product> <Product> - <brand_name>Red Spade</brand_name> - <product_name>Red Spade Turkey Hot Dogs</product_name> + <brandName>Red Spade</brandName> + <productName>Red Spade Turkey Hot Dogs</productName> <sku>25115165114</sku> <srp>1,8600000143</srp> - <gross_weight>6,1500000954</gross_weight> - <net_weight>4,1500000954</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>19,8999996185</shelf_width> - <shelf_height>7,9600000381</shelf_height> - <shelf_depth>10,3000001907</shelf_depth> + <grossWeight>6,1500000954</grossWeight> + <netWeight>4,1500000954</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>19,8999996185</shelfWidth> + <shelfHeight>7,9600000381</shelfHeight> + <shelfDepth>10,3000001907</shelfDepth> </Product> <Product> - <brand_name>Red Spade</brand_name> - <product_name>Red Spade Foot-Long Hot Dogs</product_name> + <brandName>Red Spade</brandName> + <productName>Red Spade Foot-Long Hot Dogs</productName> <sku>90120850205</sku> <srp>3,5599999428</srp> - <gross_weight>16</gross_weight> - <net_weight>14</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>20,2000007629</shelf_width> - <shelf_height>10</shelf_height> - <shelf_depth>4,1199998856</shelf_depth> + <grossWeight>16</grossWeight> + <netWeight>14</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>20,2000007629</shelfWidth> + <shelfHeight>10</shelfHeight> + <shelfDepth>4,1199998856</shelfDepth> </Product> <Product> - <brand_name>American</brand_name> - <product_name>American Foot-Long Hot Dogs</product_name> + <brandName>American</brandName> + <productName>American Foot-Long Hot Dogs</productName> <sku>94469569325</sku> <srp>2,1400001049</srp> - <gross_weight>8,3999996185</gross_weight> - <net_weight>5,3899998665</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>8,4899997711</shelf_width> - <shelf_height>6,8499999046</shelf_height> - <shelf_depth>16,7000007629</shelf_depth> + <grossWeight>8,3999996185</grossWeight> + <netWeight>5,3899998665</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>8,4899997711</shelfWidth> + <shelfHeight>6,8499999046</shelfHeight> + <shelfDepth>16,7000007629</shelfDepth> </Product> <Product> - <brand_name>Cutting Edge</brand_name> - <product_name>Cutting Edge Chicken Hot Dogs</product_name> + <brandName>Cutting Edge</brandName> + <productName>Cutting Edge Chicken Hot Dogs</productName> <sku>75996991991</sku> <srp>1,5299999714</srp> - <gross_weight>18,2000007629</gross_weight> - <net_weight>17,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>20,1000003815</shelf_width> - <shelf_height>15,6999998093</shelf_height> - <shelf_depth>4,8400001526</shelf_depth> + <grossWeight>18,2000007629</grossWeight> + <netWeight>17,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>20,1000003815</shelfWidth> + <shelfHeight>15,6999998093</shelfHeight> + <shelfDepth>4,8400001526</shelfDepth> </Product> <Product> - <brand_name>Cutting Edge</brand_name> - <product_name>Cutting Edge Turkey Hot Dogs</product_name> + <brandName>Cutting Edge</brandName> + <productName>Cutting Edge Turkey Hot Dogs</productName> <sku>94711729884</sku> <srp>1,7599999905</srp> - <gross_weight>21,8999996185</gross_weight> - <net_weight>19,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>8,1300001144</shelf_width> - <shelf_height>12,6000003815</shelf_height> - <shelf_depth>16,2000007629</shelf_depth> + <grossWeight>21,8999996185</grossWeight> + <netWeight>19,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>8,1300001144</shelfWidth> + <shelfHeight>12,6000003815</shelfHeight> + <shelfDepth>16,2000007629</shelfDepth> </Product> <Product> - <brand_name>Cutting Edge</brand_name> - <product_name>Cutting Edge Foot-Long Hot Dogs</product_name> + <brandName>Cutting Edge</brandName> + <productName>Cutting Edge Foot-Long Hot Dogs</productName> <sku>10479648709</sku> <srp>1,4400000572</srp> - <gross_weight>6,6799998283</gross_weight> - <net_weight>5,6700000763</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>22,3999996185</shelf_width> - <shelf_height>20,7000007629</shelf_height> - <shelf_depth>17,7999992371</shelf_depth> + <grossWeight>6,6799998283</grossWeight> + <netWeight>5,6700000763</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>22,3999996185</shelfWidth> + <shelfHeight>20,7000007629</shelfHeight> + <shelfDepth>17,7999992371</shelfDepth> </Product> <Product> - <brand_name>American</brand_name> - <product_name>American Chicken Hot Dogs</product_name> + <brandName>American</brandName> + <productName>American Chicken Hot Dogs</productName> <sku>74560315012</sku> <srp>2,5199999809</srp> - <gross_weight>19,8999996185</gross_weight> - <net_weight>18,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>14,5</shelf_width> - <shelf_height>11,6999998093</shelf_height> - <shelf_depth>8,8199996948</shelf_depth> + <grossWeight>19,8999996185</grossWeight> + <netWeight>18,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>14,5</shelfWidth> + <shelfHeight>11,6999998093</shelfHeight> + <shelfDepth>8,8199996948</shelfDepth> </Product> <Product> - <brand_name>American</brand_name> - <product_name>American Turkey Hot Dogs</product_name> + <brandName>American</brandName> + <productName>American Turkey Hot Dogs</productName> <sku>27177183032</sku> <srp>2,7400000095</srp> - <gross_weight>21,8999996185</gross_weight> - <net_weight>18,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>22,2999992371</shelf_width> - <shelf_height>9,7299995422</shelf_height> - <shelf_depth>15,6000003815</shelf_depth> + <grossWeight>21,8999996185</grossWeight> + <netWeight>18,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>22,2999992371</shelfWidth> + <shelfHeight>9,7299995422</shelfHeight> + <shelfDepth>15,6000003815</shelfDepth> </Product> <Product> - <brand_name>Lake</brand_name> - <product_name>Lake Chicken Hot Dogs</product_name> + <brandName>Lake</brandName> + <productName>Lake Chicken Hot Dogs</productName> <sku>32175307869</sku> <srp>1,5299999714</srp> - <gross_weight>12,3000001907</gross_weight> - <net_weight>11,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>13,6999998093</shelf_width> - <shelf_height>4,9000000954</shelf_height> - <shelf_depth>8,4200000763</shelf_depth> + <grossWeight>12,3000001907</grossWeight> + <netWeight>11,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>13,6999998093</shelfWidth> + <shelfHeight>4,9000000954</shelfHeight> + <shelfDepth>8,4200000763</shelfDepth> </Product> <Product> - <brand_name>Lake</brand_name> - <product_name>Lake Turkey Hot Dogs</product_name> + <brandName>Lake</brandName> + <productName>Lake Turkey Hot Dogs</productName> <sku>81435814499</sku> <srp>0,7099999785</srp> - <gross_weight>17</gross_weight> - <net_weight>15</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>14,8999996185</shelf_width> - <shelf_height>3,0499999523</shelf_height> - <shelf_depth>14,3000001907</shelf_depth> + <grossWeight>17</grossWeight> + <netWeight>15</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>14,8999996185</shelfWidth> + <shelfHeight>3,0499999523</shelfHeight> + <shelfDepth>14,3000001907</shelfDepth> </Product> <Product> - <brand_name>Lake</brand_name> - <product_name>Lake Foot-Long Hot Dogs</product_name> + <brandName>Lake</brandName> + <productName>Lake Foot-Long Hot Dogs</productName> <sku>12584850192</sku> <srp>2,2599999905</srp> - <gross_weight>9,5399999619</gross_weight> - <net_weight>8,529999733</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>19,7000007629</shelf_width> - <shelf_height>22,7999992371</shelf_height> - <shelf_depth>6,0999999046</shelf_depth> + <grossWeight>9,5399999619</grossWeight> + <netWeight>8,529999733</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>19,7000007629</shelfWidth> + <shelfHeight>22,7999992371</shelfHeight> + <shelfDepth>6,0999999046</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Crackers</product_subcategory> <product_category>Snack Foods</product_category> <product_department>Snack Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Cheese Crackers</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Cheese Crackers</productName> <sku>58634377121</sku> <srp>0,8199999928</srp> - <gross_weight>8,7100000381</gross_weight> - <net_weight>6,7100000381</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>22,6000003815</shelf_width> - <shelf_height>7,6300001144</shelf_height> - <shelf_depth>7,5799999237</shelf_depth> + <grossWeight>8,7100000381</grossWeight> + <netWeight>6,7100000381</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>22,6000003815</shelfWidth> + <shelfHeight>7,6300001144</shelfHeight> + <shelfDepth>7,5799999237</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Sesame Crackers</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Sesame Crackers</productName> <sku>50068098902</sku> <srp>2,9100000858</srp> - <gross_weight>21,5</gross_weight> - <net_weight>20,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>20,2000007629</shelf_width> - <shelf_height>6,3200001717</shelf_height> - <shelf_depth>5,8299999237</shelf_depth> + <grossWeight>21,5</grossWeight> + <netWeight>20,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>20,2000007629</shelfWidth> + <shelfHeight>6,3200001717</shelfHeight> + <shelfDepth>5,8299999237</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Cheese Crackers</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Cheese Crackers</productName> <sku>15580394864</sku> <srp>1,3300000429</srp> - <gross_weight>7,1700000763</gross_weight> - <net_weight>6,1700000763</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>15,8999996185</shelf_width> - <shelf_height>20,1000003815</shelf_height> - <shelf_depth>10,3999996185</shelf_depth> + <grossWeight>7,1700000763</grossWeight> + <netWeight>6,1700000763</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>15,8999996185</shelfWidth> + <shelfHeight>20,1000003815</shelfHeight> + <shelfDepth>10,3999996185</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Sesame Crackers</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Sesame Crackers</productName> <sku>35442442297</sku> <srp>2,9800000191</srp> - <gross_weight>10,8000001907</gross_weight> - <net_weight>7,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>7,5</shelf_width> - <shelf_height>4,8400001526</shelf_height> - <shelf_depth>16,5</shelf_depth> + <grossWeight>10,8000001907</grossWeight> + <netWeight>7,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>7,5</shelfWidth> + <shelfHeight>4,8400001526</shelfHeight> + <shelfDepth>16,5</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Cheese Crackers</product_name> + <brandName>Fast</brandName> + <productName>Fast Cheese Crackers</productName> <sku>87379407286</sku> <srp>3,7400000095</srp> - <gross_weight>8,4200000763</gross_weight> - <net_weight>6,4200000763</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>4</shelf_width> - <shelf_height>13,1999998093</shelf_height> - <shelf_depth>17,7999992371</shelf_depth> + <grossWeight>8,4200000763</grossWeight> + <netWeight>6,4200000763</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>4</shelfWidth> + <shelfHeight>13,1999998093</shelfHeight> + <shelfDepth>17,7999992371</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Sesame Crackers</product_name> + <brandName>Fast</brandName> + <productName>Fast Sesame Crackers</productName> <sku>70292115807</sku> <srp>0,5500000119</srp> - <gross_weight>18,6000003815</gross_weight> - <net_weight>16,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>10,8999996185</shelf_width> - <shelf_height>9,8299999237</shelf_height> - <shelf_depth>18,7999992371</shelf_depth> + <grossWeight>18,6000003815</grossWeight> + <netWeight>16,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>10,8999996185</shelfWidth> + <shelfHeight>9,8299999237</shelfHeight> + <shelfDepth>18,7999992371</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Cheese Crackers</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Cheese Crackers</productName> <sku>15129397511</sku> <srp>2,2100000381</srp> - <gross_weight>18,5</gross_weight> - <net_weight>17,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>4,5500001907</shelf_width> - <shelf_height>22,2000007629</shelf_height> - <shelf_depth>9,8599996567</shelf_depth> + <grossWeight>18,5</grossWeight> + <netWeight>17,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>4,5500001907</shelfWidth> + <shelfHeight>22,2000007629</shelfHeight> + <shelfDepth>9,8599996567</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Sesame Crackers</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Sesame Crackers</productName> <sku>96515912413</sku> <srp>2,6300001144</srp> - <gross_weight>12,6000003815</gross_weight> - <net_weight>9,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>8,2899999619</shelf_width> - <shelf_height>14</shelf_height> - <shelf_depth>3,9600000381</shelf_depth> + <grossWeight>12,6000003815</grossWeight> + <netWeight>9,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>8,2899999619</shelfWidth> + <shelfHeight>14</shelfHeight> + <shelfDepth>3,9600000381</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Cheese Crackers</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Cheese Crackers</productName> <sku>24762164950</sku> <srp>2,7000000477</srp> - <gross_weight>16,2999992371</gross_weight> - <net_weight>14,1999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>17,2000007629</shelf_width> - <shelf_height>9,9200000763</shelf_height> - <shelf_depth>15,6000003815</shelf_depth> + <grossWeight>16,2999992371</grossWeight> + <netWeight>14,1999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>17,2000007629</shelfWidth> + <shelfHeight>9,9200000763</shelfHeight> + <shelfDepth>15,6000003815</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Sesame Crackers</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Sesame Crackers</productName> <sku>24716899991</sku> <srp>1,3999999762</srp> - <gross_weight>9,1400003433</gross_weight> - <net_weight>6,1399998665</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>18,7000007629</shelf_width> - <shelf_height>9,7899999619</shelf_height> - <shelf_depth>17,1000003815</shelf_depth> + <grossWeight>9,1400003433</grossWeight> + <netWeight>6,1399998665</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>18,7000007629</shelfWidth> + <shelfHeight>9,7899999619</shelfHeight> + <shelfDepth>17,1000003815</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Dips</product_subcategory> <product_category>Snack Foods</product_category> <product_department>Snack Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Salsa Dip</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Salsa Dip</productName> <sku>17894883751</sku> <srp>2,6300001144</srp> - <gross_weight>16,1000003815</gross_weight> - <net_weight>15,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>17,3999996185</shelf_width> - <shelf_height>3,75</shelf_height> - <shelf_depth>22,6000003815</shelf_depth> + <grossWeight>16,1000003815</grossWeight> + <netWeight>15,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>17,3999996185</shelfWidth> + <shelfHeight>3,75</shelfHeight> + <shelfDepth>22,6000003815</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Avocado Dip</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Avocado Dip</productName> <sku>98498150706</sku> <srp>2,4600000381</srp> - <gross_weight>18,6000003815</gross_weight> - <net_weight>16,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>12,3999996185</shelf_width> - <shelf_height>21,8999996185</shelf_height> - <shelf_depth>11,1999998093</shelf_depth> + <grossWeight>18,6000003815</grossWeight> + <netWeight>16,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>12,3999996185</shelfWidth> + <shelfHeight>21,8999996185</shelfHeight> + <shelfDepth>11,1999998093</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Cheese Dip</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Cheese Dip</productName> <sku>90079469084</sku> <srp>3,5499999523</srp> - <gross_weight>11,5</gross_weight> - <net_weight>8,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>7,9099998474</shelf_width> - <shelf_height>22</shelf_height> - <shelf_depth>14,6999998093</shelf_depth> + <grossWeight>11,5</grossWeight> + <netWeight>8,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>7,9099998474</shelfWidth> + <shelfHeight>22</shelfHeight> + <shelfDepth>14,6999998093</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Fondue Mix</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Fondue Mix</productName> <sku>98134089112</sku> <srp>1,8099999428</srp> - <gross_weight>10,8000001907</gross_weight> - <net_weight>8,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>17</shelf_width> - <shelf_height>11,1000003815</shelf_height> - <shelf_depth>6,8800001144</shelf_depth> + <grossWeight>10,8000001907</grossWeight> + <netWeight>8,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>17</shelfWidth> + <shelfHeight>11,1000003815</shelfHeight> + <shelfDepth>6,8800001144</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Salsa Dip</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Salsa Dip</productName> <sku>38604863286</sku> <srp>1,6000000238</srp> - <gross_weight>10,8999996185</gross_weight> - <net_weight>7,8899998665</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>17,7000007629</shelf_width> - <shelf_height>14,5</shelf_height> - <shelf_depth>12,1999998093</shelf_depth> + <grossWeight>10,8999996185</grossWeight> + <netWeight>7,8899998665</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>17,7000007629</shelfWidth> + <shelfHeight>14,5</shelfHeight> + <shelfDepth>12,1999998093</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Avocado Dip</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Avocado Dip</productName> <sku>28991665244</sku> <srp>2,4100000858</srp> - <gross_weight>10,1999998093</gross_weight> - <net_weight>8,1899995804</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>16,8999996185</shelf_width> - <shelf_height>18</shelf_height> - <shelf_depth>21,7000007629</shelf_depth> + <grossWeight>10,1999998093</grossWeight> + <netWeight>8,1899995804</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>16,8999996185</shelfWidth> + <shelfHeight>18</shelfHeight> + <shelfDepth>21,7000007629</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Cheese Dip</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Cheese Dip</productName> <sku>58195320963</sku> <srp>2,2200000286</srp> - <gross_weight>11,6999998093</gross_weight> - <net_weight>8,6899995804</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>15,8000001907</shelf_width> - <shelf_height>17,6000003815</shelf_height> - <shelf_depth>17,6000003815</shelf_depth> + <grossWeight>11,6999998093</grossWeight> + <netWeight>8,6899995804</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>15,8000001907</shelfWidth> + <shelfHeight>17,6000003815</shelfHeight> + <shelfDepth>17,6000003815</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Fondue Mix</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Fondue Mix</productName> <sku>30914304852</sku> <srp>2,2200000286</srp> - <gross_weight>6,9800000191</gross_weight> - <net_weight>5,9800000191</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>4,2199997902</shelf_width> - <shelf_height>20,7999992371</shelf_height> - <shelf_depth>20,8999996185</shelf_depth> + <grossWeight>6,9800000191</grossWeight> + <netWeight>5,9800000191</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>4,2199997902</shelfWidth> + <shelfHeight>20,7999992371</shelfHeight> + <shelfDepth>20,8999996185</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Salsa Dip</product_name> + <brandName>Fast</brandName> + <productName>Fast Salsa Dip</productName> <sku>18164381384</sku> <srp>1,6399999857</srp> - <gross_weight>8,0500001907</gross_weight> - <net_weight>6,0500001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>10</shelf_width> - <shelf_height>22</shelf_height> - <shelf_depth>15,3999996185</shelf_depth> + <grossWeight>8,0500001907</grossWeight> + <netWeight>6,0500001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>10</shelfWidth> + <shelfHeight>22</shelfHeight> + <shelfDepth>15,3999996185</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Avocado Dip</product_name> + <brandName>Fast</brandName> + <productName>Fast Avocado Dip</productName> <sku>85673232674</sku> <srp>2,9500000477</srp> - <gross_weight>16,1000003815</gross_weight> - <net_weight>14,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>20,7000007629</shelf_width> - <shelf_height>21,7000007629</shelf_height> - <shelf_depth>9,8299999237</shelf_depth> + <grossWeight>16,1000003815</grossWeight> + <netWeight>14,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>20,7000007629</shelfWidth> + <shelfHeight>21,7000007629</shelfHeight> + <shelfDepth>9,8299999237</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Cheese Dip</product_name> + <brandName>Fast</brandName> + <productName>Fast Cheese Dip</productName> <sku>84114654660</sku> <srp>2,7799999714</srp> - <gross_weight>14,6999998093</gross_weight> - <net_weight>12,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>20,6000003815</shelf_width> - <shelf_height>4,5199999809</shelf_height> - <shelf_depth>6,4000000954</shelf_depth> + <grossWeight>14,6999998093</grossWeight> + <netWeight>12,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>20,6000003815</shelfWidth> + <shelfHeight>4,5199999809</shelfHeight> + <shelfDepth>6,4000000954</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Fondue Mix</product_name> + <brandName>Fast</brandName> + <productName>Fast Fondue Mix</productName> <sku>69928054213</sku> <srp>2,3099999428</srp> - <gross_weight>9,0200004578</gross_weight> - <net_weight>7,0199999809</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>14,5</shelf_width> - <shelf_height>19,8999996185</shelf_height> - <shelf_depth>12,5</shelf_depth> + <grossWeight>9,0200004578</grossWeight> + <netWeight>7,0199999809</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>14,5</shelfWidth> + <shelfHeight>19,8999996185</shelfHeight> + <shelfDepth>12,5</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Salsa Dip</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Salsa Dip</productName> <sku>38417537808</sku> <srp>2,6500000954</srp> - <gross_weight>21,7999992371</gross_weight> - <net_weight>20,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>18,7999992371</shelf_width> - <shelf_height>21,3999996185</shelf_height> - <shelf_depth>11,1999998093</shelf_depth> + <grossWeight>21,7999992371</grossWeight> + <netWeight>20,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>18,7999992371</shelfWidth> + <shelfHeight>21,3999996185</shelfHeight> + <shelfDepth>11,1999998093</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Avocado Dip</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Avocado Dip</productName> <sku>90328807234</sku> <srp>3,1800000668</srp> - <gross_weight>12</gross_weight> - <net_weight>9</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>12,1999998093</shelf_width> - <shelf_height>19,8999996185</shelf_height> - <shelf_depth>3,6900000572</shelf_depth> + <grossWeight>12</grossWeight> + <netWeight>9</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>12,1999998093</shelfWidth> + <shelfHeight>19,8999996185</shelfHeight> + <shelfDepth>3,6900000572</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Cheese Dip</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Cheese Dip</productName> <sku>86483528017</sku> <srp>2,3099999428</srp> - <gross_weight>7,0399999619</gross_weight> - <net_weight>5,0300002098</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>17,5</shelf_width> - <shelf_height>20,8999996185</shelf_height> - <shelf_depth>11,8999996185</shelf_depth> + <grossWeight>7,0399999619</grossWeight> + <netWeight>5,0300002098</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>17,5</shelfWidth> + <shelfHeight>20,8999996185</shelfHeight> + <shelfDepth>11,8999996185</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Fondue Mix</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Fondue Mix</productName> <sku>30726979374</sku> <srp>2,2699999809</srp> - <gross_weight>19,6000003815</gross_weight> - <net_weight>17,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>12,8000001907</shelf_width> - <shelf_height>3,1900000572</shelf_height> - <shelf_depth>19,7999992371</shelf_depth> + <grossWeight>19,6000003815</grossWeight> + <netWeight>17,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>12,8000001907</shelfWidth> + <shelfHeight>3,1900000572</shelfHeight> + <shelfDepth>19,7999992371</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Salsa Dip</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Salsa Dip</productName> <sku>12498204112</sku> <srp>1,9299999475</srp> - <gross_weight>10,5</gross_weight> - <net_weight>9,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>7,5799999237</shelf_width> - <shelf_height>12,8999996185</shelf_height> - <shelf_depth>9,9200000763</shelf_depth> + <grossWeight>10,5</grossWeight> + <netWeight>9,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>7,5799999237</shelfWidth> + <shelfHeight>12,8999996185</shelfHeight> + <shelfDepth>9,9200000763</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Avocado Dip</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Avocado Dip</productName> <sku>51315057873</sku> <srp>0,6000000238</srp> - <gross_weight>19,8999996185</gross_weight> - <net_weight>17,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>5,6399998665</shelf_width> - <shelf_height>18,2000007629</shelf_height> - <shelf_depth>13,8000001907</shelf_depth> + <grossWeight>19,8999996185</grossWeight> + <netWeight>17,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>5,6399998665</shelfWidth> + <shelfHeight>18,2000007629</shelfHeight> + <shelfDepth>13,8000001907</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Cheese Dip</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Cheese Dip</productName> <sku>78232012391</sku> <srp>0,6600000262</srp> - <gross_weight>11,1999998093</gross_weight> - <net_weight>9,1899995804</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>18,1000003815</shelf_width> - <shelf_height>6</shelf_height> - <shelf_depth>7,8299999237</shelf_depth> + <grossWeight>11,1999998093</grossWeight> + <netWeight>9,1899995804</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>18,1000003815</shelfWidth> + <shelfHeight>6</shelfHeight> + <shelfDepth>7,8299999237</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Fondue Mix</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Fondue Mix</productName> <sku>55115072131</sku> <srp>1,5</srp> - <gross_weight>8,7600002289</gross_weight> - <net_weight>6,7600002289</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>6,7699999809</shelf_width> - <shelf_height>22,7000007629</shelf_height> - <shelf_depth>22,8999996185</shelf_depth> + <grossWeight>8,7600002289</grossWeight> + <netWeight>6,7600002289</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>6,7699999809</shelfWidth> + <shelfHeight>22,7000007629</shelfHeight> + <shelfDepth>22,8999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Donuts</product_subcategory> <product_category>Snack Foods</product_category> <product_department>Snack Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Frosted Donuts</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Frosted Donuts</productName> <sku>20771971344</sku> <srp>2,7100000381</srp> - <gross_weight>20,7000007629</gross_weight> - <net_weight>17,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>6,6500000954</shelf_width> - <shelf_height>13,6999998093</shelf_height> - <shelf_depth>4,1799998283</shelf_depth> + <grossWeight>20,7000007629</grossWeight> + <netWeight>17,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>6,6500000954</shelfWidth> + <shelfHeight>13,6999998093</shelfHeight> + <shelfDepth>4,1799998283</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Mini Donuts</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Mini Donuts</productName> <sku>86234189867</sku> <srp>2,6800000668</srp> - <gross_weight>21,6000003815</gross_weight> - <net_weight>19,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>12</shelf_width> - <shelf_height>9,9300003052</shelf_height> - <shelf_depth>12,8000001907</shelf_depth> + <grossWeight>21,6000003815</grossWeight> + <netWeight>19,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>12</shelfWidth> + <shelfHeight>9,9300003052</shelfHeight> + <shelfDepth>12,8000001907</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Chocolate Donuts</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Chocolate Donuts</productName> <sku>86962313055</sku> <srp>2,2100000381</srp> - <gross_weight>16,5</gross_weight> - <net_weight>14,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>22,7000007629</shelf_width> - <shelf_height>17,8999996185</shelf_height> - <shelf_depth>10,6999998093</shelf_depth> + <grossWeight>16,5</grossWeight> + <netWeight>14,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>22,7000007629</shelfWidth> + <shelfHeight>17,8999996185</shelfHeight> + <shelfDepth>10,6999998093</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Mini Donuts</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Mini Donuts</productName> <sku>49776639342</sku> <srp>1,3099999428</srp> - <gross_weight>16,2999992371</gross_weight> - <net_weight>14,1999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>5,3000001907</shelf_width> - <shelf_height>13</shelf_height> - <shelf_depth>22,2999992371</shelf_depth> + <grossWeight>16,2999992371</grossWeight> + <netWeight>14,1999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>5,3000001907</shelfWidth> + <shelfHeight>13</shelfHeight> + <shelfDepth>22,2999992371</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Chocolate Donuts</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Chocolate Donuts</productName> <sku>45931360125</sku> <srp>2,4500000477</srp> - <gross_weight>8,9499998093</gross_weight> - <net_weight>6,9400000572</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>4,7800002098</shelf_width> - <shelf_height>8,6000003815</shelf_height> - <shelf_depth>15,8000001907</shelf_depth> + <grossWeight>8,9499998093</grossWeight> + <netWeight>6,9400000572</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>4,7800002098</shelfWidth> + <shelfHeight>8,6000003815</shelfHeight> + <shelfDepth>15,8000001907</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Frosted Donuts</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Frosted Donuts</productName> <sku>42347810864</sku> <srp>1,5900000334</srp> - <gross_weight>11,3999996185</gross_weight> - <net_weight>10,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>20,8999996185</shelf_width> - <shelf_height>20,1000003815</shelf_height> - <shelf_depth>14,3999996185</shelf_depth> + <grossWeight>11,3999996185</grossWeight> + <netWeight>10,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>20,8999996185</shelfWidth> + <shelfHeight>20,1000003815</shelfHeight> + <shelfDepth>14,3999996185</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Mini Donuts</product_name> + <brandName>Fast</brandName> + <productName>Fast Mini Donuts</productName> <sku>44933739304</sku> <srp>2,9000000954</srp> - <gross_weight>8,3900003433</gross_weight> - <net_weight>5,3899998665</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>22,5</shelf_width> - <shelf_height>15,6999998093</shelf_height> - <shelf_depth>14,6000003815</shelf_depth> + <grossWeight>8,3900003433</grossWeight> + <netWeight>5,3899998665</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>22,5</shelfWidth> + <shelfHeight>15,6999998093</shelfHeight> + <shelfDepth>14,6000003815</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Chocolate Donuts</product_name> + <brandName>Fast</brandName> + <productName>Fast Chocolate Donuts</productName> <sku>76424096226</sku> <srp>2,4000000954</srp> - <gross_weight>10,6999998093</gross_weight> - <net_weight>8,6899995804</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>7,0900001526</shelf_width> - <shelf_height>10,8000001907</shelf_height> - <shelf_depth>15,1000003815</shelf_depth> + <grossWeight>10,6999998093</grossWeight> + <netWeight>8,6899995804</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>7,0900001526</shelfWidth> + <shelfHeight>10,8000001907</shelfHeight> + <shelfDepth>15,1000003815</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Frosted Donuts</product_name> + <brandName>Fast</brandName> + <productName>Fast Frosted Donuts</productName> <sku>58927478194</sku> <srp>1,6799999475</srp> - <gross_weight>19,8999996185</gross_weight> - <net_weight>18,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>6,7600002289</shelf_width> - <shelf_height>7,1100001335</shelf_height> - <shelf_depth>19,5</shelf_depth> + <grossWeight>19,8999996185</grossWeight> + <netWeight>18,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>6,7600002289</shelfWidth> + <shelfHeight>7,1100001335</shelfHeight> + <shelfDepth>19,5</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Mini Donuts</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Mini Donuts</productName> <sku>21113781332</sku> <srp>1,7300000191</srp> - <gross_weight>7,5700001717</gross_weight> - <net_weight>6,5700001717</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>13,3999996185</shelf_width> - <shelf_height>18,1000003815</shelf_height> - <shelf_depth>8,0399999619</shelf_depth> + <grossWeight>7,5700001717</grossWeight> + <netWeight>6,5700001717</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>13,3999996185</shelfWidth> + <shelfHeight>18,1000003815</shelfHeight> + <shelfDepth>8,0399999619</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Chocolate Donuts</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Chocolate Donuts</productName> <sku>50317437052</sku> <srp>1,5399999619</srp> - <gross_weight>8,4399995804</gross_weight> - <net_weight>5,4299998283</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>13,8999996185</shelf_width> - <shelf_height>7,6900000572</shelf_height> - <shelf_depth>9</shelf_depth> + <grossWeight>8,4399995804</grossWeight> + <netWeight>5,4299998283</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>13,8999996185</shelfWidth> + <shelfHeight>7,6900000572</shelfHeight> + <shelfDepth>9</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Frosted Donuts</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Frosted Donuts</productName> <sku>19462731480</sku> <srp>1,2999999523</srp> - <gross_weight>11,8000001907</gross_weight> - <net_weight>8,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>5,8200001717</shelf_width> - <shelf_height>4,9499998093</shelf_height> - <shelf_depth>12,1999998093</shelf_depth> + <grossWeight>11,8000001907</grossWeight> + <netWeight>8,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>5,8200001717</shelfWidth> + <shelfHeight>4,9499998093</shelfHeight> + <shelfDepth>12,1999998093</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Mini Donuts</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Mini Donuts</productName> <sku>32407458424</sku> <srp>1,7799999714</srp> - <gross_weight>19</gross_weight> - <net_weight>18</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>10,6999998093</shelf_width> - <shelf_height>12,6000003815</shelf_height> - <shelf_depth>6,6399998665</shelf_depth> + <grossWeight>19</grossWeight> + <netWeight>18</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>10,6999998093</shelfWidth> + <shelfHeight>12,6000003815</shelfHeight> + <shelfDepth>6,6399998665</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Chocolate Donuts</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Chocolate Donuts</productName> <sku>26275478005</sku> <srp>2,3399999142</srp> - <gross_weight>12,1999998093</gross_weight> - <net_weight>9,1899995804</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>21,3999996185</shelf_width> - <shelf_height>10,5</shelf_height> - <shelf_depth>14,8999996185</shelf_depth> + <grossWeight>12,1999998093</grossWeight> + <netWeight>9,1899995804</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>21,3999996185</shelfWidth> + <shelfHeight>10,5</shelfHeight> + <shelfDepth>14,8999996185</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Frosted Donuts</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Frosted Donuts</productName> <sku>55067865252</sku> <srp>2,5199999809</srp> - <gross_weight>10</gross_weight> - <net_weight>8</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>10,3999996185</shelf_width> - <shelf_height>21,3999996185</shelf_height> - <shelf_depth>17,8999996185</shelf_depth> + <grossWeight>10</grossWeight> + <netWeight>8</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>10,3999996185</shelfWidth> + <shelfHeight>21,3999996185</shelfHeight> + <shelfDepth>17,8999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Toilet Brushes</product_subcategory> <product_category>Bathroom Products</product_category> <product_department>Household</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Economy Toilet Brush</product_name> + <brandName>Denny</brandName> + <productName>Denny Economy Toilet Brush</productName> <sku>31469436287</sku> <srp>2,1300001144</srp> - <gross_weight>9,1800003052</gross_weight> - <net_weight>7,1799998283</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>6,9099998474</shelf_width> - <shelf_height>4,9200000763</shelf_height> - <shelf_depth>13,8000001907</shelf_depth> + <grossWeight>9,1800003052</grossWeight> + <netWeight>7,1799998283</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>6,9099998474</shelfWidth> + <shelfHeight>4,9200000763</shelfHeight> + <shelfDepth>13,8000001907</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Economy Toilet Brush</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Economy Toilet Brush</productName> <sku>99983676075</sku> <srp>2,3399999142</srp> - <gross_weight>9,0200004578</gross_weight> - <net_weight>7,0199999809</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>36</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>6,8600001335</shelf_width> - <shelf_height>7,5</shelf_height> - <shelf_depth>6,25</shelf_depth> + <grossWeight>9,0200004578</grossWeight> + <netWeight>7,0199999809</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>36</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>6,8600001335</shelfWidth> + <shelfHeight>7,5</shelfHeight> + <shelfDepth>6,25</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Economy Toilet Brush</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Economy Toilet Brush</productName> <sku>22592129111</sku> <srp>0,8299999833</srp> - <gross_weight>9,9300003052</gross_weight> - <net_weight>7,9299998283</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>4,5500001907</shelf_width> - <shelf_height>7,5</shelf_height> - <shelf_depth>10,8000001907</shelf_depth> + <grossWeight>9,9300003052</grossWeight> + <netWeight>7,9299998283</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>4,5500001907</shelfWidth> + <shelfHeight>7,5</shelfHeight> + <shelfDepth>10,8000001907</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Economy Toilet Brush</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Economy Toilet Brush</productName> <sku>60735834240</sku> <srp>1,3899999857</srp> - <gross_weight>21,7000007629</gross_weight> - <net_weight>18,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>22,2999992371</shelf_width> - <shelf_height>8,6199998856</shelf_height> - <shelf_depth>10,1999998093</shelf_depth> + <grossWeight>21,7000007629</grossWeight> + <netWeight>18,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>22,2999992371</shelfWidth> + <shelfHeight>8,6199998856</shelfHeight> + <shelfDepth>10,1999998093</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Economy Toilet Brush</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Economy Toilet Brush</productName> <sku>15871264338</sku> <srp>0,5299999714</srp> - <gross_weight>7,1799998283</gross_weight> - <net_weight>6,1700000763</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>5,0999999046</shelf_width> - <shelf_height>11</shelf_height> - <shelf_depth>12,3999996185</shelf_depth> + <grossWeight>7,1799998283</grossWeight> + <netWeight>6,1700000763</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>5,0999999046</shelfWidth> + <shelfHeight>11</shelfHeight> + <shelfDepth>12,3999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Pot Scrubbers</product_subcategory> <product_category>Kitchen Products</product_category> <product_department>Household</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Copper Pot Scrubber</product_name> + <brandName>Denny</brandName> + <productName>Denny Copper Pot Scrubber</productName> <sku>84939283728</sku> <srp>1,7100000381</srp> - <gross_weight>10,1000003815</gross_weight> - <net_weight>8,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>10,3999996185</shelf_width> - <shelf_height>13,8000001907</shelf_height> - <shelf_depth>18,5</shelf_depth> + <grossWeight>10,1000003815</grossWeight> + <netWeight>8,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>10,3999996185</shelfWidth> + <shelfHeight>13,8000001907</shelfHeight> + <shelfDepth>18,5</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Copper Pot Scrubber</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Copper Pot Scrubber</productName> <sku>43908330798</sku> <srp>3,9500000477</srp> - <gross_weight>7,2399997711</gross_weight> - <net_weight>5,2300000191</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>16,7000007629</shelf_width> - <shelf_height>18,3999996185</shelf_height> - <shelf_depth>21,7999992371</shelf_depth> + <grossWeight>7,2399997711</grossWeight> + <netWeight>5,2300000191</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>16,7000007629</shelfWidth> + <shelfHeight>18,3999996185</shelfHeight> + <shelfDepth>21,7999992371</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Copper Pot Scrubber</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Copper Pot Scrubber</productName> <sku>32205327153</sku> <srp>2,9000000954</srp> - <gross_weight>7,5700001717</gross_weight> - <net_weight>5,5700001717</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>14,5</shelf_width> - <shelf_height>17,2999992371</shelf_height> - <shelf_depth>11,5</shelf_depth> + <grossWeight>7,5700001717</grossWeight> + <netWeight>5,5700001717</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>14,5</shelfWidth> + <shelfHeight>17,2999992371</shelfHeight> + <shelfDepth>11,5</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Copper Pot Scrubber</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Copper Pot Scrubber</productName> <sku>21918980479</sku> <srp>2,1500000954</srp> - <gross_weight>9,0100002289</gross_weight> - <net_weight>8,0100002289</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>17,3999996185</shelf_width> - <shelf_height>7,7300000191</shelf_height> - <shelf_depth>9,25</shelf_depth> + <grossWeight>9,0100002289</grossWeight> + <netWeight>8,0100002289</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>17,3999996185</shelfWidth> + <shelfHeight>7,7300000191</shelfHeight> + <shelfDepth>9,25</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Copper Pot Scrubber</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Copper Pot Scrubber</productName> <sku>89295631051</sku> <srp>2,6500000954</srp> - <gross_weight>9,9200000763</gross_weight> - <net_weight>7,9200000763</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>18,8999996185</shelf_width> - <shelf_height>17,7999992371</shelf_height> - <shelf_depth>16,5</shelf_depth> + <grossWeight>9,9200000763</grossWeight> + <netWeight>7,9200000763</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>18,8999996185</shelfWidth> + <shelfHeight>17,7999992371</shelfHeight> + <shelfDepth>16,5</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Pot Cleaners</product_subcategory> <product_category>Kitchen Products</product_category> <product_department>Household</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Copper Cleaner</product_name> + <brandName>Denny</brandName> + <productName>Denny Copper Cleaner</productName> <sku>96111059784</sku> <srp>0,5500000119</srp> - <gross_weight>21,5</gross_weight> - <net_weight>19,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>17,5</shelf_width> - <shelf_height>21,2000007629</shelf_height> - <shelf_depth>20</shelf_depth> + <grossWeight>21,5</grossWeight> + <netWeight>19,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>17,5</shelfWidth> + <shelfHeight>21,2000007629</shelfHeight> + <shelfDepth>20</shelfDepth> </Product> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny Silver Cleaner</product_name> + <brandName>Denny</brandName> + <productName>Denny Silver Cleaner</productName> <sku>37601416707</sku> <srp>1,5800000429</srp> - <gross_weight>21,1000003815</gross_weight> - <net_weight>18,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>13,6000003815</shelf_width> - <shelf_height>4,5599999428</shelf_height> - <shelf_depth>15,1999998093</shelf_depth> + <grossWeight>21,1000003815</grossWeight> + <netWeight>18,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>13,6000003815</shelfWidth> + <shelfHeight>4,5599999428</shelfHeight> + <shelfDepth>15,1999998093</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Copper Cleaner</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Copper Cleaner</productName> <sku>52793405652</sku> <srp>2,7200000286</srp> - <gross_weight>21,2999992371</gross_weight> - <net_weight>19,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>17,5</shelf_width> - <shelf_height>3,8399999142</shelf_height> - <shelf_depth>12,5</shelf_depth> + <grossWeight>21,2999992371</grossWeight> + <netWeight>19,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>17,5</shelfWidth> + <shelfHeight>3,8399999142</shelfHeight> + <shelfDepth>12,5</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant Silver Cleaner</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant Silver Cleaner</productName> <sku>79710360169</sku> <srp>2,8399999142</srp> - <gross_weight>19,5</gross_weight> - <net_weight>18,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>18,3999996185</shelf_width> - <shelf_height>18,2000007629</shelf_height> - <shelf_depth>17,8999996185</shelf_depth> + <grossWeight>19,5</grossWeight> + <netWeight>18,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>18,3999996185</shelfWidth> + <shelfHeight>18,2000007629</shelfHeight> + <shelfDepth>17,8999996185</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Copper Cleaner</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Copper Cleaner</productName> <sku>91807155013</sku> <srp>3,8099999428</srp> - <gross_weight>8,3299999237</gross_weight> - <net_weight>7,3200001717</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>22,1000003815</shelf_width> - <shelf_height>21,7999992371</shelf_height> - <shelf_depth>6,3000001907</shelf_depth> + <grossWeight>8,3299999237</grossWeight> + <netWeight>7,3200001717</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>22,1000003815</shelfWidth> + <shelfHeight>21,7999992371</shelfHeight> + <shelfDepth>6,3000001907</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing Silver Cleaner</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing Silver Cleaner</productName> <sku>87961875796</sku> <srp>1,2899999619</srp> - <gross_weight>8,029999733</gross_weight> - <net_weight>5,0199999809</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>16,7000007629</shelf_width> - <shelf_height>14</shelf_height> - <shelf_depth>21,3999996185</shelf_depth> + <grossWeight>8,029999733</grossWeight> + <netWeight>5,0199999809</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>16,7000007629</shelfWidth> + <shelfHeight>14</shelfHeight> + <shelfDepth>21,3999996185</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Copper Cleaner</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Copper Cleaner</productName> <sku>68426392674</sku> <srp>3,7699999809</srp> - <gross_weight>8,3900003433</gross_weight> - <net_weight>6,3899998665</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>18,2000007629</shelf_width> - <shelf_height>13,1999998093</shelf_height> - <shelf_depth>19,3999996185</shelf_depth> + <grossWeight>8,3900003433</grossWeight> + <netWeight>6,3899998665</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>18,2000007629</shelfWidth> + <shelfHeight>13,1999998093</shelfHeight> + <shelfDepth>19,3999996185</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality Silver Cleaner</product_name> + <brandName>High Quality</brandName> + <productName>High Quality Silver Cleaner</productName> <sku>62294412255</sku> <srp>2,5599999428</srp> - <gross_weight>13,5</gross_weight> - <net_weight>11,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>21,6000003815</shelf_width> - <shelf_height>12,3999996185</shelf_height> - <shelf_depth>12,8000001907</shelf_depth> + <grossWeight>13,5</grossWeight> + <netWeight>11,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>21,6000003815</shelfWidth> + <shelfHeight>12,3999996185</shelfHeight> + <shelfDepth>12,8000001907</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Copper Cleaner</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Copper Cleaner</productName> <sku>63254396319</sku> <srp>0,8899999857</srp> - <gross_weight>17,2000007629</gross_weight> - <net_weight>14,1999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>20</shelf_width> - <shelf_height>20,7999992371</shelf_height> - <shelf_depth>18,7999992371</shelf_depth> + <grossWeight>17,2000007629</grossWeight> + <netWeight>14,1999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>20</shelfWidth> + <shelfHeight>20,7999992371</shelfHeight> + <shelfDepth>18,7999992371</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset Silver Cleaner</product_name> + <brandName>Sunset</brandName> + <productName>Sunset Silver Cleaner</productName> <sku>52765478491</sku> <srp>0,6299999952</srp> - <gross_weight>14,5</gross_weight> - <net_weight>13,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>4,5</shelf_width> - <shelf_height>14</shelf_height> - <shelf_depth>19,7000007629</shelf_depth> + <grossWeight>14,5</grossWeight> + <netWeight>13,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>4,5</shelfWidth> + <shelfHeight>14</shelfHeight> + <shelfDepth>19,7000007629</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Toothbrushes</product_subcategory> <product_category>Bathroom Products</product_category> <product_department>Health and Hygiene</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Faux Products</brand_name> - <product_name>Faux Products Angled Toothbrush</product_name> + <brandName>Faux Products</brandName> + <productName>Faux Products Angled Toothbrush</productName> <sku>14647908806</sku> <srp>2,2599999905</srp> - <gross_weight>12,8999996185</gross_weight> - <net_weight>9,8900003433</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>9,9899997711</shelf_width> - <shelf_height>5,5999999046</shelf_height> - <shelf_depth>22</shelf_depth> + <grossWeight>12,8999996185</grossWeight> + <netWeight>9,8900003433</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>9,9899997711</shelfWidth> + <shelfHeight>5,5999999046</shelfHeight> + <shelfDepth>22</shelfDepth> </Product> <Product> - <brand_name>Bird Call</brand_name> - <product_name>Bird Call Angled Toothbrush</product_name> + <brandName>Bird Call</brandName> + <productName>Bird Call Angled Toothbrush</productName> <sku>75684021115</sku> <srp>2,7599999905</srp> - <gross_weight>14,3999996185</gross_weight> - <net_weight>11,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>7,1700000763</shelf_width> - <shelf_height>19,2999992371</shelf_height> - <shelf_depth>22,2999992371</shelf_depth> + <grossWeight>14,3999996185</grossWeight> + <netWeight>11,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>7,1700000763</shelfWidth> + <shelfHeight>19,2999992371</shelfHeight> + <shelfDepth>22,2999992371</shelfDepth> </Product> <Product> - <brand_name>Consolidated</brand_name> - <product_name>Consolidated Angled Toothbrush</product_name> + <brandName>Consolidated</brandName> + <productName>Consolidated Angled Toothbrush</productName> <sku>81694100499</sku> <srp>2,4700000286</srp> - <gross_weight>11,6999998093</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>19,2000007629</shelf_width> - <shelf_height>4,3499999046</shelf_height> - <shelf_depth>13,6999998093</shelf_depth> + <grossWeight>11,6999998093</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>19,2000007629</shelfWidth> + <shelfHeight>4,3499999046</shelfHeight> + <shelfDepth>13,6999998093</shelfDepth> </Product> <Product> - <brand_name>Steady</brand_name> - <product_name>Steady Angled Toothbrush</product_name> + <brandName>Steady</brandName> + <productName>Steady Angled Toothbrush</productName> <sku>92232317328</sku> <srp>0,9599999785</srp> - <gross_weight>19,8999996185</gross_weight> - <net_weight>18,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>18,3999996185</shelf_width> - <shelf_height>3,9000000954</shelf_height> - <shelf_depth>7,5</shelf_depth> + <grossWeight>19,8999996185</grossWeight> + <netWeight>18,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>18,3999996185</shelfWidth> + <shelfHeight>3,9000000954</shelfHeight> + <shelfDepth>7,5</shelfDepth> </Product> <Product> - <brand_name>Hilltop</brand_name> - <product_name>Hilltop Angled Toothbrush</product_name> + <brandName>Hilltop</brandName> + <productName>Hilltop Angled Toothbrush</productName> <sku>99251229166</sku> <srp>3,3800001144</srp> - <gross_weight>13,6999998093</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>20,2999992371</shelf_width> - <shelf_height>18,5</shelf_height> - <shelf_depth>9,7700004578</shelf_depth> + <grossWeight>13,6999998093</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>20,2999992371</shelfWidth> + <shelfHeight>18,5</shelfHeight> + <shelfDepth>9,7700004578</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Sunglasses</product_subcategory> <product_category>Specialty</product_category> <product_department>Carousel</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>ADJ</brand_name> - <product_name>ADJ Rosy Sunglasses</product_name> + <brandName>ADJ</brandName> + <productName>ADJ Rosy Sunglasses</productName> <sku>66307157874</sku> <srp>2,7599999905</srp> - <gross_weight>19,6000003815</gross_weight> - <net_weight>18,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>13,6000003815</shelf_width> - <shelf_height>17,5</shelf_height> - <shelf_depth>9,8400001526</shelf_depth> + <grossWeight>19,6000003815</grossWeight> + <netWeight>18,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>13,6000003815</shelfWidth> + <shelfHeight>17,5</shelfHeight> + <shelfDepth>9,8400001526</shelfDepth> </Product> <Product> - <brand_name>King</brand_name> - <product_name>King Rosy Sunglasses</product_name> + <brandName>King</brandName> + <productName>King Rosy Sunglasses</productName> <sku>36527009606</sku> <srp>0,9900000095</srp> - <gross_weight>11,6999998093</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>15,6999998093</shelf_width> - <shelf_height>12,1000003815</shelf_height> - <shelf_depth>7,6999998093</shelf_depth> + <grossWeight>11,6999998093</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>15,6999998093</shelfWidth> + <shelfHeight>12,1000003815</shelfHeight> + <shelfDepth>7,6999998093</shelfDepth> </Product> <Product> - <brand_name>Prelude</brand_name> - <product_name>Prelude Rosy Sunglasses</product_name> + <brandName>Prelude</brandName> + <productName>Prelude Rosy Sunglasses</productName> <sku>13573201298</sku> <srp>2,2999999523</srp> - <gross_weight>21,5</gross_weight> - <net_weight>19,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>14,1999998093</shelf_width> - <shelf_height>4,2199997902</shelf_height> - <shelf_depth>5,4400000572</shelf_depth> + <grossWeight>21,5</grossWeight> + <netWeight>19,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>14,1999998093</shelfWidth> + <shelfHeight>4,2199997902</shelfHeight> + <shelfDepth>5,4400000572</shelfDepth> </Product> <Product> - <brand_name>Symphony</brand_name> - <product_name>Symphony Rosy Sunglasses</product_name> + <brandName>Symphony</brandName> + <productName>Symphony Rosy Sunglasses</productName> <sku>73660991787</sku> <srp>1,6000000238</srp> - <gross_weight>17,3999996185</gross_weight> - <net_weight>15,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>36</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>8,029999733</shelf_width> - <shelf_height>4,3099999428</shelf_height> - <shelf_depth>11,1000003815</shelf_depth> + <grossWeight>17,3999996185</grossWeight> + <netWeight>15,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>36</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>8,029999733</shelfWidth> + <shelfHeight>4,3099999428</shelfHeight> + <shelfDepth>11,1000003815</shelfDepth> </Product> <Product> - <brand_name>Toretti</brand_name> - <product_name>Toretti Rosy Sunglasses</product_name> + <brandName>Toretti</brandName> + <productName>Toretti Rosy Sunglasses</productName> <sku>55032460093</sku> <srp>1,2100000381</srp> - <gross_weight>18,8999996185</gross_weight> - <net_weight>15,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>3,1500000954</shelf_width> - <shelf_height>16,8999996185</shelf_height> - <shelf_depth>5,4000000954</shelf_depth> + <grossWeight>18,8999996185</grossWeight> + <netWeight>15,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>3,1500000954</shelfWidth> + <shelfHeight>16,8999996185</shelfHeight> + <shelfDepth>5,4000000954</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Coffee</product_subcategory> <product_category>Hot Beverages</product_category> <product_department>Beverages</product_department> - <product_family>Drink</product_family> + <productFamily>Drink</productFamily> <Product> - <brand_name>Super</brand_name> - <product_name>Super French Roast Coffee</product_name> + <brandName>Super</brandName> + <productName>Super French Roast Coffee</productName> <sku>46563277840</sku> <srp>2,8599998951</srp> - <gross_weight>18,8999996185</gross_weight> - <net_weight>16,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>4,6199998856</shelf_width> - <shelf_height>21,2000007629</shelf_height> - <shelf_depth>12,3999996185</shelf_depth> + <grossWeight>18,8999996185</grossWeight> + <netWeight>16,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>4,6199998856</shelfWidth> + <shelfHeight>21,2000007629</shelfHeight> + <shelfDepth>12,3999996185</shelfDepth> </Product> <Product> - <brand_name>Super</brand_name> - <product_name>Super Decaf Coffee</product_name> + <brandName>Super</brandName> + <productName>Super Decaf Coffee</productName> <sku>39236781001</sku> <srp>1,3700000048</srp> - <gross_weight>7,9600000381</gross_weight> - <net_weight>5,9600000381</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>9,75</shelf_width> - <shelf_height>20,5</shelf_height> - <shelf_depth>20,7999992371</shelf_depth> + <grossWeight>7,9600000381</grossWeight> + <netWeight>5,9600000381</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>9,75</shelfWidth> + <shelfHeight>20,5</shelfHeight> + <shelfDepth>20,7999992371</shelfDepth> </Product> <Product> - <brand_name>Super</brand_name> - <product_name>Super Regular Coffee</product_name> + <brandName>Super</brandName> + <productName>Super Regular Coffee</productName> <sku>45004699826</sku> <srp>1,7000000477</srp> - <gross_weight>6,0900001526</gross_weight> - <net_weight>3,0899999142</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>12,3000001907</shelf_width> - <shelf_height>14,8999996185</shelf_height> - <shelf_depth>21,2999992371</shelf_depth> + <grossWeight>6,0900001526</grossWeight> + <netWeight>3,0899999142</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>12,3000001907</shelfWidth> + <shelfHeight>14,8999996185</shelfHeight> + <shelfDepth>21,2999992371</shelfDepth> </Product> <Product> - <brand_name>Super</brand_name> - <product_name>Super Columbian Coffee</product_name> + <brandName>Super</brandName> + <productName>Super Columbian Coffee</productName> <sku>62951875329</sku> <srp>0,5</srp> - <gross_weight>11</gross_weight> - <net_weight>8</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>36</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>5,4499998093</shelf_width> - <shelf_height>19,8999996185</shelf_height> - <shelf_depth>21,7000007629</shelf_depth> + <grossWeight>11</grossWeight> + <netWeight>8</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>36</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>5,4499998093</shelfWidth> + <shelfHeight>19,8999996185</shelfHeight> + <shelfDepth>21,7000007629</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide French Roast Coffee</product_name> + <brandName>Landslide</brandName> + <productName>Landslide French Roast Coffee</productName> <sku>55979580283</sku> <srp>2,3199999332</srp> - <gross_weight>9,7899999619</gross_weight> - <net_weight>7,7800002098</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>5,5500001907</shelf_width> - <shelf_height>9,6000003815</shelf_height> - <shelf_depth>10,3999996185</shelf_depth> + <grossWeight>9,7899999619</grossWeight> + <netWeight>7,7800002098</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>5,5500001907</shelfWidth> + <shelfHeight>9,6000003815</shelfHeight> + <shelfDepth>10,3999996185</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Decaf Coffee</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Decaf Coffee</productName> <sku>59460797905</sku> <srp>2,3099999428</srp> - <gross_weight>18,8999996185</gross_weight> - <net_weight>16,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>11,1000003815</shelf_width> - <shelf_height>5,7899999619</shelf_height> - <shelf_depth>12,5</shelf_depth> + <grossWeight>18,8999996185</grossWeight> + <netWeight>16,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>11,1000003815</shelfWidth> + <shelfHeight>5,7899999619</shelfHeight> + <shelfDepth>12,5</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Regular Coffee</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Regular Coffee</productName> <sku>85183236002</sku> <srp>2,1300001144</srp> - <gross_weight>14,8999996185</gross_weight> - <net_weight>12,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>9,0200004578</shelf_width> - <shelf_height>8,8400001526</shelf_height> - <shelf_depth>3,8499999046</shelf_depth> + <grossWeight>14,8999996185</grossWeight> + <netWeight>12,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>9,0200004578</shelfWidth> + <shelfHeight>8,8400001526</shelfHeight> + <shelfDepth>3,8499999046</shelfDepth> </Product> <Product> - <brand_name>Landslide</brand_name> - <product_name>Landslide Columbian Coffee</product_name> + <brandName>Landslide</brandName> + <productName>Landslide Columbian Coffee</productName> <sku>62430357336</sku> <srp>2,7799999714</srp> - <gross_weight>13,3000001907</gross_weight> - <net_weight>10,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>13,1000003815</shelf_width> - <shelf_height>22,3999996185</shelf_height> - <shelf_depth>8,6199998856</shelf_depth> + <grossWeight>13,3000001907</grossWeight> + <netWeight>10,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>13,1000003815</shelfWidth> + <shelfHeight>22,3999996185</shelfHeight> + <shelfDepth>8,6199998856</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best French Roast Coffee</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best French Roast Coffee</productName> <sku>45396098494</sku> <srp>2,8699998856</srp> - <gross_weight>17,1000003815</gross_weight> - <net_weight>15,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>5,8699998856</shelf_width> - <shelf_height>10,3999996185</shelf_height> - <shelf_depth>12,6000003815</shelf_depth> + <grossWeight>17,1000003815</grossWeight> + <netWeight>15,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>5,8699998856</shelfWidth> + <shelfHeight>10,3999996185</shelfHeight> + <shelfDepth>12,6000003815</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Decaf Coffee</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Decaf Coffee</productName> <sku>20401783585</sku> <srp>2,5699999332</srp> - <gross_weight>15,1999998093</gross_weight> - <net_weight>13,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>16,7999992371</shelf_width> - <shelf_height>14,6999998093</shelf_height> - <shelf_depth>18,2000007629</shelf_depth> + <grossWeight>15,1999998093</grossWeight> + <netWeight>13,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>16,7999992371</shelfWidth> + <shelfHeight>14,6999998093</shelfHeight> + <shelfDepth>18,2000007629</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Regular Coffee</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Regular Coffee</productName> <sku>41550819277</sku> <srp>1,1200000048</srp> - <gross_weight>17,2000007629</gross_weight> - <net_weight>15,1999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>4,0199999809</shelf_width> - <shelf_height>21,5</shelf_height> - <shelf_depth>22,6000003815</shelf_depth> + <grossWeight>17,2000007629</grossWeight> + <netWeight>15,1999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>4,0199999809</shelfWidth> + <shelfHeight>21,5</shelfHeight> + <shelfDepth>22,6000003815</shelfDepth> </Product> <Product> - <brand_name>BBB Best</brand_name> - <product_name>BBB Best Columbian Coffee</product_name> + <brandName>BBB Best</brandName> + <productName>BBB Best Columbian Coffee</productName> <sku>63063916563</sku> <srp>1,4400000572</srp> - <gross_weight>16,2000007629</gross_weight> - <net_weight>14,1999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>8,0200004578</shelf_width> - <shelf_height>16,2000007629</shelf_height> - <shelf_depth>22,2000007629</shelf_depth> + <grossWeight>16,2000007629</grossWeight> + <netWeight>14,1999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>8,0200004578</shelfWidth> + <shelfHeight>16,2000007629</shelfHeight> + <shelfDepth>22,2000007629</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato French Roast Coffee</product_name> + <brandName>Plato</brandName> + <productName>Plato French Roast Coffee</productName> <sku>79507349133</sku> <srp>2,9600000381</srp> - <gross_weight>9,4300003052</gross_weight> - <net_weight>7,4299998283</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>3,9700000286</shelf_width> - <shelf_height>11,3000001907</shelf_height> - <shelf_depth>5,6399998665</shelf_depth> + <grossWeight>9,4300003052</grossWeight> + <netWeight>7,4299998283</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>3,9700000286</shelfWidth> + <shelfHeight>11,3000001907</shelfHeight> + <shelfDepth>5,6399998665</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Decaf Coffee</product_name> + <brandName>Plato</brandName> + <productName>Plato Decaf Coffee</productName> <sku>98369683623</sku> <srp>2,8099999428</srp> - <gross_weight>6,2300000191</gross_weight> - <net_weight>5,2300000191</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>8,0799999237</shelf_width> - <shelf_height>16,6000003815</shelf_height> - <shelf_depth>6,6399998665</shelf_depth> + <grossWeight>6,2300000191</grossWeight> + <netWeight>5,2300000191</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>8,0799999237</shelfWidth> + <shelfHeight>16,6000003815</shelfHeight> + <shelfDepth>6,6399998665</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Regular Coffee</product_name> + <brandName>Plato</brandName> + <productName>Plato Regular Coffee</productName> <sku>16424303650</sku> <srp>2,1900000572</srp> - <gross_weight>6,7800002098</gross_weight> - <net_weight>4,7800002098</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>8,4499998093</shelf_width> - <shelf_height>4,4600000381</shelf_height> - <shelf_depth>6,4899997711</shelf_depth> + <grossWeight>6,7800002098</grossWeight> + <netWeight>4,7800002098</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>8,4499998093</shelfWidth> + <shelfHeight>4,4600000381</shelfHeight> + <shelfDepth>6,4899997711</shelfDepth> </Product> <Product> - <brand_name>Plato</brand_name> - <product_name>Plato Columbian Coffee</product_name> + <brandName>Plato</brandName> + <productName>Plato Columbian Coffee</productName> <sku>51441143155</sku> <srp>0,5600000024</srp> - <gross_weight>16,7000007629</gross_weight> - <net_weight>13,6999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>16,7999992371</shelf_width> - <shelf_height>17,3999996185</shelf_height> - <shelf_depth>12,1999998093</shelf_depth> + <grossWeight>16,7000007629</grossWeight> + <netWeight>13,6999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>16,7999992371</shelfWidth> + <shelfHeight>17,3999996185</shelfHeight> + <shelfDepth>12,1999998093</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR French Roast Coffee</product_name> + <brandName>CDR</brandName> + <productName>CDR French Roast Coffee</productName> <sku>19334704279</sku> <srp>2,7300000191</srp> - <gross_weight>16,7000007629</gross_weight> - <net_weight>14,6999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>15,3999996185</shelf_width> - <shelf_height>6,2600002289</shelf_height> - <shelf_depth>18,5</shelf_depth> + <grossWeight>16,7000007629</grossWeight> + <netWeight>14,6999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>15,3999996185</shelfWidth> + <shelfHeight>6,2600002289</shelfHeight> + <shelfDepth>18,5</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Decaf Coffee</product_name> + <brandName>CDR</brandName> + <productName>CDR Decaf Coffee</productName> <sku>13621910214</sku> <srp>3,4000000954</srp> - <gross_weight>10,3999996185</gross_weight> - <net_weight>8,3900003433</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>21,6000003815</shelf_width> - <shelf_height>19,1000003815</shelf_height> - <shelf_depth>15,5</shelf_depth> + <grossWeight>10,3999996185</grossWeight> + <netWeight>8,3900003433</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>21,6000003815</shelfWidth> + <shelfHeight>19,1000003815</shelfHeight> + <shelfDepth>15,5</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Regular Coffee</product_name> + <brandName>CDR</brandName> + <productName>CDR Regular Coffee</productName> <sku>65533179640</sku> <srp>3,5799999237</srp> - <gross_weight>11,3000001907</gross_weight> - <net_weight>10,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>6,3000001907</shelf_width> - <shelf_height>21,3999996185</shelf_height> - <shelf_depth>10,1999998093</shelf_depth> + <grossWeight>11,3000001907</grossWeight> + <netWeight>10,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>6,3000001907</shelfWidth> + <shelfHeight>21,3999996185</shelfHeight> + <shelfDepth>10,1999998093</shelfDepth> </Product> <Product> - <brand_name>CDR</brand_name> - <product_name>CDR Columbian Coffee</product_name> + <brandName>CDR</brandName> + <productName>CDR Columbian Coffee</productName> <sku>25521809458</sku> <srp>2,2899999619</srp> - <gross_weight>9,5200004578</gross_weight> - <net_weight>7,5199999809</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>6,0399999619</shelf_width> - <shelf_height>11,6000003815</shelf_height> - <shelf_depth>5,1700000763</shelf_depth> + <grossWeight>9,5200004578</grossWeight> + <netWeight>7,5199999809</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>6,0399999619</shelfWidth> + <shelfHeight>11,6000003815</shelfHeight> + <shelfDepth>5,1700000763</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Bologna</product_subcategory> <product_category>Meat</product_category> <product_department>Deli</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Moms</brand_name> - <product_name>Moms Pimento Loaf</product_name> + <brandName>Moms</brandName> + <productName>Moms Pimento Loaf</productName> <sku>96876530051</sku> <srp>2,2899999619</srp> - <gross_weight>18,3999996185</gross_weight> - <net_weight>17,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>11,5</shelf_width> - <shelf_height>10,5</shelf_height> - <shelf_depth>10,5</shelf_depth> + <grossWeight>18,3999996185</grossWeight> + <netWeight>17,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>11,5</shelfWidth> + <shelfHeight>10,5</shelfHeight> + <shelfDepth>10,5</shelfDepth> </Product> <Product> - <brand_name>Moms</brand_name> - <product_name>Moms Beef Bologna</product_name> + <brandName>Moms</brandName> + <productName>Moms Beef Bologna</productName> <sku>64974904656</sku> <srp>2,2699999809</srp> - <gross_weight>12,3000001907</gross_weight> - <net_weight>11,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>11,8000001907</shelf_width> - <shelf_height>12,6000003815</shelf_height> - <shelf_depth>4,3800001144</shelf_depth> + <grossWeight>12,3000001907</grossWeight> + <netWeight>11,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>11,8000001907</shelfWidth> + <shelfHeight>12,6000003815</shelfHeight> + <shelfDepth>4,3800001144</shelfDepth> </Product> <Product> - <brand_name>Moms</brand_name> - <product_name>Moms Low Fat Bologna</product_name> + <brandName>Moms</brandName> + <productName>Moms Low Fat Bologna</productName> <sku>24599472880</sku> <srp>2,0999999046</srp> - <gross_weight>18</gross_weight> - <net_weight>17</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>3,0299999714</shelf_width> - <shelf_height>14,3000001907</shelf_height> - <shelf_depth>6,9699997902</shelf_depth> + <grossWeight>18</grossWeight> + <netWeight>17</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>3,0299999714</shelfWidth> + <shelfHeight>14,3000001907</shelfHeight> + <shelfDepth>6,9699997902</shelfDepth> </Product> <Product> - <brand_name>Red Spade</brand_name> - <product_name>Red Spade Pimento Loaf</product_name> + <brandName>Red Spade</brandName> + <productName>Red Spade Pimento Loaf</productName> <sku>64762473702</sku> <srp>1,6100000143</srp> - <gross_weight>13,1999998093</gross_weight> - <net_weight>12,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>18,1000003815</shelf_width> - <shelf_height>17,6000003815</shelf_height> - <shelf_depth>12,3999996185</shelf_depth> + <grossWeight>13,1999998093</grossWeight> + <netWeight>12,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>18,1000003815</shelfWidth> + <shelfHeight>17,6000003815</shelfHeight> + <shelfDepth>12,3999996185</shelfDepth> </Product> <Product> - <brand_name>Red Spade</brand_name> - <product_name>Red Spade Beef Bologna</product_name> + <brandName>Red Spade</brandName> + <productName>Red Spade Beef Bologna</productName> <sku>57435976862</sku> <srp>3,7599999905</srp> - <gross_weight>10,3000001907</gross_weight> - <net_weight>9,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>4,4400000572</shelf_width> - <shelf_height>8,8000001907</shelf_height> - <shelf_depth>22,7000007629</shelf_depth> + <grossWeight>10,3000001907</grossWeight> + <netWeight>9,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>4,4400000572</shelfWidth> + <shelfHeight>8,8000001907</shelfHeight> + <shelfDepth>22,7000007629</shelfDepth> </Product> <Product> - <brand_name>Red Spade</brand_name> - <product_name>Red Spade Low Fat Bologna</product_name> + <brandName>Red Spade</brandName> + <productName>Red Spade Low Fat Bologna</productName> <sku>63203895688</sku> <srp>3,4400000572</srp> - <gross_weight>11,8999996185</gross_weight> - <net_weight>8,8900003433</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>5</shelf_width> - <shelf_height>19,1000003815</shelf_height> - <shelf_depth>14,1000003815</shelf_depth> + <grossWeight>11,8999996185</grossWeight> + <netWeight>8,8900003433</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>5</shelfWidth> + <shelfHeight>19,1000003815</shelfHeight> + <shelfDepth>14,1000003815</shelfDepth> </Product> <Product> - <brand_name>Cutting Edge</brand_name> - <product_name>Cutting Edge Pimento Loaf</product_name> + <brandName>Cutting Edge</brandName> + <productName>Cutting Edge Pimento Loaf</productName> <sku>53289378285</sku> <srp>1,8200000525</srp> - <gross_weight>12,5</gross_weight> - <net_weight>9,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>4,0999999046</shelf_width> - <shelf_height>5,6500000954</shelf_height> - <shelf_depth>8,5</shelf_depth> + <grossWeight>12,5</grossWeight> + <netWeight>9,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>4,0999999046</shelfWidth> + <shelfHeight>5,6500000954</shelfHeight> + <shelfDepth>8,5</shelfDepth> </Product> <Product> - <brand_name>Cutting Edge</brand_name> - <product_name>Cutting Edge Beef Bologna</product_name> + <brandName>Cutting Edge</brandName> + <productName>Cutting Edge Beef Bologna</productName> <sku>65508074164</sku> <srp>0,9700000286</srp> - <gross_weight>7,6700000763</gross_weight> - <net_weight>4,6700000763</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>3,5199999809</shelf_width> - <shelf_height>7,8200001717</shelf_height> - <shelf_depth>4,3800001144</shelf_depth> + <grossWeight>7,6700000763</grossWeight> + <netWeight>4,6700000763</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>3,5199999809</shelfWidth> + <shelfHeight>7,8200001717</shelfHeight> + <shelfDepth>4,3800001144</shelfDepth> </Product> <Product> - <brand_name>Cutting Edge</brand_name> - <product_name>Cutting Edge Low Fat Bologna</product_name> + <brandName>Cutting Edge</brandName> + <productName>Cutting Edge Low Fat Bologna</productName> <sku>12038226723</sku> <srp>2,3699998856</srp> - <gross_weight>12,8999996185</gross_weight> - <net_weight>11,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>22,2999992371</shelf_width> - <shelf_height>18,3999996185</shelf_height> - <shelf_depth>19,6000003815</shelf_depth> + <grossWeight>12,8999996185</grossWeight> + <netWeight>11,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>22,2999992371</shelfWidth> + <shelfHeight>18,3999996185</shelfHeight> + <shelfDepth>19,6000003815</shelfDepth> </Product> <Product> - <brand_name>American</brand_name> - <product_name>American Pimento Loaf</product_name> + <brandName>American</brandName> + <productName>American Pimento Loaf</productName> <sku>47279298901</sku> <srp>2,7599999905</srp> - <gross_weight>7,4899997711</gross_weight> - <net_weight>6,4800000191</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>22,7999992371</shelf_width> - <shelf_height>15,6000003815</shelf_height> - <shelf_depth>9,6099996567</shelf_depth> + <grossWeight>7,4899997711</grossWeight> + <netWeight>6,4800000191</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>22,7999992371</shelfWidth> + <shelfHeight>15,6000003815</shelfHeight> + <shelfDepth>9,6099996567</shelfDepth> </Product> <Product> - <brand_name>American</brand_name> - <product_name>American Beef Bologna</product_name> + <brandName>American</brandName> + <productName>American Beef Bologna</productName> <sku>31022462248</sku> <srp>0,7799999714</srp> - <gross_weight>14,1999998093</gross_weight> - <net_weight>11,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>16,7999992371</shelf_width> - <shelf_height>10,6999998093</shelf_height> - <shelf_depth>16,8999996185</shelf_depth> + <grossWeight>14,1999998093</grossWeight> + <netWeight>11,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>16,7999992371</shelfWidth> + <shelfHeight>10,6999998093</shelfHeight> + <shelfDepth>16,8999996185</shelfDepth> </Product> <Product> - <brand_name>American</brand_name> - <product_name>American Low Fat Bologna</product_name> + <brandName>American</brandName> + <productName>American Low Fat Bologna</productName> <sku>39077082276</sku> <srp>2,8699998856</srp> - <gross_weight>15,8000001907</gross_weight> - <net_weight>13,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>17,2000007629</shelf_width> - <shelf_height>12,1999998093</shelf_height> - <shelf_depth>13,1999998093</shelf_depth> + <grossWeight>15,8000001907</grossWeight> + <netWeight>13,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>17,2000007629</shelfWidth> + <shelfHeight>12,1999998093</shelfHeight> + <shelfDepth>13,1999998093</shelfDepth> </Product> <Product> - <brand_name>Lake</brand_name> - <product_name>Lake Pimento Loaf</product_name> + <brandName>Lake</brandName> + <productName>Lake Pimento Loaf</productName> <sku>24848811030</sku> <srp>3,9200000763</srp> - <gross_weight>19,3999996185</gross_weight> - <net_weight>16,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>3,0299999714</shelf_width> - <shelf_height>17,8999996185</shelf_height> - <shelf_depth>20,3999996185</shelf_depth> + <grossWeight>19,3999996185</grossWeight> + <netWeight>16,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>3,0299999714</shelfWidth> + <shelfHeight>17,8999996185</shelfHeight> + <shelfDepth>20,3999996185</shelfDepth> </Product> <Product> - <brand_name>Lake</brand_name> - <product_name>Lake Beef Bologna</product_name> + <brandName>Lake</brandName> + <productName>Lake Beef Bologna</productName> <sku>30616729855</sku> <srp>0,6399999857</srp> - <gross_weight>7,7899999619</gross_weight> - <net_weight>5,7800002098</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>17,2000007629</shelf_width> - <shelf_height>6,3200001717</shelf_height> - <shelf_depth>20,8999996185</shelf_depth> + <grossWeight>7,7899999619</grossWeight> + <netWeight>5,7800002098</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>17,2000007629</shelfWidth> + <shelfHeight>6,3200001717</shelfHeight> + <shelfDepth>20,8999996185</shelfDepth> </Product> <Product> - <brand_name>Lake</brand_name> - <product_name>Lake Low Fat Bologna</product_name> + <brandName>Lake</brandName> + <productName>Lake Low Fat Bologna</productName> <sku>16430129408</sku> <srp>1,7799999714</srp> - <gross_weight>14,3999996185</gross_weight> - <net_weight>13,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>11,5</shelf_width> - <shelf_height>19,2000007629</shelf_height> - <shelf_depth>18,2000007629</shelf_depth> + <grossWeight>14,3999996185</grossWeight> + <netWeight>13,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>11,5</shelfWidth> + <shelfHeight>19,2000007629</shelfHeight> + <shelfDepth>18,2000007629</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Non-Alcoholic Wine</product_subcategory> <product_category>Beer and Wine</product_category> <product_department>Alcoholic Beverages</product_department> - <product_family>Drink</product_family> - </Product_class> - <Product_class> + <productFamily>Drink</productFamily> + </ProductClass> + <ProductClass> <product_subcategory>Tuna</product_subcategory> <product_category>Canned Tuna</product_category> <product_department>Canned Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Better</brand_name> - <product_name>Better Canned Tuna in Water</product_name> + <brandName>Better</brandName> + <productName>Better Canned Tuna in Water</productName> <sku>60596305727</sku> <srp>2,7699999809</srp> - <gross_weight>21,7000007629</gross_weight> - <net_weight>19,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>22,8999996185</shelf_width> - <shelf_height>19,2000007629</shelf_height> - <shelf_depth>3</shelf_depth> + <grossWeight>21,7000007629</grossWeight> + <netWeight>19,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>22,8999996185</shelfWidth> + <shelfHeight>19,2000007629</shelfHeight> + <shelfDepth>3</shelfDepth> </Product> <Product> - <brand_name>Better</brand_name> - <product_name>Better Canned Tuna in Oil</product_name> + <brandName>Better</brandName> + <productName>Better Canned Tuna in Oil</productName> <sku>94839757084</sku> <srp>1,5</srp> - <gross_weight>14,1999998093</gross_weight> - <net_weight>13,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>17,7000007629</shelf_width> - <shelf_height>4,5999999046</shelf_height> - <shelf_depth>17,2000007629</shelf_depth> + <grossWeight>14,1999998093</grossWeight> + <netWeight>13,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>17,7000007629</shelfWidth> + <shelfHeight>4,5999999046</shelfHeight> + <shelfDepth>17,2000007629</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Canned Tuna in Water</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Canned Tuna in Water</productName> <sku>93159278035</sku> <srp>1,4099999666</srp> - <gross_weight>9,7100000381</gross_weight> - <net_weight>7,7100000381</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>19,5</shelf_width> - <shelf_height>16,1000003815</shelf_height> - <shelf_depth>6,6100001335</shelf_depth> + <grossWeight>9,7100000381</grossWeight> + <netWeight>7,7100000381</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>19,5</shelfWidth> + <shelfHeight>16,1000003815</shelfHeight> + <shelfDepth>6,6100001335</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Canned Tuna in Oil</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Canned Tuna in Oil</productName> <sku>50497145056</sku> <srp>1,5499999523</srp> - <gross_weight>17,2000007629</gross_weight> - <net_weight>15,1999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>19,7000007629</shelf_width> - <shelf_height>13,6000003815</shelf_height> - <shelf_depth>3,6300001144</shelf_depth> + <grossWeight>17,2000007629</grossWeight> + <netWeight>15,1999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>19,7000007629</shelfWidth> + <shelfHeight>13,6000003815</shelfHeight> + <shelfDepth>3,6300001144</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Canned Tuna in Water</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Canned Tuna in Water</productName> <sku>98944674134</sku> <srp>1,6699999571</srp> - <gross_weight>10,6999998093</gross_weight> - <net_weight>9,6899995804</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>20,2000007629</shelf_width> - <shelf_height>16,2000007629</shelf_height> - <shelf_depth>17,6000003815</shelf_depth> + <grossWeight>10,6999998093</grossWeight> + <netWeight>9,6899995804</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>20,2000007629</shelfWidth> + <shelfHeight>16,2000007629</shelfHeight> + <shelfDepth>17,6000003815</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Canned Tuna in Oil</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Canned Tuna in Oil</productName> <sku>63142644762</sku> <srp>2,7799999714</srp> - <gross_weight>9,7100000381</gross_weight> - <net_weight>7,7100000381</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>15,6999998093</shelf_width> - <shelf_height>11,8999996185</shelf_height> - <shelf_depth>17,2999992371</shelf_depth> + <grossWeight>9,7100000381</grossWeight> + <netWeight>7,7100000381</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>15,6999998093</shelfWidth> + <shelfHeight>11,8999996185</shelfHeight> + <shelfDepth>17,2999992371</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Canned Tuna in Water</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Canned Tuna in Water</productName> <sku>35983529686</sku> <srp>1,2799999714</srp> - <gross_weight>9,4799995422</gross_weight> - <net_weight>8,470000267</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>11,1000003815</shelf_width> - <shelf_height>12,3000001907</shelf_height> - <shelf_depth>12</shelf_depth> + <grossWeight>9,4799995422</grossWeight> + <netWeight>8,470000267</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>11,1000003815</shelfWidth> + <shelfHeight>12,3000001907</shelfHeight> + <shelfDepth>12</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Canned Tuna in Oil</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Canned Tuna in Oil</productName> <sku>85608097910</sku> <srp>1,7599999905</srp> - <gross_weight>7,4299998283</gross_weight> - <net_weight>5,4200000763</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>3,3699998856</shelf_width> - <shelf_height>8,0200004578</shelf_height> - <shelf_depth>22</shelf_depth> + <grossWeight>7,4299998283</grossWeight> + <netWeight>5,4200000763</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>3,3699998856</shelfWidth> + <shelfHeight>8,0200004578</shelfHeight> + <shelfDepth>22</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Canned Tuna in Water</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Canned Tuna in Water</productName> <sku>85475897192</sku> <srp>2,9600000381</srp> - <gross_weight>6,4099998474</gross_weight> - <net_weight>3,4000000954</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>19,6000003815</shelf_width> - <shelf_height>15,5</shelf_height> - <shelf_depth>13,1000003815</shelf_depth> + <grossWeight>6,4099998474</grossWeight> + <netWeight>3,4000000954</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>19,6000003815</shelfWidth> + <shelfHeight>15,5</shelfHeight> + <shelfDepth>13,1000003815</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Canned Tuna in Oil</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Canned Tuna in Oil</productName> <sku>32006049752</sku> <srp>1,3700000048</srp> - <gross_weight>8,9099998474</gross_weight> - <net_weight>5,9000000954</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>4,8400001526</shelf_width> - <shelf_height>8,1700000763</shelf_height> - <shelf_depth>19,2000007629</shelf_depth> + <grossWeight>8,9099998474</grossWeight> + <netWeight>5,9000000954</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>4,8400001526</shelfWidth> + <shelfHeight>8,1700000763</shelfHeight> + <shelfDepth>19,2000007629</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Shrimp</product_subcategory> <product_category>Canned Shrimp</product_category> <product_department>Canned Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Better</brand_name> - <product_name>Better Large Canned Shrimp</product_name> + <brandName>Better</brandName> + <productName>Better Large Canned Shrimp</productName> <sku>85226559042</sku> <srp>2,2999999523</srp> - <gross_weight>8,5500001907</gross_weight> - <net_weight>6,5500001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>10,5</shelf_width> - <shelf_height>6,6999998093</shelf_height> - <shelf_depth>13,3000001907</shelf_depth> + <grossWeight>8,5500001907</grossWeight> + <netWeight>6,5500001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>10,5</shelfWidth> + <shelfHeight>6,6999998093</shelfHeight> + <shelfDepth>13,3000001907</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Large Canned Shrimp</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Large Canned Shrimp</productName> <sku>87027297616</sku> <srp>2,8599998951</srp> - <gross_weight>8,8599996567</gross_weight> - <net_weight>6,8499999046</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>8,7299995422</shelf_width> - <shelf_height>3,3399999142</shelf_height> - <shelf_depth>13,1000003815</shelf_depth> + <grossWeight>8,8599996567</grossWeight> + <netWeight>6,8499999046</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>8,7299995422</shelfWidth> + <shelfHeight>3,3399999142</shelfHeight> + <shelfDepth>13,1000003815</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Large Canned Shrimp</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Large Canned Shrimp</productName> <sku>64337161183</sku> <srp>2,1700000763</srp> - <gross_weight>10,8000001907</gross_weight> - <net_weight>7,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>13,8000001907</shelf_width> - <shelf_height>16,7000007629</shelf_height> - <shelf_depth>3,8499999046</shelf_depth> + <grossWeight>10,8000001907</grossWeight> + <netWeight>7,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>13,8000001907</shelfWidth> + <shelfHeight>16,7000007629</shelfHeight> + <shelfDepth>3,8499999046</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Large Canned Shrimp</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Large Canned Shrimp</productName> <sku>34424951672</sku> <srp>3,1099998951</srp> - <gross_weight>13,8999996185</gross_weight> - <net_weight>12,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>6,0500001907</shelf_width> - <shelf_height>6,2600002289</shelf_height> - <shelf_depth>7,2899999619</shelf_depth> + <grossWeight>13,8999996185</grossWeight> + <netWeight>12,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>6,0500001907</shelfWidth> + <shelfHeight>6,2600002289</shelfHeight> + <shelfDepth>7,2899999619</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Large Canned Shrimp</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Large Canned Shrimp</productName> <sku>48581683039</sku> <srp>2,7699999809</srp> - <gross_weight>16</gross_weight> - <net_weight>14</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>20,8999996185</shelf_width> - <shelf_height>20</shelf_height> - <shelf_depth>16,2999992371</shelf_depth> + <grossWeight>16</grossWeight> + <netWeight>14</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>20,8999996185</shelfWidth> + <shelfHeight>20</shelfHeight> + <shelfDepth>16,2999992371</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Anchovies</product_subcategory> <product_category>Canned Anchovies</product_category> <product_department>Canned Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Better</brand_name> - <product_name>Better Fancy Canned Anchovies</product_name> + <brandName>Better</brandName> + <productName>Better Fancy Canned Anchovies</productName> <sku>88707776665</sku> <srp>2,2799999714</srp> - <gross_weight>10,5</gross_weight> - <net_weight>7,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>14</shelf_width> - <shelf_height>9,3400001526</shelf_height> - <shelf_depth>14,6000003815</shelf_depth> + <grossWeight>10,5</grossWeight> + <netWeight>7,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>14</shelfWidth> + <shelfHeight>9,3400001526</shelfHeight> + <shelfDepth>14,6000003815</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Fancy Canned Anchovies</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Fancy Canned Anchovies</productName> <sku>44581629633</sku> <srp>1,3600000143</srp> - <gross_weight>8,2700004578</gross_weight> - <net_weight>6,2699999809</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>5,9000000954</shelf_width> - <shelf_height>9,1199998856</shelf_height> - <shelf_depth>17,7000007629</shelf_depth> + <grossWeight>8,2700004578</grossWeight> + <netWeight>6,2699999809</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>5,9000000954</shelfWidth> + <shelfHeight>9,1199998856</shelfHeight> + <shelfDepth>17,7000007629</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Fancy Canned Anchovies</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Fancy Canned Anchovies</productName> <sku>87772898077</sku> <srp>2,3099999428</srp> - <gross_weight>8,3299999237</gross_weight> - <net_weight>5,3200001717</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>15</shelf_width> - <shelf_height>8,0500001907</shelf_height> - <shelf_depth>8,8999996185</shelf_depth> + <grossWeight>8,3299999237</grossWeight> + <netWeight>5,3200001717</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>15</shelfWidth> + <shelfHeight>8,0500001907</shelfHeight> + <shelfDepth>8,8999996185</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Fancy Canned Anchovies</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Fancy Canned Anchovies</productName> <sku>53287286162</sku> <srp>2,8499999046</srp> - <gross_weight>10,1000003815</gross_weight> - <net_weight>7,0999999046</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>8,0699996948</shelf_width> - <shelf_height>12,8999996185</shelf_height> - <shelf_depth>12,8000001907</shelf_depth> + <grossWeight>10,1000003815</grossWeight> + <netWeight>7,0999999046</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>8,0699996948</shelfWidth> + <shelfHeight>12,8999996185</shelfHeight> + <shelfDepth>12,8000001907</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Fancy Canned Anchovies</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Fancy Canned Anchovies</productName> <sku>54349601864</sku> <srp>3,4400000572</srp> - <gross_weight>9,4200000763</gross_weight> - <net_weight>7,4200000763</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>12,1000003815</shelf_width> - <shelf_height>6,5999999046</shelf_height> - <shelf_depth>15,1999998093</shelf_depth> + <grossWeight>9,4200000763</grossWeight> + <netWeight>7,4200000763</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>12,1000003815</shelfWidth> + <shelfHeight>6,5999999046</shelfHeight> + <shelfDepth>15,1999998093</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Clams</product_subcategory> <product_category>Canned Clams</product_category> <product_department>Canned Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Better</brand_name> - <product_name>Better Fancy Canned Clams</product_name> + <brandName>Better</brandName> + <productName>Better Fancy Canned Clams</productName> <sku>24430214762</sku> <srp>2,1099998951</srp> - <gross_weight>17,6000003815</gross_weight> - <net_weight>16,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>36</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>12</shelf_width> - <shelf_height>10,1000003815</shelf_height> - <shelf_depth>21,7000007629</shelf_depth> + <grossWeight>17,6000003815</grossWeight> + <netWeight>16,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>36</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>12</shelfWidth> + <shelfHeight>10,1000003815</shelfHeight> + <shelfDepth>21,7000007629</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Fancy Canned Clams</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Fancy Canned Clams</productName> <sku>50349548459</sku> <srp>1,6900000572</srp> - <gross_weight>16,7000007629</gross_weight> - <net_weight>14,6999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>20,6000003815</shelf_width> - <shelf_height>14,3999996185</shelf_height> - <shelf_depth>11,8999996185</shelf_depth> + <grossWeight>16,7000007629</grossWeight> + <netWeight>14,6999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>20,6000003815</shelfWidth> + <shelfHeight>14,3999996185</shelfHeight> + <shelfDepth>11,8999996185</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Fancy Canned Clams</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Fancy Canned Clams</productName> <sku>34303050637</sku> <srp>3,8499999046</srp> - <gross_weight>20,3999996185</gross_weight> - <net_weight>17,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>8,1199998856</shelf_width> - <shelf_height>13,6000003815</shelf_height> - <shelf_depth>6,9899997711</shelf_depth> + <grossWeight>20,3999996185</grossWeight> + <netWeight>17,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>8,1199998856</shelfWidth> + <shelfHeight>13,6000003815</shelfHeight> + <shelfDepth>6,9899997711</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Fancy Canned Clams</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Fancy Canned Clams</productName> <sku>61341906189</sku> <srp>2,2300000191</srp> - <gross_weight>7,6500000954</gross_weight> - <net_weight>5,6500000954</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>7,9299998283</shelf_width> - <shelf_height>17,3999996185</shelf_height> - <shelf_depth>15,5</shelf_depth> + <grossWeight>7,6500000954</grossWeight> + <netWeight>5,6500000954</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>7,9299998283</shelfWidth> + <shelfHeight>17,3999996185</shelfHeight> + <shelfDepth>15,5</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Fancy Canned Clams</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Fancy Canned Clams</productName> <sku>16260871291</sku> <srp>0,7900000215</srp> - <gross_weight>9,6499996185</gross_weight> - <net_weight>7,6399998665</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>15,6999998093</shelf_width> - <shelf_height>3,5599999428</shelf_height> - <shelf_depth>4,5199999809</shelf_depth> + <grossWeight>9,6499996185</grossWeight> + <netWeight>7,6399998665</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>15,6999998093</shelfWidth> + <shelfHeight>3,5599999428</shelfHeight> + <shelfDepth>4,5199999809</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Oysters</product_subcategory> <product_category>Canned Oysters</product_category> <product_department>Canned Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Better</brand_name> - <product_name>Better Fancy Canned Oysters</product_name> + <brandName>Better</brandName> + <productName>Better Fancy Canned Oysters</productName> <sku>87149198651</sku> <srp>2,1199998856</srp> - <gross_weight>15,6000003815</gross_weight> - <net_weight>12,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>12,8999996185</shelf_width> - <shelf_height>18</shelf_height> - <shelf_depth>4,3000001907</shelf_depth> + <grossWeight>15,6000003815</grossWeight> + <netWeight>12,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>12,8999996185</shelfWidth> + <shelfHeight>18</shelfHeight> + <shelfDepth>4,3000001907</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Fancy Canned Oysters</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Fancy Canned Oysters</productName> <sku>36162948012</sku> <srp>2,2100000381</srp> - <gross_weight>18,2000007629</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>8,279999733</shelf_width> - <shelf_height>7,8699998856</shelf_height> - <shelf_depth>6,2699999809</shelf_depth> + <grossWeight>18,2000007629</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>8,279999733</shelfWidth> + <shelfHeight>7,8699998856</shelfHeight> + <shelfDepth>6,2699999809</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Fancy Canned Oysters</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Fancy Canned Oysters</productName> <sku>50878683924</sku> <srp>2,1199998856</srp> - <gross_weight>19,7999992371</gross_weight> - <net_weight>18,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>6,0300002098</shelf_width> - <shelf_height>14,8999996185</shelf_height> - <shelf_depth>11,5</shelf_depth> + <grossWeight>19,7999992371</grossWeight> + <netWeight>18,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>6,0300002098</shelfWidth> + <shelfHeight>14,8999996185</shelfHeight> + <shelfDepth>11,5</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Fancy Canned Oysters</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Fancy Canned Oysters</productName> <sku>49442006945</sku> <srp>1,3400000334</srp> - <gross_weight>14,8000001907</gross_weight> - <net_weight>12,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>36</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>4,0799999237</shelf_width> - <shelf_height>9,3500003815</shelf_height> - <shelf_depth>12,6000003815</shelf_depth> + <grossWeight>14,8000001907</grossWeight> + <netWeight>12,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>36</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>4,0799999237</shelfWidth> + <shelfHeight>9,3500003815</shelfHeight> + <shelfDepth>12,6000003815</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Fancy Canned Oysters</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Fancy Canned Oysters</productName> <sku>81266556382</sku> <srp>2,4300000668</srp> - <gross_weight>8,4600000381</gross_weight> - <net_weight>7,4600000381</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>3,5999999046</shelf_width> - <shelf_height>20,3999996185</shelf_height> - <shelf_depth>21,7000007629</shelf_depth> + <grossWeight>8,4600000381</grossWeight> + <netWeight>7,4600000381</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>3,5999999046</shelfWidth> + <shelfHeight>20,3999996185</shelfHeight> + <shelfDepth>21,7000007629</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Sardines</product_subcategory> <product_category>Canned Sardines</product_category> <product_department>Canned Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Better</brand_name> - <product_name>Better Fancy Canned Sardines</product_name> + <brandName>Better</brandName> + <productName>Better Fancy Canned Sardines</productName> <sku>16011533141</sku> <srp>1,2000000477</srp> - <gross_weight>11,8000001907</gross_weight> - <net_weight>8,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>14,1999998093</shelf_width> - <shelf_height>9,1300001144</shelf_height> - <shelf_depth>9,8800001144</shelf_depth> + <grossWeight>11,8000001907</grossWeight> + <netWeight>8,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>14,1999998093</shelfWidth> + <shelfHeight>9,1300001144</shelfHeight> + <shelfDepth>9,8800001144</shelfDepth> </Product> <Product> - <brand_name>Blue Label</brand_name> - <product_name>Blue Label Fancy Canned Sardines</product_name> + <brandName>Blue Label</brandName> + <productName>Blue Label Fancy Canned Sardines</productName> <sku>11168633103</sku> <srp>1,7999999523</srp> - <gross_weight>14</gross_weight> - <net_weight>11</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>17,3999996185</shelf_width> - <shelf_height>16,7000007629</shelf_height> - <shelf_depth>19,3999996185</shelf_depth> + <grossWeight>14</grossWeight> + <netWeight>11</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>17,3999996185</shelfWidth> + <shelfHeight>16,7000007629</shelfHeight> + <shelfDepth>19,3999996185</shelfDepth> </Product> <Product> - <brand_name>Bravo</brand_name> - <product_name>Bravo Fancy Canned Sardines</product_name> + <brandName>Bravo</brandName> + <productName>Bravo Fancy Canned Sardines</productName> <sku>56646602749</sku> <srp>2,6800000668</srp> - <gross_weight>6,4400000572</gross_weight> - <net_weight>5,4400000572</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>9,1800003052</shelf_width> - <shelf_height>9,8400001526</shelf_height> - <shelf_depth>12,6000003815</shelf_depth> + <grossWeight>6,4400000572</grossWeight> + <netWeight>5,4400000572</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>9,1800003052</shelfWidth> + <shelfHeight>9,8400001526</shelfHeight> + <shelfDepth>12,6000003815</shelfDepth> </Product> <Product> - <brand_name>Just Right</brand_name> - <product_name>Just Right Fancy Canned Sardines</product_name> + <brandName>Just Right</brandName> + <productName>Just Right Fancy Canned Sardines</productName> <sku>26734393239</sku> <srp>0,7900000215</srp> - <gross_weight>6,8899998665</gross_weight> - <net_weight>4,8800001144</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>15,3000001907</shelf_width> - <shelf_height>15,6999998093</shelf_height> - <shelf_depth>12</shelf_depth> + <grossWeight>6,8899998665</grossWeight> + <netWeight>4,8800001144</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>15,3000001907</shelfWidth> + <shelfHeight>15,6999998093</shelfHeight> + <shelfDepth>12</shelfDepth> </Product> <Product> - <brand_name>Pleasant</brand_name> - <product_name>Pleasant Fancy Canned Sardines</product_name> + <brandName>Pleasant</brandName> + <productName>Pleasant Fancy Canned Sardines</productName> <sku>91198551058</sku> <srp>1,8700000048</srp> - <gross_weight>13,1999998093</gross_weight> - <net_weight>11,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>9,9600000381</shelf_width> - <shelf_height>11</shelf_height> - <shelf_depth>14,6000003815</shelf_depth> + <grossWeight>13,1999998093</grossWeight> + <netWeight>11,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>9,9600000381</shelfWidth> + <shelfHeight>11</shelfHeight> + <shelfDepth>14,6000003815</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Fresh Fruit</product_subcategory> <product_category>Fruit</product_category> <product_department>Produce</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Limes</product_name> + <brandName>High Top</brandName> + <productName>High Top Limes</productName> <sku>25780245661</sku> <srp>3,6800000668</srp> - <gross_weight>11,8000001907</gross_weight> - <net_weight>9,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>8,6400003433</shelf_width> - <shelf_height>14,8999996185</shelf_height> - <shelf_depth>18,2999992371</shelf_depth> + <grossWeight>11,8000001907</grossWeight> + <netWeight>9,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>8,6400003433</shelfWidth> + <shelfHeight>14,8999996185</shelfHeight> + <shelfDepth>18,2999992371</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Macintosh Apples</product_name> + <brandName>High Top</brandName> + <productName>High Top Macintosh Apples</productName> <sku>58465119004</sku> <srp>2,4700000286</srp> - <gross_weight>12,1000003815</gross_weight> - <net_weight>10,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>7,2899999619</shelf_width> - <shelf_height>19,1000003815</shelf_height> - <shelf_depth>16,2000007629</shelf_depth> + <grossWeight>12,1000003815</grossWeight> + <netWeight>10,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>7,2899999619</shelfWidth> + <shelfHeight>19,1000003815</shelfHeight> + <shelfDepth>16,2000007629</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Golden Delcious Apples</product_name> + <brandName>High Top</brandName> + <productName>High Top Golden Delcious Apples</productName> <sku>79614154696</sku> <srp>2,9100000858</srp> - <gross_weight>21,5</gross_weight> - <net_weight>19,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>15,3999996185</shelf_width> - <shelf_height>18,8999996185</shelf_height> - <shelf_depth>17,6000003815</shelf_depth> + <grossWeight>21,5</grossWeight> + <netWeight>19,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>15,3999996185</shelfWidth> + <shelfHeight>18,8999996185</shelfHeight> + <shelfDepth>17,6000003815</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Red Delcious Apples</product_name> + <brandName>High Top</brandName> + <productName>High Top Red Delcious Apples</productName> <sku>78738434910</sku> <srp>0,9200000167</srp> - <gross_weight>17,2000007629</gross_weight> - <net_weight>14,1999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>6,2600002289</shelf_width> - <shelf_height>7,8299999237</shelf_height> - <shelf_depth>5,9200000763</shelf_depth> + <grossWeight>17,2000007629</grossWeight> + <netWeight>14,1999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>6,2600002289</shelfWidth> + <shelfHeight>7,8299999237</shelfHeight> + <shelfDepth>5,9200000763</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Lemons</product_name> + <brandName>High Top</brandName> + <productName>High Top Lemons</productName> <sku>69125236868</sku> <srp>1,6699999571</srp> - <gross_weight>19,2000007629</gross_weight> - <net_weight>18,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>19,7999992371</shelf_width> - <shelf_height>4,9200000763</shelf_height> - <shelf_depth>4,6500000954</shelf_depth> + <grossWeight>19,2000007629</grossWeight> + <netWeight>18,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>19,7999992371</shelfWidth> + <shelfHeight>4,9200000763</shelfHeight> + <shelfDepth>4,6500000954</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Fancy Plums</product_name> + <brandName>High Top</brandName> + <productName>High Top Fancy Plums</productName> <sku>72606454491</sku> <srp>2,6500000954</srp> - <gross_weight>6,7399997711</gross_weight> - <net_weight>4,7300000191</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>8,3800001144</shelf_width> - <shelf_height>17,6000003815</shelf_height> - <shelf_depth>20,3999996185</shelf_depth> + <grossWeight>6,7399997711</grossWeight> + <netWeight>4,7300000191</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>8,3800001144</shelfWidth> + <shelfHeight>17,6000003815</shelfHeight> + <shelfDepth>20,3999996185</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Plums</product_name> + <brandName>High Top</brandName> + <productName>High Top Plums</productName> <sku>32231022715</sku> <srp>2,25</srp> - <gross_weight>14,6999998093</gross_weight> - <net_weight>12,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>10,8000001907</shelf_width> - <shelf_height>11,8000001907</shelf_height> - <shelf_depth>7,3299999237</shelf_depth> + <grossWeight>14,6999998093</grossWeight> + <netWeight>12,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>10,8000001907</shelfWidth> + <shelfHeight>11,8000001907</shelfHeight> + <shelfDepth>7,3299999237</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Peaches</product_name> + <brandName>High Top</brandName> + <productName>High Top Peaches</productName> <sku>71047876477</sku> <srp>1,4900000095</srp> - <gross_weight>11,8000001907</gross_weight> - <net_weight>8,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>6,6100001335</shelf_width> - <shelf_height>10,6999998093</shelf_height> - <shelf_depth>10,1000003815</shelf_depth> + <grossWeight>11,8000001907</grossWeight> + <netWeight>8,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>6,6100001335</shelfWidth> + <shelfHeight>10,6999998093</shelfHeight> + <shelfDepth>10,1000003815</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Mandarin Oranges</product_name> + <brandName>High Top</brandName> + <productName>High Top Mandarin Oranges</productName> <sku>97964830994</sku> <srp>1,6000000238</srp> - <gross_weight>13,6000003815</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>22,6000003815</shelf_width> - <shelf_height>17</shelf_height> - <shelf_depth>20,7000007629</shelf_depth> + <grossWeight>13,6000003815</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>22,6000003815</shelfWidth> + <shelfHeight>17</shelfHeight> + <shelfDepth>20,7000007629</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Cantelope</product_name> + <brandName>High Top</brandName> + <productName>High Top Cantelope</productName> <sku>44540248513</sku> <srp>2,4700000286</srp> - <gross_weight>13,3999996185</gross_weight> - <net_weight>10,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>6,0599999428</shelf_width> - <shelf_height>21,3999996185</shelf_height> - <shelf_depth>8,3199996948</shelf_depth> + <grossWeight>13,3999996185</grossWeight> + <netWeight>10,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>6,0599999428</shelfWidth> + <shelfHeight>21,3999996185</shelfHeight> + <shelfDepth>8,3199996948</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Honey Dew</product_name> + <brandName>High Top</brandName> + <productName>High Top Honey Dew</productName> <sku>37213751673</sku> <srp>1,8700000048</srp> - <gross_weight>17,2999992371</gross_weight> - <net_weight>15,1999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>7,9899997711</shelf_width> - <shelf_height>18,6000003815</shelf_height> - <shelf_depth>21,3999996185</shelf_depth> + <grossWeight>17,2999992371</grossWeight> + <netWeight>15,1999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>7,9899997711</shelfWidth> + <shelfHeight>18,6000003815</shelfHeight> + <shelfDepth>21,3999996185</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Fuji Apples</product_name> + <brandName>High Top</brandName> + <productName>High Top Fuji Apples</productName> <sku>42981670498</sku> <srp>1,5399999619</srp> - <gross_weight>17</gross_weight> - <net_weight>14</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>16,1000003815</shelf_width> - <shelf_height>4,2300000191</shelf_height> - <shelf_depth>13,8000001907</shelf_depth> + <grossWeight>17</grossWeight> + <netWeight>14</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>16,1000003815</shelfWidth> + <shelfHeight>4,2300000191</shelfHeight> + <shelfDepth>13,8000001907</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Oranges</product_name> + <brandName>High Top</brandName> + <productName>High Top Oranges</productName> <sku>69898625016</sku> <srp>1,6599999666</srp> - <gross_weight>9,779999733</gross_weight> - <net_weight>7,7699999809</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>13,1000003815</shelf_width> - <shelf_height>4,2699999809</shelf_height> - <shelf_depth>12,3000001907</shelf_depth> + <grossWeight>9,779999733</grossWeight> + <netWeight>7,7699999809</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>13,1000003815</shelfWidth> + <shelfHeight>4,2699999809</shelfHeight> + <shelfDepth>12,3000001907</shelfDepth> </Product> <Product> - <brand_name>High Top</brand_name> - <product_name>High Top Tangerines</product_name> + <brandName>High Top</brandName> + <productName>High Top Tangerines</productName> <sku>91047660708</sku> <srp>0,5600000024</srp> - <gross_weight>7,2199997902</gross_weight> - <net_weight>5,2100000381</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>4,0799999237</shelf_width> - <shelf_height>7,7100000381</shelf_height> - <shelf_depth>7,5599999428</shelf_depth> + <grossWeight>7,2199997902</grossWeight> + <netWeight>5,2100000381</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>4,0799999237</shelfWidth> + <shelfHeight>7,7100000381</shelfHeight> + <shelfDepth>7,5599999428</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Limes</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Limes</productName> <sku>68971514105</sku> <srp>0,9200000167</srp> - <gross_weight>11,6999998093</gross_weight> - <net_weight>9,6899995804</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>8,6000003815</shelf_width> - <shelf_height>17,3999996185</shelf_height> - <shelf_depth>10,6999998093</shelf_depth> + <grossWeight>11,6999998093</grossWeight> + <netWeight>9,6899995804</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>8,6000003815</shelfWidth> + <shelfHeight>17,3999996185</shelfHeight> + <shelfDepth>10,6999998093</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Macintosh Apples</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Macintosh Apples</productName> <sku>68560245633</sku> <srp>1,3500000238</srp> - <gross_weight>21,5</gross_weight> - <net_weight>19,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>15,1999998093</shelf_width> - <shelf_height>3,5099999905</shelf_height> - <shelf_depth>15,6000003815</shelf_depth> + <grossWeight>21,5</grossWeight> + <netWeight>19,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>15,1999998093</shelfWidth> + <shelfHeight>3,5099999905</shelfHeight> + <shelfDepth>15,6000003815</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Golden Delcious Apples</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Golden Delcious Apples</productName> <sku>54373645186</sku> <srp>2,7699999809</srp> - <gross_weight>18,5</gross_weight> - <net_weight>16,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>3,9500000477</shelf_width> - <shelf_height>10,1999998093</shelf_height> - <shelf_depth>20,8999996185</shelf_depth> + <grossWeight>18,5</grossWeight> + <netWeight>16,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>3,9500000477</shelfWidth> + <shelfHeight>10,1999998093</shelfHeight> + <shelfDepth>20,8999996185</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Red Delcious Apples</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Red Delcious Apples</productName> <sku>95477200150</sku> <srp>0,6999999881</srp> - <gross_weight>7,3600001335</gross_weight> - <net_weight>5,3600001335</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>20,3999996185</shelf_width> - <shelf_height>15,3000001907</shelf_height> - <shelf_depth>11,3000001907</shelf_depth> + <grossWeight>7,3600001335</grossWeight> + <netWeight>5,3600001335</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>20,3999996185</shelfWidth> + <shelfHeight>15,3000001907</shelfHeight> + <shelfDepth>11,3000001907</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Lemons</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Lemons</productName> <sku>50528365969</sku> <srp>1,9099999666</srp> - <gross_weight>7,6500000954</gross_weight> - <net_weight>5,6500000954</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>22,7000007629</shelf_width> - <shelf_height>10</shelf_height> - <shelf_depth>15,6000003815</shelf_depth> + <grossWeight>7,6500000954</grossWeight> + <netWeight>5,6500000954</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>22,7000007629</shelfWidth> + <shelfHeight>10</shelfHeight> + <shelfDepth>15,6000003815</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Fancy Plums</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Fancy Plums</productName> <sku>60869687199</sku> <srp>1,8600000143</srp> - <gross_weight>18,3999996185</gross_weight> - <net_weight>17,2999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>7,2699999809</shelf_width> - <shelf_height>16,6000003815</shelf_height> - <shelf_depth>14,1000003815</shelf_depth> + <grossWeight>18,3999996185</grossWeight> + <netWeight>17,2999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>7,2699999809</shelfWidth> + <shelfHeight>16,6000003815</shelfHeight> + <shelfDepth>14,1000003815</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Plums</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Plums</productName> <sku>51256489157</sku> <srp>3,4300000668</srp> - <gross_weight>7,2800002098</gross_weight> - <net_weight>6,2800002098</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>13,8000001907</shelf_width> - <shelf_height>16,1000003815</shelf_height> - <shelf_depth>22</shelf_depth> + <grossWeight>7,2800002098</grossWeight> + <netWeight>6,2800002098</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>13,8000001907</shelfWidth> + <shelfHeight>16,1000003815</shelfHeight> + <shelfDepth>22</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Peaches</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Peaches</productName> <sku>54737706780</sku> <srp>2,1099998951</srp> - <gross_weight>19,2999992371</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>4,0199999809</shelf_width> - <shelf_height>19,1000003815</shelf_height> - <shelf_depth>20,5</shelf_depth> + <grossWeight>19,2999992371</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>4,0199999809</shelfWidth> + <shelfHeight>19,1000003815</shelfHeight> + <shelfDepth>20,5</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Mandarin Oranges</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Mandarin Oranges</productName> <sku>41962087750</sku> <srp>1,8300000429</srp> - <gross_weight>9,7899999619</gross_weight> - <net_weight>7,7800002098</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>9,8299999237</shelf_width> - <shelf_height>6,8400001526</shelf_height> - <shelf_depth>14,6999998093</shelf_depth> + <grossWeight>9,7899999619</grossWeight> + <netWeight>7,7800002098</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>9,8299999237</shelfWidth> + <shelfHeight>6,8400001526</shelfHeight> + <shelfDepth>14,6999998093</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Cantelope</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Cantelope</productName> <sku>34271529316</sku> <srp>2,4500000477</srp> - <gross_weight>8,1099996567</gross_weight> - <net_weight>7,0999999046</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>18,7999992371</shelf_width> - <shelf_height>17,7999992371</shelf_height> - <shelf_depth>12,6999998093</shelf_depth> + <grossWeight>8,1099996567</grossWeight> + <netWeight>7,0999999046</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>18,7999992371</shelfWidth> + <shelfHeight>17,7999992371</shelfHeight> + <shelfDepth>12,6999998093</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Honey Dew</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Honey Dew</productName> <sku>81609396338</sku> <srp>1,5800000429</srp> - <gross_weight>8,7899999619</gross_weight> - <net_weight>6,7800002098</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>4,8400001526</shelf_width> - <shelf_height>20,3999996185</shelf_height> - <shelf_depth>6,9099998474</shelf_depth> + <grossWeight>8,7899999619</grossWeight> + <netWeight>6,7800002098</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>4,8400001526</shelfWidth> + <shelfHeight>20,3999996185</shelfHeight> + <shelfDepth>6,9099998474</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Fuji Apples</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Fuji Apples</productName> <sku>28139548897</sku> <srp>3,2400000095</srp> - <gross_weight>15</gross_weight> - <net_weight>13</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>7,0199999809</shelf_width> - <shelf_height>11,1000003815</shelf_height> - <shelf_depth>11,8000001907</shelf_depth> + <grossWeight>15</grossWeight> + <netWeight>13</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>7,0199999809</shelfWidth> + <shelfHeight>11,1000003815</shelfHeight> + <shelfDepth>11,8000001907</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Oranges</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Oranges</productName> <sku>26580970883</sku> <srp>2,9600000381</srp> - <gross_weight>9,9600000381</gross_weight> - <net_weight>7,9600000381</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>17,5</shelf_width> - <shelf_height>10,1999998093</shelf_height> - <shelf_depth>14,6000003815</shelf_depth> + <grossWeight>9,9600000381</grossWeight> + <netWeight>7,9600000381</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>17,5</shelfWidth> + <shelfHeight>10,1999998093</shelfHeight> + <shelfDepth>14,6000003815</shelfDepth> </Product> <Product> - <brand_name>Ebony</brand_name> - <product_name>Ebony Tangerines</product_name> + <brandName>Ebony</brandName> + <productName>Ebony Tangerines</productName> <sku>78492240309</sku> <srp>3,4900000095</srp> - <gross_weight>13,3999996185</gross_weight> - <net_weight>12,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>16,1000003815</shelf_width> - <shelf_height>17,3999996185</shelf_height> - <shelf_depth>7,9699997902</shelf_depth> + <grossWeight>13,3999996185</grossWeight> + <netWeight>12,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>16,1000003815</shelfWidth> + <shelfHeight>17,3999996185</shelfHeight> + <shelfDepth>7,9699997902</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Limes</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Limes</productName> <sku>69906392693</sku> <srp>1,8400000334</srp> - <gross_weight>13,6000003815</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>14,6999998093</shelf_width> - <shelf_height>7,3200001717</shelf_height> - <shelf_depth>20,2999992371</shelf_depth> + <grossWeight>13,6000003815</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>14,6999998093</shelfWidth> + <shelfHeight>7,3200001717</shelfHeight> + <shelfDepth>20,2999992371</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Macintosh Apples</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Macintosh Apples</productName> <sku>87210149168</sku> <srp>2,5299999714</srp> - <gross_weight>20,3999996185</gross_weight> - <net_weight>18,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>22,2999992371</shelf_width> - <shelf_height>3,0399999619</shelf_height> - <shelf_depth>13,8000001907</shelf_depth> + <grossWeight>20,3999996185</grossWeight> + <netWeight>18,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>22,2999992371</shelfWidth> + <shelfHeight>3,0399999619</shelfHeight> + <shelfDepth>13,8000001907</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Golden Delcious Apples</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Golden Delcious Apples</productName> <sku>82579680085</sku> <srp>3,7899999619</srp> - <gross_weight>13,8999996185</gross_weight> - <net_weight>11,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>20,2000007629</shelf_width> - <shelf_height>19,5</shelf_height> - <shelf_depth>22,7999992371</shelf_depth> + <grossWeight>13,8999996185</grossWeight> + <netWeight>11,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>20,2000007629</shelfWidth> + <shelfHeight>19,5</shelfHeight> + <shelfDepth>22,7999992371</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Red Delcious Apples</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Red Delcious Apples</productName> <sku>46777650713</sku> <srp>1,8999999762</srp> - <gross_weight>20,8999996185</gross_weight> - <net_weight>18,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>9,4600000381</shelf_width> - <shelf_height>12,5</shelf_height> - <shelf_depth>14,8000001907</shelf_depth> + <grossWeight>20,8999996185</grossWeight> + <netWeight>18,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>9,4600000381</shelfWidth> + <shelfHeight>12,5</shelfHeight> + <shelfDepth>14,8000001907</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Lemons</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Lemons</productName> <sku>47972167134</sku> <srp>0,6100000143</srp> - <gross_weight>9,3299999237</gross_weight> - <net_weight>7,3200001717</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>3,6900000572</shelf_width> - <shelf_height>20,8999996185</shelf_height> - <shelf_depth>15,3999996185</shelf_depth> + <grossWeight>9,3299999237</grossWeight> + <netWeight>7,3200001717</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>3,6900000572</shelfWidth> + <shelfHeight>20,8999996185</shelfHeight> + <shelfDepth>15,3999996185</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Fancy Plums</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Fancy Plums</productName> <sku>71407904028</sku> <srp>0,6800000072</srp> - <gross_weight>21</gross_weight> - <net_weight>19</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>3,3099999428</shelf_width> - <shelf_height>22</shelf_height> - <shelf_depth>16,1000003815</shelf_depth> + <grossWeight>21</grossWeight> + <netWeight>19</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>3,3099999428</shelfWidth> + <shelfHeight>22</shelfHeight> + <shelfDepth>16,1000003815</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Plums</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Plums</productName> <sku>17938056588</sku> <srp>2,7400000095</srp> - <gross_weight>9,8500003815</gross_weight> - <net_weight>7,8499999046</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>19,7000007629</shelf_width> - <shelf_height>7,0799999237</shelf_height> - <shelf_depth>6,5</shelf_depth> + <grossWeight>9,8500003815</grossWeight> + <netWeight>7,8499999046</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>19,7000007629</shelfWidth> + <shelfHeight>7,0799999237</shelfHeight> + <shelfDepth>6,5</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Peaches</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Peaches</productName> <sku>34513689875</sku> <srp>0,5799999833</srp> - <gross_weight>11</gross_weight> - <net_weight>10</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>6,1599998474</shelf_width> - <shelf_height>17,3999996185</shelf_height> - <shelf_depth>20,5</shelf_depth> + <grossWeight>11</grossWeight> + <netWeight>10</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>6,1599998474</shelfWidth> + <shelfHeight>17,3999996185</shelfHeight> + <shelfDepth>20,5</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Mandarin Oranges</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Mandarin Oranges</productName> <sku>92192878127</sku> <srp>1,9099999666</srp> - <gross_weight>20,7000007629</gross_weight> - <net_weight>19,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>7,8600001335</shelf_width> - <shelf_height>19,7000007629</shelf_height> - <shelf_depth>13,6999998093</shelf_depth> + <grossWeight>20,7000007629</grossWeight> + <netWeight>19,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>7,8600001335</shelfWidth> + <shelfHeight>19,7000007629</shelfHeight> + <shelfDepth>13,6999998093</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Cantelope</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Cantelope</productName> <sku>11760811209</sku> <srp>3,8199999332</srp> - <gross_weight>17,1000003815</gross_weight> - <net_weight>15,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>10,5</shelf_width> - <shelf_height>8,4600000381</shelf_height> - <shelf_depth>22,2000007629</shelf_depth> + <grossWeight>17,1000003815</grossWeight> + <netWeight>15,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>10,5</shelfWidth> + <shelfHeight>8,4600000381</shelfHeight> + <shelfDepth>22,2000007629</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Honey Dew</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Honey Dew</productName> <sku>81339898705</sku> <srp>2,7999999523</srp> - <gross_weight>7,2800002098</gross_weight> - <net_weight>6,2800002098</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>13,8000001907</shelf_width> - <shelf_height>12,5</shelf_height> - <shelf_depth>17,2000007629</shelf_depth> + <grossWeight>7,2800002098</grossWeight> + <netWeight>6,2800002098</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>13,8000001907</shelfWidth> + <shelfHeight>12,5</shelfHeight> + <shelfDepth>17,2000007629</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Fuji Apples</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Fuji Apples</productName> <sku>40964466929</sku> <srp>3,6300001144</srp> - <gross_weight>8,4799995422</gross_weight> - <net_weight>6,4699997902</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>20,8999996185</shelf_width> - <shelf_height>18,3999996185</shelf_height> - <shelf_depth>11,1999998093</shelf_depth> + <grossWeight>8,4799995422</grossWeight> + <netWeight>6,4699997902</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>20,8999996185</shelfWidth> + <shelfHeight>18,3999996185</shelfHeight> + <shelfDepth>11,1999998093</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Oranges</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Oranges</productName> <sku>98643655180</sku> <srp>1,7200000286</srp> - <gross_weight>11,3000001907</gross_weight> - <net_weight>9,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>7,7600002289</shelf_width> - <shelf_height>10,1999998093</shelf_height> - <shelf_depth>21,6000003815</shelf_depth> + <grossWeight>11,3000001907</grossWeight> + <netWeight>9,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>7,7600002289</shelfWidth> + <shelfHeight>10,1999998093</shelfHeight> + <shelfDepth>21,6000003815</shelfDepth> </Product> <Product> - <brand_name>Tell Tale</brand_name> - <product_name>Tell Tale Tangerines</product_name> + <brandName>Tell Tale</brandName> + <productName>Tell Tale Tangerines</productName> <sku>40600405335</sku> <srp>1,7400000095</srp> - <gross_weight>13,8000001907</gross_weight> - <net_weight>11,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>4,5700001717</shelf_width> - <shelf_height>13</shelf_height> - <shelf_depth>22,6000003815</shelf_depth> + <grossWeight>13,8000001907</grossWeight> + <netWeight>11,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>4,5700001717</shelfWidth> + <shelfHeight>13</shelfHeight> + <shelfDepth>22,6000003815</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Limes</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Limes</productName> <sku>41513032317</sku> <srp>2,4000000954</srp> - <gross_weight>13,6999998093</gross_weight> - <net_weight>12,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>5,2699999809</shelf_width> - <shelf_height>11,1999998093</shelf_height> - <shelf_depth>7,9099998474</shelf_depth> + <grossWeight>13,6999998093</grossWeight> + <netWeight>12,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>5,2699999809</shelfWidth> + <shelfHeight>11,1999998093</shelfHeight> + <shelfDepth>7,9099998474</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Macintosh Apples</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Macintosh Apples</productName> <sku>45675166249</sku> <srp>1,8200000525</srp> - <gross_weight>21</gross_weight> - <net_weight>20</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>5,1700000763</shelf_width> - <shelf_height>18,1000003815</shelf_height> - <shelf_depth>8,8100004196</shelf_depth> + <grossWeight>21</grossWeight> + <netWeight>20</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>5,1700000763</shelfWidth> + <shelfHeight>18,1000003815</shelfHeight> + <shelfDepth>8,8100004196</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Golden Delcious Apples</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Golden Delcious Apples</productName> <sku>69110903143</sku> <srp>1,9600000381</srp> - <gross_weight>7,6100001335</gross_weight> - <net_weight>4,6100001335</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>18,8999996185</shelf_width> - <shelf_height>14,1000003815</shelf_height> - <shelf_depth>12,3000001907</shelf_depth> + <grossWeight>7,6100001335</grossWeight> + <netWeight>4,6100001335</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>18,8999996185</shelfWidth> + <shelfHeight>14,1000003815</shelfHeight> + <shelfDepth>12,3000001907</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Red Delcious Apples</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Red Delcious Apples</productName> <sku>15641055703</sku> <srp>3,6099998951</srp> - <gross_weight>13,6999998093</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>22,2000007629</shelf_width> - <shelf_height>18,2000007629</shelf_height> - <shelf_depth>7,3400001526</shelf_depth> + <grossWeight>13,6999998093</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>22,2000007629</shelfWidth> + <shelfHeight>18,2000007629</shelfHeight> + <shelfDepth>7,3400001526</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Lemons</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Lemons</productName> <sku>32216688990</sku> <srp>1,7699999809</srp> - <gross_weight>17,1000003815</gross_weight> - <net_weight>16,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>13,3999996185</shelf_width> - <shelf_height>19,8999996185</shelf_height> - <shelf_depth>10,5</shelf_depth> + <grossWeight>17,1000003815</grossWeight> + <netWeight>16,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>13,3999996185</shelfWidth> + <shelfHeight>19,8999996185</shelfHeight> + <shelfDepth>10,5</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Fancy Plums</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Fancy Plums</productName> <sku>37984607815</sku> <srp>2,4400000572</srp> - <gross_weight>13,6999998093</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>9,7600002289</shelf_width> - <shelf_height>15,5</shelf_height> - <shelf_depth>8,4799995422</shelf_depth> + <grossWeight>13,6999998093</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>9,7600002289</shelfWidth> + <shelfHeight>15,5</shelfHeight> + <shelfDepth>8,4799995422</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Plums</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Plums</productName> <sku>89895877242</sku> <srp>2,8599998951</srp> - <gross_weight>9,3699998856</gross_weight> - <net_weight>7,3600001335</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>10,3999996185</shelf_width> - <shelf_height>9,9200000763</shelf_height> - <shelf_depth>19,2000007629</shelf_depth> + <grossWeight>9,3699998856</grossWeight> + <netWeight>7,3600001335</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>10,3999996185</shelfWidth> + <shelfHeight>9,9200000763</shelfHeight> + <shelfDepth>19,2000007629</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Peaches</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Peaches</productName> <sku>64901562333</sku> <srp>2,5599999428</srp> - <gross_weight>10,5</gross_weight> - <net_weight>8,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>7,3400001526</shelf_width> - <shelf_height>12,3999996185</shelf_height> - <shelf_depth>20,7000007629</shelf_depth> + <grossWeight>10,5</grossWeight> + <netWeight>8,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>7,3400001526</shelfWidth> + <shelfHeight>12,3999996185</shelfHeight> + <shelfDepth>20,7000007629</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Mandarin Oranges</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Mandarin Oranges</productName> <sku>19077008366</sku> <srp>2,9500000477</srp> - <gross_weight>15,1999998093</gross_weight> - <net_weight>13,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>3,5499999523</shelf_width> - <shelf_height>17,7999992371</shelf_height> - <shelf_depth>15,5</shelf_depth> + <grossWeight>15,1999998093</grossWeight> + <netWeight>13,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>3,5499999523</shelfWidth> + <shelfHeight>17,7999992371</shelfHeight> + <shelfDepth>15,5</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Cantelope</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Cantelope</productName> <sku>11386449933</sku> <srp>2,5699999332</srp> - <gross_weight>18</gross_weight> - <net_weight>16</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>21,2999992371</shelf_width> - <shelf_height>16,5</shelf_height> - <shelf_depth>7,6100001335</shelf_depth> + <grossWeight>18</grossWeight> + <netWeight>16</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>21,2999992371</shelfWidth> + <shelfHeight>16,5</shelfHeight> + <shelfDepth>7,6100001335</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Honey Dew</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Honey Dew</productName> <sku>96346654295</sku> <srp>1,4199999571</srp> - <gross_weight>9,6199998856</gross_weight> - <net_weight>7,6100001335</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>21,5</shelf_width> - <shelf_height>14</shelf_height> - <shelf_depth>4,6300001144</shelf_depth> + <grossWeight>9,6199998856</grossWeight> + <netWeight>7,6100001335</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>21,5</shelfWidth> + <shelfHeight>14</shelfHeight> + <shelfDepth>4,6300001144</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Fuji Apples</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Fuji Apples</productName> <sku>38303404450</sku> <srp>2,6900000572</srp> - <gross_weight>13,1000003815</gross_weight> - <net_weight>11,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>9,3299999237</shelf_width> - <shelf_height>11,1999998093</shelf_height> - <shelf_depth>20,3999996185</shelf_depth> + <grossWeight>13,1000003815</grossWeight> + <netWeight>11,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>9,3299999237</shelfWidth> + <shelfHeight>11,1999998093</shelfHeight> + <shelfDepth>20,3999996185</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Oranges</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Oranges</productName> <sku>93695891499</sku> <srp>3,1900000572</srp> - <gross_weight>9,1000003815</gross_weight> - <net_weight>7,0999999046</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>22,3999996185</shelf_width> - <shelf_height>14,8000001907</shelf_height> - <shelf_depth>12,8999996185</shelf_depth> + <grossWeight>9,1000003815</grossWeight> + <netWeight>7,0999999046</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>22,3999996185</shelfWidth> + <shelfHeight>14,8000001907</shelfHeight> + <shelfDepth>12,8999996185</shelfDepth> </Product> <Product> - <brand_name>Tri-State</brand_name> - <product_name>Tri-State Tangerines</product_name> + <brandName>Tri-State</brandName> + <productName>Tri-State Tangerines</productName> <sku>80544409155</sku> <srp>0,6200000048</srp> - <gross_weight>15,6000003815</gross_weight> - <net_weight>14,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>19</shelf_width> - <shelf_height>14,3999996185</shelf_height> - <shelf_depth>10,1999998093</shelf_depth> + <grossWeight>15,6000003815</grossWeight> + <netWeight>14,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>19</shelfWidth> + <shelfHeight>14,3999996185</shelfHeight> + <shelfDepth>10,1999998093</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Limes</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Limes</productName> <sku>88960998654</sku> <srp>1,6399999857</srp> - <gross_weight>17,2000007629</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>22,2999992371</shelf_width> - <shelf_height>8,1499996185</shelf_height> - <shelf_depth>14,6000003815</shelf_depth> + <grossWeight>17,2000007629</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>22,2999992371</shelfWidth> + <shelfHeight>8,1499996185</shelfHeight> + <shelfDepth>14,6000003815</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Macintosh Apples</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Macintosh Apples</productName> <sku>70929118990</sku> <srp>0,7400000095</srp> - <gross_weight>8,6899995804</gross_weight> - <net_weight>7,6799998283</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>10,1999998093</shelf_width> - <shelf_height>11,8000001907</shelf_height> - <shelf_depth>7,7699999809</shelf_depth> + <grossWeight>8,6899995804</grossWeight> + <netWeight>7,6799998283</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>10,1999998093</shelfWidth> + <shelfHeight>11,8000001907</shelfHeight> + <shelfDepth>7,7699999809</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Golden Delcious Apples</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Golden Delcious Apples</productName> <sku>81270440220</sku> <srp>1,2599999905</srp> - <gross_weight>7,0900001526</gross_weight> - <net_weight>6,0900001526</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>14,6999998093</shelf_width> - <shelf_height>18,6000003815</shelf_height> - <shelf_depth>5,1500000954</shelf_depth> + <grossWeight>7,0900001526</grossWeight> + <netWeight>6,0900001526</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>14,6999998093</shelfWidth> + <shelfHeight>18,6000003815</shelfHeight> + <shelfDepth>5,1500000954</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Red Delcious Apples</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Red Delcious Apples</productName> <sku>71657242178</sku> <srp>2,9600000381</srp> - <gross_weight>16,5</gross_weight> - <net_weight>14,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>22,2999992371</shelf_width> - <shelf_height>11,6999998093</shelf_height> - <shelf_depth>21,5</shelf_depth> + <grossWeight>16,5</grossWeight> + <netWeight>14,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>22,2999992371</shelfWidth> + <shelfHeight>11,6999998093</shelfHeight> + <shelfDepth>21,5</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Lemons</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Lemons</productName> <sku>75138459801</sku> <srp>3,9400000572</srp> - <gross_weight>6,7899999619</gross_weight> - <net_weight>4,7800002098</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>4,4800000191</shelf_width> - <shelf_height>22,3999996185</shelf_height> - <shelf_depth>6,5300002098</shelf_depth> + <grossWeight>6,7899999619</grossWeight> + <netWeight>4,7800002098</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>4,4800000191</shelfWidth> + <shelfHeight>22,3999996185</shelfHeight> + <shelfDepth>6,5300002098</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Fancy Plums</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Fancy Plums</productName> <sku>34763028025</sku> <srp>0,8700000048</srp> - <gross_weight>17,5</gross_weight> - <net_weight>14,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>20,5</shelf_width> - <shelf_height>14,6000003815</shelf_height> - <shelf_depth>22,5</shelf_depth> + <grossWeight>17,5</grossWeight> + <netWeight>14,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>20,5</shelfWidth> + <shelfHeight>14,6000003815</shelfHeight> + <shelfDepth>22,5</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Plums</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Plums</productName> <sku>62362840771</sku> <srp>2,7699999809</srp> - <gross_weight>17,3999996185</gross_weight> - <net_weight>16,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>10</shelf_width> - <shelf_height>11,5</shelf_height> - <shelf_depth>14,3999996185</shelf_depth> + <grossWeight>17,3999996185</grossWeight> + <netWeight>16,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>10</shelfWidth> + <shelfHeight>11,5</shelfHeight> + <shelfDepth>14,3999996185</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Peaches</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Peaches</productName> <sku>81225175261</sku> <srp>1,6200000048</srp> - <gross_weight>17,1000003815</gross_weight> - <net_weight>15,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>3,2899999619</shelf_width> - <shelf_height>10,6999998093</shelf_height> - <shelf_depth>3,8299999237</shelf_depth> + <grossWeight>17,1000003815</grossWeight> + <netWeight>15,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>3,2899999619</shelfWidth> + <shelfHeight>10,6999998093</shelfHeight> + <shelfDepth>3,8299999237</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Mandarin Oranges</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Mandarin Oranges</productName> <sku>77379896044</sku> <srp>3,1099998951</srp> - <gross_weight>17,6000003815</gross_weight> - <net_weight>16,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>18,7999992371</shelf_width> - <shelf_height>10,1999998093</shelf_height> - <shelf_depth>9,9300003052</shelf_depth> + <grossWeight>17,6000003815</grossWeight> + <netWeight>16,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>18,7999992371</shelfWidth> + <shelfHeight>10,1999998093</shelfHeight> + <shelfDepth>9,9300003052</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Cantelope</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Cantelope</productName> <sku>41213805079</sku> <srp>3,3399999142</srp> - <gross_weight>21,2999992371</gross_weight> - <net_weight>19,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>6,8099999428</shelf_width> - <shelf_height>7,1500000954</shelf_height> - <shelf_depth>21,2000007629</shelf_depth> + <grossWeight>21,2999992371</grossWeight> + <netWeight>19,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>6,8099999428</shelfWidth> + <shelfHeight>7,1500000954</shelfHeight> + <shelfDepth>21,2000007629</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Honey Dew</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Honey Dew</productName> <sku>77696750760</sku> <srp>2,9000000954</srp> - <gross_weight>21,6000003815</gross_weight> - <net_weight>18,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>19</shelf_width> - <shelf_height>7,4400000572</shelf_height> - <shelf_depth>8,0799999237</shelf_depth> + <grossWeight>21,6000003815</grossWeight> + <netWeight>18,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>19</shelfWidth> + <shelfHeight>7,4400000572</shelfHeight> + <shelfDepth>8,0799999237</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Fuji Apples</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Fuji Apples</productName> <sku>63510150313</sku> <srp>1,4299999475</srp> - <gross_weight>19,1000003815</gross_weight> - <net_weight>17,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>9,0200004578</shelf_width> - <shelf_height>6,4299998283</shelf_height> - <shelf_depth>8,2399997711</shelf_depth> + <grossWeight>19,1000003815</grossWeight> + <netWeight>17,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>9,0200004578</shelfWidth> + <shelfHeight>6,4299998283</shelfHeight> + <shelfDepth>8,2399997711</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Oranges</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Oranges</productName> <sku>59664871096</sku> <srp>2,5599999428</srp> - <gross_weight>15</gross_weight> - <net_weight>14</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>13,6000003815</shelf_width> - <shelf_height>11,1999998093</shelf_height> - <shelf_depth>20,6000003815</shelf_depth> + <grossWeight>15</grossWeight> + <netWeight>14</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>13,6000003815</shelfWidth> + <shelfHeight>11,1999998093</shelfHeight> + <shelfDepth>20,6000003815</shelfDepth> </Product> <Product> - <brand_name>Hermanos</brand_name> - <product_name>Hermanos Tangerines</product_name> + <brandName>Hermanos</brandName> + <productName>Hermanos Tangerines</productName> <sku>70006192326</sku> <srp>0,7300000191</srp> - <gross_weight>16,2000007629</gross_weight> - <net_weight>13,1999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>11,6999998093</shelf_width> - <shelf_height>16</shelf_height> - <shelf_depth>7,1900000572</shelf_depth> + <grossWeight>16,2000007629</grossWeight> + <netWeight>13,1999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>11,6999998093</shelfWidth> + <shelfHeight>16</shelfHeight> + <shelfDepth>7,1900000572</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Frozen Chicken</product_subcategory> <product_category>Meat</product_category> <product_department>Frozen Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Frozen Chicken Breast</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Frozen Chicken Breast</productName> <sku>71278085112</sku> <srp>2,2200000286</srp> - <gross_weight>8,3000001907</gross_weight> - <net_weight>6,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>18,8999996185</shelf_width> - <shelf_height>11,8000001907</shelf_height> - <shelf_depth>21,5</shelf_depth> + <grossWeight>8,3000001907</grossWeight> + <netWeight>6,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>18,8999996185</shelfWidth> + <shelfHeight>11,8000001907</shelfHeight> + <shelfDepth>21,5</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Frozen Chicken Breast</product_name> + <brandName>Golden</brandName> + <productName>Golden Frozen Chicken Breast</productName> <sku>11554356217</sku> <srp>2,8099999428</srp> - <gross_weight>14,6000003815</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>3</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>4,6999998093</shelf_width> - <shelf_height>3,3399999142</shelf_height> - <shelf_depth>4,4400000572</shelf_depth> + <grossWeight>14,6000003815</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>3</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>4,6999998093</shelfWidth> + <shelfHeight>3,3399999142</shelfHeight> + <shelfDepth>4,4400000572</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Frozen Chicken Thighs</product_name> + <brandName>Golden</brandName> + <productName>Golden Frozen Chicken Thighs</productName> <sku>29084437489</sku> <srp>2,3499999046</srp> - <gross_weight>12</gross_weight> - <net_weight>10</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>22,2999992371</shelf_width> - <shelf_height>10,1999998093</shelf_height> - <shelf_depth>6,75</shelf_depth> + <grossWeight>12</grossWeight> + <netWeight>10</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>22,2999992371</shelfWidth> + <shelfHeight>10,1999998093</shelfHeight> + <shelfDepth>6,75</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Frozen Chicken Wings</product_name> + <brandName>Golden</brandName> + <productName>Golden Frozen Chicken Wings</productName> <sku>52520174384</sku> <srp>3,4800000191</srp> - <gross_weight>15,3999996185</gross_weight> - <net_weight>13,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>22</shelf_width> - <shelf_height>10,6999998093</shelf_height> - <shelf_depth>10</shelf_depth> + <grossWeight>15,3999996185</grossWeight> + <netWeight>13,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>22</shelfWidth> + <shelfHeight>10,6999998093</shelfHeight> + <shelfDepth>10</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Frozen Chicken Breast</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Frozen Chicken Breast</productName> <sku>15639403462</sku> <srp>1,5099999905</srp> - <gross_weight>12,5</gross_weight> - <net_weight>10,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>20,2000007629</shelf_width> - <shelf_height>16,1000003815</shelf_height> - <shelf_depth>15,3000001907</shelf_depth> + <grossWeight>12,5</grossWeight> + <netWeight>10,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>20,2000007629</shelfWidth> + <shelfHeight>16,1000003815</shelfHeight> + <shelfDepth>15,3000001907</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Frozen Chicken Thighs</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Frozen Chicken Thighs</productName> <sku>14104428887</sku> <srp>2,2100000381</srp> - <gross_weight>19,5</gross_weight> - <net_weight>17,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>13</shelf_width> - <shelf_height>12,3999996185</shelf_height> - <shelf_depth>4,7399997711</shelf_depth> + <grossWeight>19,5</grossWeight> + <netWeight>17,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>13</shelfWidth> + <shelfHeight>12,3999996185</shelfHeight> + <shelfDepth>4,7399997711</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Frozen Chicken Wings</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Frozen Chicken Wings</productName> <sku>63728997111</sku> <srp>3,9300000668</srp> - <gross_weight>8,3500003815</gross_weight> - <net_weight>5,3499999046</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>19,2999992371</shelf_width> - <shelf_height>3,0699999332</shelf_height> - <shelf_depth>17,6000003815</shelf_depth> + <grossWeight>8,3500003815</grossWeight> + <netWeight>5,3499999046</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>19,2999992371</shelfWidth> + <shelfHeight>3,0699999332</shelfHeight> + <shelfDepth>17,6000003815</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Frozen Chicken Breast</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Frozen Chicken Breast</productName> <sku>89215400815</sku> <srp>3,4600000381</srp> - <gross_weight>11</gross_weight> - <net_weight>8</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>15,6000003815</shelf_width> - <shelf_height>22</shelf_height> - <shelf_depth>11,6999998093</shelf_depth> + <grossWeight>11</grossWeight> + <netWeight>8</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>15,6000003815</shelfWidth> + <shelfHeight>22</shelfHeight> + <shelfDepth>11,6999998093</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Frozen Chicken Thighs</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Frozen Chicken Thighs</productName> <sku>10967703461</sku> <srp>0,9100000262</srp> - <gross_weight>9,9099998474</gross_weight> - <net_weight>7,9000000954</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>21,7999992371</shelf_width> - <shelf_height>17</shelf_height> - <shelf_depth>8,2100000381</shelf_depth> + <grossWeight>9,9099998474</grossWeight> + <netWeight>7,9000000954</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>21,7999992371</shelfWidth> + <shelfHeight>17</shelfHeight> + <shelfDepth>8,2100000381</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Frozen Chicken Wings</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Frozen Chicken Wings</productName> <sku>89067804217</sku> <srp>1,9500000477</srp> - <gross_weight>16,6000003815</gross_weight> - <net_weight>13,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>2</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>15,5</shelf_width> - <shelf_height>3,3299999237</shelf_height> - <shelf_depth>20,5</shelf_depth> + <grossWeight>16,6000003815</grossWeight> + <netWeight>13,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>2</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>15,5</shelfWidth> + <shelfHeight>3,3299999237</shelfHeight> + <shelfDepth>20,5</shelfDepth> </Product> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Frozen Chicken Thighs</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Frozen Chicken Thighs</productName> <sku>62619335055</sku> <srp>2,9500000477</srp> - <gross_weight>6,1900000572</gross_weight> - <net_weight>4,1900000572</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>16,8999996185</shelf_width> - <shelf_height>6,5300002098</shelf_height> - <shelf_depth>3,7100000381</shelf_depth> + <grossWeight>6,1900000572</grossWeight> + <netWeight>4,1900000572</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>16,8999996185</shelfWidth> + <shelfHeight>6,5300002098</shelfHeight> + <shelfDepth>3,7100000381</shelfDepth> </Product> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Frozen Chicken Wings</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Frozen Chicken Wings</productName> <sku>72960656285</sku> <srp>3,6700000763</srp> - <gross_weight>7,8699998856</gross_weight> - <net_weight>5,8600001335</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>16</shelf_width> - <shelf_height>5,8000001907</shelf_height> - <shelf_depth>15</shelf_depth> + <grossWeight>7,8699998856</grossWeight> + <netWeight>5,8600001335</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>16</shelfWidth> + <shelfHeight>5,8000001907</shelfHeight> + <shelfDepth>15</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Frozen Chicken Breast</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Frozen Chicken Breast</productName> <sku>91584274172</sku> <srp>0,9300000072</srp> - <gross_weight>9,9200000763</gross_weight> - <net_weight>8,9200000763</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>19,2999992371</shelf_width> - <shelf_height>5,8899998665</shelf_height> - <shelf_depth>11,3000001907</shelf_depth> + <grossWeight>9,9200000763</grossWeight> + <netWeight>8,9200000763</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>19,2999992371</shelfWidth> + <shelfHeight>5,8899998665</shelfHeight> + <shelfDepth>11,3000001907</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Frozen Chicken Thighs</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Frozen Chicken Thighs</productName> <sku>87498926520</sku> <srp>1,2400000095</srp> - <gross_weight>21,5</gross_weight> - <net_weight>19,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>6,0700001717</shelf_width> - <shelf_height>8,1899995804</shelf_height> - <shelf_depth>9,2700004578</shelf_depth> + <grossWeight>21,5</grossWeight> + <netWeight>19,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>6,0700001717</shelfWidth> + <shelfHeight>8,1899995804</shelfHeight> + <shelfDepth>9,2700004578</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Frozen Chicken Wings</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Frozen Chicken Wings</productName> <sku>34029079079</sku> <srp>2,4200000763</srp> - <gross_weight>9,3999996185</gross_weight> - <net_weight>8,3900003433</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>18</shelf_width> - <shelf_height>19,7999992371</shelf_height> - <shelf_depth>19,8999996185</shelf_depth> + <grossWeight>9,3999996185</grossWeight> + <netWeight>8,3900003433</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>18</shelfWidth> + <shelfHeight>19,7999992371</shelfHeight> + <shelfDepth>19,8999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Batteries</product_subcategory> <product_category>Electrical</product_category> <product_department>Household</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny C-Size Batteries</product_name> + <brandName>Denny</brandName> + <productName>Denny C-Size Batteries</productName> <sku>94438348412</sku> <srp>3,8699998856</srp> - <gross_weight>17,3999996185</gross_weight> - <net_weight>15,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>9,6999998093</shelf_width> - <shelf_height>7,8600001335</shelf_height> - <shelf_depth>11</shelf_depth> + <grossWeight>17,3999996185</grossWeight> + <netWeight>15,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>9,6999998093</shelfWidth> + <shelfHeight>7,8600001335</shelfHeight> + <shelfDepth>11</shelfDepth> </Product> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny AAA-Size Batteries</product_name> + <brandName>Denny</brandName> + <productName>Denny AAA-Size Batteries</productName> <sku>26781900525</sku> <srp>2,7000000477</srp> - <gross_weight>12,3000001907</gross_weight> - <net_weight>10,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>16,2999992371</shelf_width> - <shelf_height>7,5799999237</shelf_height> - <shelf_depth>12,5</shelf_depth> + <grossWeight>12,3000001907</grossWeight> + <netWeight>10,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>16,2999992371</shelfWidth> + <shelfHeight>7,5799999237</shelfHeight> + <shelfDepth>12,5</shelfDepth> </Product> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny AA-Size Batteries</product_name> + <brandName>Denny</brandName> + <productName>Denny AA-Size Batteries</productName> <sku>90183742642</sku> <srp>3,8299999237</srp> - <gross_weight>14</gross_weight> - <net_weight>12</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>8,9499998093</shelf_width> - <shelf_height>12,1000003815</shelf_height> - <shelf_depth>11,8999996185</shelf_depth> + <grossWeight>14</grossWeight> + <netWeight>12</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>8,9499998093</shelfWidth> + <shelfHeight>12,1000003815</shelfHeight> + <shelfDepth>11,8999996185</shelfDepth> </Product> <Product> - <brand_name>Denny</brand_name> - <product_name>Denny D-Size Batteries</product_name> + <brandName>Denny</brandName> + <productName>Denny D-Size Batteries</productName> <sku>52095012068</sku> <srp>0,6399999857</srp> - <gross_weight>13</gross_weight> - <net_weight>12</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>5,4400000572</shelf_width> - <shelf_height>3,2200000286</shelf_height> - <shelf_depth>7,2399997711</shelf_depth> + <grossWeight>13</grossWeight> + <netWeight>12</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>5,4400000572</shelfWidth> + <shelfHeight>3,2200000286</shelfHeight> + <shelfDepth>7,2399997711</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality C-Size Batteries</product_name> + <brandName>High Quality</brandName> + <productName>High Quality C-Size Batteries</productName> <sku>64683445096</sku> <srp>3,1300001144</srp> - <gross_weight>19,2999992371</gross_weight> - <net_weight>18,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>6,3299999237</shelf_width> - <shelf_height>4,2399997711</shelf_height> - <shelf_depth>20,6000003815</shelf_depth> + <grossWeight>19,2999992371</grossWeight> + <netWeight>18,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>6,3299999237</shelfWidth> + <shelfHeight>4,2399997711</shelfHeight> + <shelfDepth>20,6000003815</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality AAA-Size Batteries</product_name> + <brandName>High Quality</brandName> + <productName>High Quality AAA-Size Batteries</productName> <sku>91600399613</sku> <srp>3,2400000095</srp> - <gross_weight>8,4799995422</gross_weight> - <net_weight>6,4699997902</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>9,7899999619</shelf_width> - <shelf_height>3,4700000286</shelf_height> - <shelf_depth>14</shelf_depth> + <grossWeight>8,4799995422</grossWeight> + <netWeight>6,4699997902</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>9,7899999619</shelfWidth> + <shelfHeight>3,4700000286</shelfHeight> + <shelfDepth>14</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality AA-Size Batteries</product_name> + <brandName>High Quality</brandName> + <productName>High Quality AA-Size Batteries</productName> <sku>39632063508</sku> <srp>1,3700000048</srp> - <gross_weight>10,1000003815</gross_weight> - <net_weight>7,0999999046</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>22,2999992371</shelf_width> - <shelf_height>8,0600004196</shelf_height> - <shelf_depth>13,5</shelf_depth> + <grossWeight>10,1000003815</grossWeight> + <netWeight>7,0999999046</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>22,2999992371</shelfWidth> + <shelfHeight>8,0600004196</shelfHeight> + <shelfDepth>13,5</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant C-Size Batteries</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant C-Size Batteries</productName> <sku>70693524479</sku> <srp>3,1900000572</srp> - <gross_weight>17,5</gross_weight> - <net_weight>14,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>13,3000001907</shelf_width> - <shelf_height>19,2999992371</shelf_height> - <shelf_depth>16,6000003815</shelf_depth> + <grossWeight>17,5</grossWeight> + <netWeight>14,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>13,3000001907</shelfWidth> + <shelfHeight>19,2999992371</shelfHeight> + <shelfDepth>16,6000003815</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant AAA-Size Batteries</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant AAA-Size Batteries</productName> <sku>40659413933</sku> <srp>1,8700000048</srp> - <gross_weight>21,7000007629</gross_weight> - <net_weight>18,7000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>12,6999998093</shelf_width> - <shelf_height>22,8999996185</shelf_height> - <shelf_depth>20,2999992371</shelf_depth> + <grossWeight>21,7000007629</grossWeight> + <netWeight>18,7000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>12,6999998093</shelfWidth> + <shelfHeight>22,8999996185</shelfHeight> + <shelfDepth>20,2999992371</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant AA-Size Batteries</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant AA-Size Batteries</productName> <sku>80159125924</sku> <srp>2,7599999905</srp> - <gross_weight>20,5</gross_weight> - <net_weight>18,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>10,8000001907</shelf_width> - <shelf_height>3,7699999809</shelf_height> - <shelf_depth>12,6999998093</shelf_depth> + <grossWeight>20,5</grossWeight> + <netWeight>18,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>10,8000001907</shelfWidth> + <shelfHeight>3,7699999809</shelfHeight> + <shelfDepth>12,6999998093</shelfDepth> </Product> <Product> - <brand_name>Cormorant</brand_name> - <product_name>Cormorant D-Size Batteries</product_name> + <brandName>Cormorant</brandName> + <productName>Cormorant D-Size Batteries</productName> <sku>96734759211</sku> <srp>0,5899999738</srp> - <gross_weight>21</gross_weight> - <net_weight>20</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>11,8999996185</shelf_width> - <shelf_height>7,1300001144</shelf_height> - <shelf_depth>12,6000003815</shelf_depth> + <grossWeight>21</grossWeight> + <netWeight>20</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>11,8999996185</shelfWidth> + <shelfHeight>7,1300001144</shelfHeight> + <shelfDepth>12,6000003815</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing C-Size Batteries</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing C-Size Batteries</productName> <sku>81231741309</sku> <srp>2,8800001144</srp> - <gross_weight>19,3999996185</gross_weight> - <net_weight>17,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>12,8000001907</shelf_width> - <shelf_height>18</shelf_height> - <shelf_depth>13</shelf_depth> + <grossWeight>19,3999996185</grossWeight> + <netWeight>17,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>12,8000001907</shelfWidth> + <shelfHeight>18</shelfHeight> + <shelfDepth>13</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing AAA-Size Batteries</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing AAA-Size Batteries</productName> <sku>20435397028</sku> <srp>3,6900000572</srp> - <gross_weight>10,3000001907</gross_weight> - <net_weight>8,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>5,9000000954</shelf_width> - <shelf_height>19,6000003815</shelf_height> - <shelf_depth>5,9299998283</shelf_depth> + <grossWeight>10,3000001907</grossWeight> + <netWeight>8,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>5,9000000954</shelfWidth> + <shelfHeight>19,6000003815</shelfHeight> + <shelfDepth>5,9299998283</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing AA-Size Batteries</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing AA-Size Batteries</productName> <sku>27677189707</sku> <srp>2,2599999905</srp> - <gross_weight>13,1999998093</gross_weight> - <net_weight>11,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>7,5100002289</shelf_width> - <shelf_height>9,8599996567</shelf_height> - <shelf_depth>9,9499998093</shelf_depth> + <grossWeight>13,1999998093</grossWeight> + <netWeight>11,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>7,5100002289</shelfWidth> + <shelfHeight>9,8599996567</shelfHeight> + <shelfDepth>9,9499998093</shelfDepth> </Product> <Product> - <brand_name>Red Wing</brand_name> - <product_name>Red Wing D-Size Batteries</product_name> + <brandName>Red Wing</brandName> + <productName>Red Wing D-Size Batteries</productName> <sku>66494043469</sku> <srp>1,5</srp> - <gross_weight>16,7999992371</gross_weight> - <net_weight>14,6999998093</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>17,3999996185</shelf_width> - <shelf_height>20,1000003815</shelf_height> - <shelf_depth>8,6999998093</shelf_depth> + <grossWeight>16,7999992371</grossWeight> + <netWeight>14,6999998093</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>17,3999996185</shelfWidth> + <shelfHeight>20,1000003815</shelfHeight> + <shelfDepth>8,6999998093</shelfDepth> </Product> <Product> - <brand_name>High Quality</brand_name> - <product_name>High Quality D-Size Batteries</product_name> + <brandName>High Quality</brandName> + <productName>High Quality D-Size Batteries</productName> <sku>27732164263</sku> <srp>2,2400000095</srp> - <gross_weight>6,8800001144</gross_weight> - <net_weight>4,8800001144</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>7,1999998093</shelf_width> - <shelf_height>8,9499998093</shelf_height> - <shelf_depth>14,5</shelf_depth> + <grossWeight>6,8800001144</grossWeight> + <netWeight>4,8800001144</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>7,1999998093</shelfWidth> + <shelfHeight>8,9499998093</shelfHeight> + <shelfDepth>14,5</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset C-Size Batteries</product_name> + <brandName>Sunset</brandName> + <productName>Sunset C-Size Batteries</productName> <sku>20421063303</sku> <srp>2,4000000954</srp> - <gross_weight>14,5</gross_weight> - <net_weight>12,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>14,6999998093</shelf_width> - <shelf_height>12,8000001907</shelf_height> - <shelf_depth>14,8000001907</shelf_depth> + <grossWeight>14,5</grossWeight> + <netWeight>12,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>14,6999998093</shelfWidth> + <shelfHeight>12,8000001907</shelfHeight> + <shelfDepth>14,8000001907</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset AAA-Size Batteries</product_name> + <brandName>Sunset</brandName> + <productName>Sunset AAA-Size Batteries</productName> <sku>12002381682</sku> <srp>3,4900000095</srp> - <gross_weight>10,8999996185</gross_weight> - <net_weight>8,8900003433</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>15,1000003815</shelf_width> - <shelf_height>10,3000001907</shelf_height> - <shelf_depth>5,9600000381</shelf_depth> + <grossWeight>10,8999996185</grossWeight> + <netWeight>8,8900003433</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>15,1000003815</shelfWidth> + <shelfHeight>10,3000001907</shelfHeight> + <shelfDepth>5,9600000381</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset AA-Size Batteries</product_name> + <brandName>Sunset</brandName> + <productName>Sunset AA-Size Batteries</productName> <sku>84551028609</sku> <srp>2,9500000477</srp> - <gross_weight>17,8999996185</gross_weight> - <net_weight>14,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>17,8999996185</shelf_width> - <shelf_height>13,1000003815</shelf_height> - <shelf_depth>3,7000000477</shelf_depth> + <grossWeight>17,8999996185</grossWeight> + <netWeight>14,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>17,8999996185</shelfWidth> + <shelfHeight>13,1000003815</shelfHeight> + <shelfDepth>3,7000000477</shelfDepth> </Product> <Product> - <brand_name>Sunset</brand_name> - <product_name>Sunset D-Size Batteries</product_name> + <brandName>Sunset</brandName> + <productName>Sunset D-Size Batteries</productName> <sku>59556713700</sku> <srp>2,6500000954</srp> - <gross_weight>15,1000003815</gross_weight> - <net_weight>12,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>4,1399998665</shelf_width> - <shelf_height>6,25</shelf_height> - <shelf_depth>19,5</shelf_depth> + <grossWeight>15,1000003815</grossWeight> + <netWeight>12,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>4,1399998665</shelfWidth> + <shelfHeight>6,25</shelfHeight> + <shelfDepth>19,5</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Maps</product_subcategory> <product_category>Miscellaneous</product_category> <product_department>Checkout</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Black Tie</brand_name> - <product_name>Black Tie City Map</product_name> + <brandName>Black Tie</brandName> + <productName>Black Tie City Map</productName> <sku>29412943720</sku> <srp>1,5700000525</srp> - <gross_weight>8,779999733</gross_weight> - <net_weight>7,7699999809</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>1</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>17,1000003815</shelf_width> - <shelf_height>16,7000007629</shelf_height> - <shelf_depth>3,2599999905</shelf_depth> + <grossWeight>8,779999733</grossWeight> + <netWeight>7,7699999809</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>1</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>17,1000003815</shelfWidth> + <shelfHeight>16,7000007629</shelfHeight> + <shelfDepth>3,2599999905</shelfDepth> </Product> <Product> - <brand_name>Queen</brand_name> - <product_name>Queen City Map</product_name> + <brandName>Queen</brandName> + <productName>Queen City Map</productName> <sku>89849260449</sku> <srp>2,8199999332</srp> - <gross_weight>13,6000003815</gross_weight> - <net_weight>11,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>3,4600000381</shelf_width> - <shelf_height>5,5799999237</shelf_height> - <shelf_depth>17,1000003815</shelf_depth> + <grossWeight>13,6000003815</grossWeight> + <netWeight>11,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>3,4600000381</shelfWidth> + <shelfHeight>5,5799999237</shelfHeight> + <shelfDepth>17,1000003815</shelfDepth> </Product> <Product> - <brand_name>Akron</brand_name> - <product_name>Akron City Map</product_name> + <brandName>Akron</brandName> + <productName>Akron City Map</productName> <sku>73539090752</sku> <srp>1,7400000095</srp> - <gross_weight>8,2399997711</gross_weight> - <net_weight>6,2300000191</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>19,8999996185</shelf_width> - <shelf_height>10</shelf_height> - <shelf_depth>19,3999996185</shelf_depth> + <grossWeight>8,2399997711</grossWeight> + <netWeight>6,2300000191</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>19,8999996185</shelfWidth> + <shelfHeight>10</shelfHeight> + <shelfDepth>19,3999996185</shelfDepth> </Product> <Product> - <brand_name>James Bay</brand_name> - <product_name>James Bay City Map</product_name> + <brandName>James Bay</brandName> + <productName>James Bay City Map</productName> <sku>10577946305</sku> <srp>1,7200000286</srp> - <gross_weight>10,1000003815</gross_weight> - <net_weight>7,0999999046</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>12,1000003815</shelf_width> - <shelf_height>19,2999992371</shelf_height> - <shelf_depth>3,4500000477</shelf_depth> + <grossWeight>10,1000003815</grossWeight> + <netWeight>7,0999999046</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>12,1000003815</shelfWidth> + <shelfHeight>19,2999992371</shelfHeight> + <shelfDepth>3,4500000477</shelfDepth> </Product> <Product> - <brand_name>Framton</brand_name> - <product_name>Framton City Map</product_name> + <brandName>Framton</brandName> + <productName>Framton City Map</productName> <sku>22711648344</sku> <srp>2,2999999523</srp> - <gross_weight>20,7000007629</gross_weight> - <net_weight>19,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>8,8199996948</shelf_width> - <shelf_height>3,4700000286</shelf_height> - <shelf_depth>15,1999998093</shelf_depth> + <grossWeight>20,7000007629</grossWeight> + <netWeight>19,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>8,8199996948</shelfWidth> + <shelfHeight>3,4700000286</shelfHeight> + <shelfDepth>15,1999998093</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Screwdrivers</product_subcategory> <product_category>Hardware</product_category> <product_department>Checkout</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Black Tie</brand_name> - <product_name>Black Tie Eyeglass Screwdriver</product_name> + <brandName>Black Tie</brandName> + <productName>Black Tie Eyeglass Screwdriver</productName> <sku>36739440560</sku> <srp>0,6700000167</srp> - <gross_weight>10,6000003815</gross_weight> - <net_weight>8,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>6,1900000572</shelf_width> - <shelf_height>12,3999996185</shelf_height> - <shelf_depth>17,6000003815</shelf_depth> + <grossWeight>10,6000003815</grossWeight> + <netWeight>8,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>6,1900000572</shelfWidth> + <shelfHeight>12,3999996185</shelfHeight> + <shelfDepth>17,6000003815</shelfDepth> </Product> <Product> - <brand_name>Queen</brand_name> - <product_name>Queen Eyeglass Screwdriver</product_name> + <brandName>Queen</brandName> + <productName>Queen Eyeglass Screwdriver</productName> <sku>86151577830</sku> <srp>0,8899999857</srp> - <gross_weight>8,6099996567</gross_weight> - <net_weight>5,5999999046</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>18,2999992371</shelf_width> - <shelf_height>6,3400001526</shelf_height> - <shelf_depth>8,6999998093</shelf_depth> + <grossWeight>8,6099996567</grossWeight> + <netWeight>5,5999999046</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>18,2999992371</shelfWidth> + <shelfHeight>6,3400001526</shelfHeight> + <shelfDepth>8,6999998093</shelfDepth> </Product> <Product> - <brand_name>Akron</brand_name> - <product_name>Akron Eyeglass Screwdriver</product_name> + <brandName>Akron</brandName> + <productName>Akron Eyeglass Screwdriver</productName> <sku>93960003256</sku> <srp>1,7599999905</srp> - <gross_weight>11,3999996185</gross_weight> - <net_weight>10,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>15,8000001907</shelf_width> - <shelf_height>4,6999998093</shelf_height> - <shelf_depth>18,3999996185</shelf_depth> + <grossWeight>11,3999996185</grossWeight> + <netWeight>10,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>15,8000001907</shelfWidth> + <shelfHeight>4,6999998093</shelfHeight> + <shelfDepth>18,3999996185</shelfDepth> </Product> <Product> - <brand_name>James Bay</brand_name> - <product_name>James Bay Eyeglass Screwdriver</product_name> + <brandName>James Bay</brandName> + <productName>James Bay Eyeglass Screwdriver</productName> <sku>35572261214</sku> <srp>3,7799999714</srp> - <gross_weight>18,2999992371</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>13,3000001907</shelf_width> - <shelf_height>22,1000003815</shelf_height> - <shelf_depth>5,8800001144</shelf_depth> + <grossWeight>18,2999992371</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>13,3000001907</shelfWidth> + <shelfHeight>22,1000003815</shelfHeight> + <shelfDepth>5,8800001144</shelfDepth> </Product> <Product> - <brand_name>Framton</brand_name> - <product_name>Framton Eyeglass Screwdriver</product_name> + <brandName>Framton</brandName> + <productName>Framton Eyeglass Screwdriver</productName> <sku>27751443982</sku> <srp>3,2100000381</srp> - <gross_weight>19,7999992371</gross_weight> - <net_weight>17,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>4,2100000381</shelf_width> - <shelf_height>21,1000003815</shelf_height> - <shelf_depth>20,5</shelf_depth> + <grossWeight>19,7999992371</grossWeight> + <netWeight>17,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>4,2100000381</shelfWidth> + <shelfHeight>21,1000003815</shelfHeight> + <shelfDepth>20,5</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Sports Magazines</product_subcategory> <product_category>Magazines</product_category> <product_department>Periodicals</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Robust</brand_name> - <product_name>Robust Monthly Sports Magazine</product_name> + <brandName>Robust</brandName> + <productName>Robust Monthly Sports Magazine</productName> <sku>11003258824</sku> <srp>2,4700000286</srp> - <gross_weight>11,1999998093</gross_weight> - <net_weight>10,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>31</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>6,6700000763</shelf_width> - <shelf_height>18,8999996185</shelf_height> - <shelf_depth>14,3999996185</shelf_depth> + <grossWeight>11,1999998093</grossWeight> + <netWeight>10,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>31</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>6,6700000763</shelfWidth> + <shelfHeight>18,8999996185</shelfHeight> + <shelfDepth>14,3999996185</shelfDepth> </Product> <Product> - <brand_name>Excel</brand_name> - <product_name>Excel Monthly Sports Magazine</product_name> + <brandName>Excel</brandName> + <productName>Excel Monthly Sports Magazine</productName> <sku>29210072159</sku> <srp>0,5500000119</srp> - <gross_weight>21</gross_weight> - <net_weight>19</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>9,9799995422</shelf_width> - <shelf_height>21,1000003815</shelf_height> - <shelf_depth>18,6000003815</shelf_depth> + <grossWeight>21</grossWeight> + <netWeight>19</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>9,9799995422</shelfWidth> + <shelfHeight>21,1000003815</shelfHeight> + <shelfDepth>18,6000003815</shelfDepth> </Product> <Product> - <brand_name>Dollar</brand_name> - <product_name>Dollar Monthly Sports Magazine</product_name> + <brandName>Dollar</brandName> + <productName>Dollar Monthly Sports Magazine</productName> <sku>70510522723</sku> <srp>0,8600000143</srp> - <gross_weight>19,1000003815</gross_weight> - <net_weight>18,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>7</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>20,3999996185</shelf_width> - <shelf_height>15</shelf_height> - <shelf_depth>14,6000003815</shelf_depth> + <grossWeight>19,1000003815</grossWeight> + <netWeight>18,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>7</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>20,3999996185</shelfWidth> + <shelfHeight>15</shelfHeight> + <shelfDepth>14,6000003815</shelfDepth> </Product> <Product> - <brand_name>Mighty Good</brand_name> - <product_name>Mighty Good Monthly Sports Magazine</product_name> + <brandName>Mighty Good</brandName> + <productName>Mighty Good Monthly Sports Magazine</productName> <sku>61808009743</sku> <srp>2,4500000477</srp> - <gross_weight>15</gross_weight> - <net_weight>14</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>11,6999998093</shelf_width> - <shelf_height>4,3099999428</shelf_height> - <shelf_depth>13,5</shelf_depth> + <grossWeight>15</grossWeight> + <netWeight>14</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>11,6999998093</shelfWidth> + <shelfHeight>4,3099999428</shelfHeight> + <shelfDepth>13,5</shelfDepth> </Product> <Product> - <brand_name>Gauss</brand_name> - <product_name>Gauss Monthly Sports Magazine</product_name> + <brandName>Gauss</brandName> + <productName>Gauss Monthly Sports Magazine</productName> <sku>83909401297</sku> <srp>3,7999999523</srp> - <gross_weight>13,6999998093</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>19,2000007629</shelf_width> - <shelf_height>8,720000267</shelf_height> - <shelf_depth>11,5</shelf_depth> + <grossWeight>13,6999998093</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>19,2000007629</shelfWidth> + <shelfHeight>8,720000267</shelfHeight> + <shelfDepth>11,5</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Home Magazines</product_subcategory> <product_category>Magazines</product_category> <product_department>Periodicals</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Robust</brand_name> - <product_name>Robust Monthly Home Magazine</product_name> + <brandName>Robust</brandName> + <productName>Robust Monthly Home Magazine</productName> <sku>54495846629</sku> <srp>1,9800000191</srp> - <gross_weight>19,5</gross_weight> - <net_weight>17,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>17,2000007629</shelf_width> - <shelf_height>5,1100001335</shelf_height> - <shelf_depth>11,8000001907</shelf_depth> + <grossWeight>19,5</grossWeight> + <netWeight>17,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>17,2000007629</shelfWidth> + <shelfHeight>5,1100001335</shelfHeight> + <shelfDepth>11,8000001907</shelfDepth> </Product> <Product> - <brand_name>Excel</brand_name> - <product_name>Excel Monthly Home Magazine</product_name> + <brandName>Excel</brandName> + <productName>Excel Monthly Home Magazine</productName> <sku>62304272055</sku> <srp>2,1500000954</srp> - <gross_weight>8,3900003433</gross_weight> - <net_weight>6,3899998665</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>22,8999996185</shelf_width> - <shelf_height>13,6000003815</shelf_height> - <shelf_depth>17,6000003815</shelf_depth> + <grossWeight>8,3900003433</grossWeight> + <netWeight>6,3899998665</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>22,8999996185</shelfWidth> + <shelfHeight>13,6000003815</shelfHeight> + <shelfDepth>17,6000003815</shelfDepth> </Product> <Product> - <brand_name>Dollar</brand_name> - <product_name>Dollar Monthly Home Magazine</product_name> + <brandName>Dollar</brandName> + <productName>Dollar Monthly Home Magazine</productName> <sku>41670928597</sku> <srp>1,6900000572</srp> - <gross_weight>13,1999998093</gross_weight> - <net_weight>12,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>9,0600004196</shelf_width> - <shelf_height>13,5</shelf_height> - <shelf_depth>16,5</shelf_depth> + <grossWeight>13,1999998093</grossWeight> + <netWeight>12,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>9,0600004196</shelfWidth> + <shelfHeight>13,5</shelfHeight> + <shelfDepth>16,5</shelfDepth> </Product> <Product> - <brand_name>Mighty Good</brand_name> - <product_name>Mighty Good Monthly Home Magazine</product_name> + <brandName>Mighty Good</brandName> + <productName>Mighty Good Monthly Home Magazine</productName> <sku>10943660140</sku> <srp>2,7000000477</srp> - <gross_weight>18,2999992371</gross_weight> - <net_weight>17,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>4</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>4,7300000191</shelf_width> - <shelf_height>16,7000007629</shelf_height> - <shelf_depth>12,5</shelf_depth> + <grossWeight>18,2999992371</grossWeight> + <netWeight>17,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>4</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>4,7300000191</shelfWidth> + <shelfHeight>16,7000007629</shelfHeight> + <shelfDepth>12,5</shelfDepth> </Product> <Product> - <brand_name>Gauss</brand_name> - <product_name>Gauss Monthly Home Magazine</product_name> + <brandName>Gauss</brandName> + <productName>Gauss Monthly Home Magazine</productName> <sku>85832040905</sku> <srp>1,6100000143</srp> - <gross_weight>13,3000001907</gross_weight> - <net_weight>12,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>16,6000003815</shelf_width> - <shelf_height>14,1999998093</shelf_height> - <shelf_depth>11,6999998093</shelf_depth> + <grossWeight>13,3000001907</grossWeight> + <netWeight>12,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>16,6000003815</shelfWidth> + <shelfHeight>14,1999998093</shelfHeight> + <shelfDepth>11,6999998093</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Fashion Magazines</product_subcategory> <product_category>Magazines</product_category> <product_department>Periodicals</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Robust</brand_name> - <product_name>Robust Monthly Fashion Magazine</product_name> + <brandName>Robust</brandName> + <productName>Robust Monthly Fashion Magazine</productName> <sku>57929857373</sku> <srp>3,2000000477</srp> - <gross_weight>9,5600004196</gross_weight> - <net_weight>8,5600004196</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>5,7399997711</shelf_width> - <shelf_height>4,4099998474</shelf_height> - <shelf_depth>9,9499998093</shelf_depth> + <grossWeight>9,5600004196</grossWeight> + <netWeight>8,5600004196</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>5,7399997711</shelfWidth> + <shelfHeight>4,4099998474</shelfHeight> + <shelfDepth>9,9499998093</shelfDepth> </Product> <Product> - <brand_name>Excel</brand_name> - <product_name>Excel Monthly Fashion Magazine</product_name> + <brandName>Excel</brandName> + <productName>Excel Monthly Fashion Magazine</productName> <sku>41883359551</sku> <srp>2,1300001144</srp> - <gross_weight>7,0999999046</gross_weight> - <net_weight>5,0900001526</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>14,3999996185</shelf_width> - <shelf_height>14,6000003815</shelf_height> - <shelf_depth>18</shelf_depth> + <grossWeight>7,0999999046</grossWeight> + <netWeight>5,0900001526</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>14,3999996185</shelfWidth> + <shelfHeight>14,6000003815</shelfHeight> + <shelfDepth>18</shelfDepth> </Product> <Product> - <brand_name>Dollar</brand_name> - <product_name>Dollar Monthly Fashion Magazine</product_name> + <brandName>Dollar</brandName> + <productName>Dollar Monthly Fashion Magazine</productName> <sku>23127390742</sku> <srp>2,8499999046</srp> - <gross_weight>14,1000003815</gross_weight> - <net_weight>12,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>5,3099999428</shelf_width> - <shelf_height>5,9000000954</shelf_height> - <shelf_depth>6,1300001144</shelf_depth> + <grossWeight>14,1000003815</grossWeight> + <netWeight>12,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>5,3099999428</shelfWidth> + <shelfHeight>5,9000000954</shelfHeight> + <shelfDepth>6,1300001144</shelfDepth> </Product> <Product> - <brand_name>Mighty Good</brand_name> - <product_name>Mighty Good Monthly Fashion Magazine</product_name> + <brandName>Mighty Good</brandName> + <productName>Mighty Good Monthly Fashion Magazine</productName> <sku>75949345231</sku> <srp>1,6399999857</srp> - <gross_weight>18,2999992371</gross_weight> - <net_weight>17,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>16,1000003815</shelf_width> - <shelf_height>17,8999996185</shelf_height> - <shelf_depth>12,3999996185</shelf_depth> + <grossWeight>18,2999992371</grossWeight> + <netWeight>17,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>16,1000003815</shelfWidth> + <shelfHeight>17,8999996185</shelfHeight> + <shelfDepth>12,3999996185</shelfDepth> </Product> <Product> - <brand_name>Gauss</brand_name> - <product_name>Gauss Monthly Fashion Magazine</product_name> + <brandName>Gauss</brandName> + <productName>Gauss Monthly Fashion Magazine</productName> <sku>80792245268</sku> <srp>0,8299999833</srp> - <gross_weight>15,6999998093</gross_weight> - <net_weight>13,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>6,5999999046</shelf_width> - <shelf_height>4,3899998665</shelf_height> - <shelf_depth>10,8999996185</shelf_depth> + <grossWeight>15,6999998093</grossWeight> + <netWeight>13,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>6,5999999046</shelfWidth> + <shelfHeight>4,3899998665</shelfHeight> + <shelfDepth>10,8999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Computer Magazines</product_subcategory> <product_category>Magazines</product_category> <product_department>Periodicals</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Robust</brand_name> - <product_name>Robust Monthly Computer Magazine</product_name> + <brandName>Robust</brandName> + <productName>Robust Monthly Computer Magazine</productName> <sku>94871278405</sku> <srp>1,2599999905</srp> - <gross_weight>10,3999996185</gross_weight> - <net_weight>8,3900003433</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>11,6000003815</shelf_width> - <shelf_height>8,9200000763</shelf_height> - <shelf_depth>9,6700000763</shelf_depth> + <grossWeight>10,3999996185</grossWeight> + <netWeight>8,3900003433</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>11,6000003815</shelfWidth> + <shelfHeight>8,9200000763</shelfHeight> + <shelfDepth>9,6700000763</shelfDepth> </Product> <Product> - <brand_name>Excel</brand_name> - <product_name>Excel Monthly Computer Magazine</product_name> + <brandName>Excel</brandName> + <productName>Excel Monthly Computer Magazine</productName> <sku>84602559208</sku> <srp>0,7699999809</srp> - <gross_weight>12,3999996185</gross_weight> - <net_weight>9,3900003433</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>3,6099998951</shelf_width> - <shelf_height>19,3999996185</shelf_height> - <shelf_depth>6,3699998856</shelf_depth> + <grossWeight>12,3999996185</grossWeight> + <netWeight>9,3900003433</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>3,6099998951</shelfWidth> + <shelfHeight>19,3999996185</shelfHeight> + <shelfDepth>6,3699998856</shelfDepth> </Product> <Product> - <brand_name>Dollar</brand_name> - <product_name>Dollar Monthly Computer Magazine</product_name> + <brandName>Dollar</brandName> + <productName>Dollar Monthly Computer Magazine</productName> <sku>71238645911</sku> <srp>2,1500000954</srp> - <gross_weight>16,3999996185</gross_weight> - <net_weight>14,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>4,9499998093</shelf_width> - <shelf_height>8,1999998093</shelf_height> - <shelf_depth>15,5</shelf_depth> + <grossWeight>16,3999996185</grossWeight> + <netWeight>14,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>4,9499998093</shelfWidth> + <shelfHeight>8,1999998093</shelfHeight> + <shelfDepth>15,5</shelfDepth> </Product> <Product> - <brand_name>Mighty Good</brand_name> - <product_name>Mighty Good Monthly Computer Magazine</product_name> + <brandName>Mighty Good</brandName> + <productName>Mighty Good Monthly Computer Magazine</productName> <sku>60249431729</sku> <srp>1,5199999809</srp> - <gross_weight>6,5</gross_weight> - <net_weight>4,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>5,4200000763</shelf_width> - <shelf_height>22,5</shelf_height> - <shelf_depth>21,2000007629</shelf_depth> + <grossWeight>6,5</grossWeight> + <netWeight>4,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>5,4200000763</shelfWidth> + <shelfHeight>22,5</shelfHeight> + <shelfDepth>21,2000007629</shelfDepth> </Product> <Product> - <brand_name>Gauss</brand_name> - <product_name>Gauss Monthly Computer Magazine</product_name> + <brandName>Gauss</brandName> + <productName>Gauss Monthly Computer Magazine</productName> <sku>23113057017</sku> <srp>3,6099998951</srp> - <gross_weight>15,6000003815</gross_weight> - <net_weight>13,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>29</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>6,9699997902</shelf_width> - <shelf_height>22,1000003815</shelf_height> - <shelf_depth>20,8999996185</shelf_depth> + <grossWeight>15,6000003815</grossWeight> + <netWeight>13,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>29</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>6,9699997902</shelfWidth> + <shelfHeight>22,1000003815</shelfHeight> + <shelfDepth>20,8999996185</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Auto Magazines</product_subcategory> <product_category>Magazines</product_category> <product_department>Periodicals</product_department> - <product_family>Non-Consumable</product_family> + <productFamily>Non-Consumable</productFamily> <Product> - <brand_name>Robust</brand_name> - <product_name>Robust Monthly Auto Magazine</product_name> + <brandName>Robust</brandName> + <productName>Robust Monthly Auto Magazine</productName> <sku>91390060782</sku> <srp>0,6000000238</srp> - <gross_weight>14,3999996185</gross_weight> - <net_weight>13,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>13,8000001907</shelf_width> - <shelf_height>5,8800001144</shelf_height> - <shelf_depth>18,2999992371</shelf_depth> + <grossWeight>14,3999996185</grossWeight> + <netWeight>13,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>13,8000001907</shelfWidth> + <shelfHeight>5,8800001144</shelfHeight> + <shelfDepth>18,2999992371</shelfDepth> </Product> <Product> - <brand_name>Excel</brand_name> - <product_name>Excel Monthly Auto Magazine</product_name> + <brandName>Excel</brandName> + <productName>Excel Monthly Auto Magazine</productName> <sku>50359107851</sku> <srp>3,6199998856</srp> - <gross_weight>19,7000007629</gross_weight> - <net_weight>18,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>21,3999996185</shelf_width> - <shelf_height>22,1000003815</shelf_height> - <shelf_depth>19</shelf_depth> + <grossWeight>19,7000007629</grossWeight> + <netWeight>18,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>21,3999996185</shelfWidth> + <shelfHeight>22,1000003815</shelfHeight> + <shelfDepth>19</shelfDepth> </Product> <Product> - <brand_name>Dollar</brand_name> - <product_name>Dollar Monthly Auto Magazine</product_name> + <brandName>Dollar</brandName> + <productName>Dollar Monthly Auto Magazine</productName> <sku>47802909016</sku> <srp>2,9100000858</srp> - <gross_weight>10,8000001907</gross_weight> - <net_weight>8,8000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>19,2000007629</shelf_width> - <shelf_height>12,1999998093</shelf_height> - <shelf_depth>12,1999998093</shelf_depth> + <grossWeight>10,8000001907</grossWeight> + <netWeight>8,8000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>19,2000007629</shelfWidth> + <shelfHeight>12,1999998093</shelfHeight> + <shelfDepth>12,1999998093</shelfDepth> </Product> <Product> - <brand_name>Mighty Good</brand_name> - <product_name>Mighty Good Monthly Auto Magazine</product_name> + <brandName>Mighty Good</brandName> + <productName>Mighty Good Monthly Auto Magazine</productName> <sku>54481512904</sku> <srp>1,8500000238</srp> - <gross_weight>13,6999998093</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>3,2899999619</shelf_width> - <shelf_height>5,3200001717</shelf_height> - <shelf_depth>13,8999996185</shelf_depth> + <grossWeight>13,6999998093</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>3,2899999619</shelfWidth> + <shelfHeight>5,3200001717</shelfHeight> + <shelfDepth>13,8999996185</shelfDepth> </Product> <Product> - <brand_name>Gauss</brand_name> - <product_name>Gauss Monthly Auto Magazine</product_name> + <brandName>Gauss</brandName> + <productName>Gauss Monthly Auto Magazine</productName> <sku>63488488793</sku> <srp>2,7799999714</srp> - <gross_weight>16,1000003815</gross_weight> - <net_weight>15,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>9,1899995804</shelf_width> - <shelf_height>18,7999992371</shelf_height> - <shelf_depth>10,8000001907</shelf_depth> + <grossWeight>16,1000003815</grossWeight> + <netWeight>15,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>9,1899995804</shelfWidth> + <shelfHeight>18,7999992371</shelfHeight> + <shelfDepth>10,8000001907</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Dried Fruit</product_subcategory> <product_category>Snack Foods</product_category> <product_department>Snack Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Raisins</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Raisins</productName> <sku>32616745829</sku> <srp>1,5900000334</srp> - <gross_weight>20</gross_weight> - <net_weight>18</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>16,1000003815</shelf_width> - <shelf_height>20,6000003815</shelf_height> - <shelf_depth>6,2699999809</shelf_depth> + <grossWeight>20</grossWeight> + <netWeight>18</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>16,1000003815</shelfWidth> + <shelfHeight>20,6000003815</shelfHeight> + <shelfDepth>6,2699999809</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Golden Raisins</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Golden Raisins</productName> <sku>95335729718</sku> <srp>2,5899999142</srp> - <gross_weight>13,3999996185</gross_weight> - <net_weight>12,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>14,1999998093</shelf_width> - <shelf_height>6,0500001907</shelf_height> - <shelf_depth>10,1999998093</shelf_depth> + <grossWeight>13,3999996185</grossWeight> + <netWeight>12,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>14,1999998093</shelfWidth> + <shelfHeight>6,0500001907</shelfHeight> + <shelfDepth>10,1999998093</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Dried Apricots</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Dried Apricots</productName> <sku>78815221190</sku> <srp>2,4400000572</srp> - <gross_weight>18,6000003815</gross_weight> - <net_weight>16,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>3,8800001144</shelf_width> - <shelf_height>6,6999998093</shelf_height> - <shelf_depth>22,8999996185</shelf_depth> + <grossWeight>18,6000003815</grossWeight> + <netWeight>16,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>3,8800001144</shelfWidth> + <shelfHeight>6,6999998093</shelfHeight> + <shelfDepth>22,8999996185</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Dried Apples</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Dried Apples</productName> <sku>72628116011</sku> <srp>2,1099998951</srp> - <gross_weight>6,5999999046</gross_weight> - <net_weight>3,5899999142</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>16,6000003815</shelf_width> - <shelf_height>20,2000007629</shelf_height> - <shelf_depth>16,7000007629</shelf_depth> + <grossWeight>6,5999999046</grossWeight> + <netWeight>3,5899999142</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>16,6000003815</shelfWidth> + <shelfHeight>20,2000007629</shelfHeight> + <shelfDepth>16,7000007629</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Apple Fruit Roll</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Apple Fruit Roll</productName> <sku>47633801102</sku> <srp>2,7000000477</srp> - <gross_weight>7,2899999619</gross_weight> - <net_weight>4,2800002098</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>12,5</shelf_width> - <shelf_height>8,3599996567</shelf_height> - <shelf_depth>13,3999996185</shelf_depth> + <grossWeight>7,2899999619</grossWeight> + <netWeight>4,2800002098</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>12,5</shelfWidth> + <shelfHeight>8,3599996567</shelfHeight> + <shelfDepth>13,3999996185</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Strawberry Fruit Roll</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Strawberry Fruit Roll</productName> <sku>68782836794</sku> <srp>1,4900000095</srp> - <gross_weight>9,8999996185</gross_weight> - <net_weight>6,8899998665</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>5,8099999428</shelf_width> - <shelf_height>17,6000003815</shelf_height> - <shelf_depth>12</shelf_depth> + <grossWeight>9,8999996185</grossWeight> + <netWeight>6,8899998665</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>5,8099999428</shelfWidth> + <shelfHeight>17,6000003815</shelfHeight> + <shelfDepth>12</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Raspberry Fruit Roll</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Raspberry Fruit Roll</productName> <sku>13026288151</sku> <srp>3,2100000381</srp> - <gross_weight>18,7999992371</gross_weight> - <net_weight>17,7000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>22,8999996185</shelf_width> - <shelf_height>8,5900001526</shelf_height> - <shelf_depth>11,1000003815</shelf_depth> + <grossWeight>18,7999992371</grossWeight> + <netWeight>17,7000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>22,8999996185</shelfWidth> + <shelfHeight>8,5900001526</shelfHeight> + <shelfDepth>11,1000003815</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Grape Fruit Roll</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Grape Fruit Roll</productName> <sku>93413090109</sku> <srp>1,7799999714</srp> - <gross_weight>13</gross_weight> - <net_weight>10</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>8,470000267</shelf_width> - <shelf_height>14,1000003815</shelf_height> - <shelf_depth>12,1000003815</shelf_depth> + <grossWeight>13</grossWeight> + <netWeight>10</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>8,470000267</shelfWidth> + <shelfHeight>14,1000003815</shelfHeight> + <shelfDepth>12,1000003815</shelfDepth> </Product> <Product> - <brand_name>Best Choice</brand_name> - <product_name>Best Choice Dried Dates</product_name> + <brandName>Best Choice</brandName> + <productName>Best Choice Dried Dates</productName> <sku>72992177605</sku> <srp>0,8600000143</srp> - <gross_weight>14,6999998093</gross_weight> - <net_weight>12,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>7,3699998856</shelf_width> - <shelf_height>4,4800000191</shelf_height> - <shelf_depth>8,5399999619</shelf_depth> + <grossWeight>14,6999998093</grossWeight> + <netWeight>12,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>7,3699998856</shelfWidth> + <shelfHeight>4,4800000191</shelfHeight> + <shelfDepth>8,5399999619</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Dried Apples</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Dried Apples</productName> <sku>88548228144</sku> <srp>2,7899999619</srp> - <gross_weight>9,6300001144</gross_weight> - <net_weight>7,6300001144</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>12,6000003815</shelf_width> - <shelf_height>6,3899998665</shelf_height> - <shelf_depth>3,2000000477</shelf_depth> + <grossWeight>9,6300001144</grossWeight> + <netWeight>7,6300001144</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>12,6000003815</shelfWidth> + <shelfHeight>6,3899998665</shelfHeight> + <shelfDepth>3,2000000477</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Apple Fruit Roll</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Apple Fruit Roll</productName> <sku>94316146969</sku> <srp>3,4600000381</srp> - <gross_weight>11,1999998093</gross_weight> - <net_weight>10,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>26</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>13,1999998093</shelf_width> - <shelf_height>16,7000007629</shelf_height> - <shelf_depth>14,5</shelf_depth> + <grossWeight>11,1999998093</grossWeight> + <netWeight>10,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>26</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>13,1999998093</shelfWidth> + <shelfHeight>16,7000007629</shelfHeight> + <shelfDepth>14,5</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Strawberry Fruit Roll</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Strawberry Fruit Roll</productName> <sku>56227416396</sku> <srp>1,8799999952</srp> - <gross_weight>12,3000001907</gross_weight> - <net_weight>11,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>12,5</shelf_width> - <shelf_height>19,3999996185</shelf_height> - <shelf_depth>8,4799995422</shelf_depth> + <grossWeight>12,3000001907</grossWeight> + <netWeight>11,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>12,5</shelfWidth> + <shelfHeight>19,3999996185</shelfHeight> + <shelfDepth>8,4799995422</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Raspberry Fruit Roll</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Raspberry Fruit Roll</productName> <sku>31233101487</sku> <srp>3,5799999237</srp> - <gross_weight>14,3999996185</gross_weight> - <net_weight>12,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>15,3000001907</shelf_width> - <shelf_height>6,5199999809</shelf_height> - <shelf_depth>9,720000267</shelf_depth> + <grossWeight>14,3999996185</grossWeight> + <netWeight>12,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>15,3000001907</shelfWidth> + <shelfHeight>6,5199999809</shelfHeight> + <shelfDepth>9,720000267</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Grape Fruit Roll</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Grape Fruit Roll</productName> <sku>52382137179</sku> <srp>2,1199998856</srp> - <gross_weight>17</gross_weight> - <net_weight>15</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>9,3000001907</shelf_width> - <shelf_height>11,3999996185</shelf_height> - <shelf_depth>8,3000001907</shelf_depth> + <grossWeight>17</grossWeight> + <netWeight>15</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>9,3000001907</shelfWidth> + <shelfHeight>11,3999996185</shelfHeight> + <shelfDepth>8,3000001907</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Dried Dates</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Dried Dates</productName> <sku>86625588536</sku> <srp>1,9700000286</srp> - <gross_weight>20</gross_weight> - <net_weight>18</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>14,8000001907</shelf_width> - <shelf_height>11,8000001907</shelf_height> - <shelf_depth>14,1999998093</shelf_depth> + <grossWeight>20</grossWeight> + <netWeight>18</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>14,8000001907</shelfWidth> + <shelfHeight>11,8000001907</shelfHeight> + <shelfDepth>14,1999998093</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Raisins</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Raisins</productName> <sku>40425171256</sku> <srp>2,5399999619</srp> - <gross_weight>17,1000003815</gross_weight> - <net_weight>14,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>22,3999996185</shelf_width> - <shelf_height>5,2899999619</shelf_height> - <shelf_depth>9,5399999619</shelf_depth> + <grossWeight>17,1000003815</grossWeight> + <netWeight>14,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>22,3999996185</shelfWidth> + <shelfHeight>5,2899999619</shelfHeight> + <shelfDepth>9,5399999619</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Golden Raisins</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Golden Raisins</productName> <sku>43906388878</sku> <srp>2,5199999809</srp> - <gross_weight>19,2000007629</gross_weight> - <net_weight>16,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>4,0799999237</shelf_width> - <shelf_height>19</shelf_height> - <shelf_depth>20,7000007629</shelf_depth> + <grossWeight>19,2000007629</grossWeight> + <netWeight>16,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>4,0799999237</shelfWidth> + <shelfHeight>19</shelfHeight> + <shelfDepth>20,7000007629</shelfDepth> </Product> <Product> - <brand_name>Nationeel</brand_name> - <product_name>Nationeel Dried Apricots</product_name> + <brandName>Nationeel</brandName> + <productName>Nationeel Dried Apricots</productName> <sku>69628826975</sku> <srp>2,3499999046</srp> - <gross_weight>13,3999996185</gross_weight> - <net_weight>12,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>18,7999992371</shelf_width> - <shelf_height>18,8999996185</shelf_height> - <shelf_depth>21,8999996185</shelf_depth> + <grossWeight>13,3999996185</grossWeight> + <netWeight>12,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>18,7999992371</shelfWidth> + <shelfHeight>18,8999996185</shelfHeight> + <shelfDepth>21,8999996185</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Dried Apples</product_name> + <brandName>Fast</brandName> + <productName>Fast Dried Apples</productName> <sku>57516496777</sku> <srp>3,1400001049</srp> - <gross_weight>13,1000003815</gross_weight> - <net_weight>12,1000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>17,2999992371</shelf_width> - <shelf_height>14,3999996185</shelf_height> - <shelf_depth>6,8499999046</shelf_depth> + <grossWeight>13,1000003815</grossWeight> + <netWeight>12,1000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>17,2999992371</shelfWidth> + <shelfHeight>14,3999996185</shelfHeight> + <shelfDepth>6,8499999046</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Apple Fruit Roll</product_name> + <brandName>Fast</brandName> + <productName>Fast Apple Fruit Roll</productName> <sku>76378831267</sku> <srp>2,8800001144</srp> - <gross_weight>19,2999992371</gross_weight> - <net_weight>18,2000007629</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>10,6000003815</shelf_width> - <shelf_height>12,8999996185</shelf_height> - <shelf_depth>19,2000007629</shelf_depth> + <grossWeight>19,2999992371</grossWeight> + <netWeight>18,2000007629</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>10,6000003815</shelfWidth> + <shelfHeight>12,8999996185</shelfHeight> + <shelfDepth>19,2000007629</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Strawberry Fruit Roll</product_name> + <brandName>Fast</brandName> + <productName>Fast Strawberry Fruit Roll</productName> <sku>18335581421</sku> <srp>3,25</srp> - <gross_weight>11,3000001907</gross_weight> - <net_weight>8,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>24</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>3,9500000477</shelf_width> - <shelf_height>17,1000003815</shelf_height> - <shelf_depth>3,6700000763</shelf_depth> + <grossWeight>11,3000001907</grossWeight> + <netWeight>8,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>24</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>3,9500000477</shelfWidth> + <shelfHeight>17,1000003815</shelfHeight> + <shelfDepth>3,6700000763</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Raspberry Fruit Roll</product_name> + <brandName>Fast</brandName> + <productName>Fast Raspberry Fruit Roll</productName> <sku>72533552050</sku> <srp>1,3600000143</srp> - <gross_weight>18,3999996185</gross_weight> - <net_weight>15,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>18</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>20,7999992371</shelf_width> - <shelf_height>4,5300002098</shelf_height> - <shelf_depth>20,7999992371</shelf_depth> + <grossWeight>18,3999996185</grossWeight> + <netWeight>15,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>18</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>20,7999992371</shelfWidth> + <shelfHeight>4,5300002098</shelfHeight> + <shelfDepth>20,7999992371</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Grape Fruit Roll</product_name> + <brandName>Fast</brandName> + <productName>Fast Grape Fruit Roll</productName> <sku>49825938344</sku> <srp>0,8000000119</srp> - <gross_weight>15</gross_weight> - <net_weight>13</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>16</shelf_width> - <shelf_height>6,7899999619</shelf_height> - <shelf_depth>8,7700004578</shelf_depth> + <grossWeight>15</grossWeight> + <netWeight>13</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>16</shelfWidth> + <shelfHeight>6,7899999619</shelfHeight> + <shelfDepth>8,7700004578</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Dried Dates</product_name> + <brandName>Fast</brandName> + <productName>Fast Dried Dates</productName> <sku>97163805365</sku> <srp>3,7799999714</srp> - <gross_weight>19,8999996185</gross_weight> - <net_weight>17,7999992371</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>20</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>20,7000007629</shelf_width> - <shelf_height>17,2999992371</shelf_height> - <shelf_depth>6,6399998665</shelf_depth> + <grossWeight>19,8999996185</grossWeight> + <netWeight>17,7999992371</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>20</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>20,7000007629</shelfWidth> + <shelfHeight>17,2999992371</shelfHeight> + <shelfDepth>6,6399998665</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Raisins</product_name> + <brandName>Fast</brandName> + <productName>Fast Raisins</productName> <sku>43693957924</sku> <srp>1,2000000477</srp> - <gross_weight>15</gross_weight> - <net_weight>12</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>6,5500001907</shelf_width> - <shelf_height>7,0599999428</shelf_height> - <shelf_depth>5,4499998093</shelf_depth> + <grossWeight>15</grossWeight> + <netWeight>12</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>6,5500001907</shelfWidth> + <shelfHeight>7,0599999428</shelfHeight> + <shelfDepth>5,4499998093</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Golden Raisins</product_name> + <brandName>Fast</brandName> + <productName>Fast Golden Raisins</productName> <sku>36367461085</sku> <srp>0,7699999809</srp> - <gross_weight>15,6999998093</gross_weight> - <net_weight>13,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>9</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>12,3999996185</shelf_width> - <shelf_height>20,7000007629</shelf_height> - <shelf_depth>4,6100001335</shelf_depth> + <grossWeight>15,6999998093</grossWeight> + <netWeight>13,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>9</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>12,3999996185</shelfWidth> + <shelfHeight>20,7000007629</shelfHeight> + <shelfDepth>4,6100001335</shelfDepth> </Product> <Product> - <brand_name>Fast</brand_name> - <product_name>Fast Dried Apricots</product_name> + <brandName>Fast</brandName> + <productName>Fast Dried Apricots</productName> <sku>42135379910</sku> <srp>0,5899999738</srp> - <gross_weight>17,7999992371</gross_weight> - <net_weight>15,6999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>13,8000001907</shelf_width> - <shelf_height>5,5799999237</shelf_height> - <shelf_depth>20,7999992371</shelf_depth> + <grossWeight>17,7999992371</grossWeight> + <netWeight>15,6999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>13,8000001907</shelfWidth> + <shelfHeight>5,5799999237</shelfHeight> + <shelfDepth>20,7999992371</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Dried Apples</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Dried Apples</productName> <sku>92670633196</sku> <srp>1,7699999809</srp> - <gross_weight>20,8999996185</gross_weight> - <net_weight>19,7999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>15</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>14,3999996185</shelf_width> - <shelf_height>9,720000267</shelf_height> - <shelf_depth>17,5</shelf_depth> + <grossWeight>20,8999996185</grossWeight> + <netWeight>19,7999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>15</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>14,3999996185</shelfWidth> + <shelfHeight>9,720000267</shelfHeight> + <shelfDepth>17,5</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Apple Fruit Roll</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Apple Fruit Roll</productName> <sku>69963019490</sku> <srp>1,3999999762</srp> - <gross_weight>7,8699998856</gross_weight> - <net_weight>6,8600001335</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>21,7999992371</shelf_width> - <shelf_height>19</shelf_height> - <shelf_depth>13,3999996185</shelf_depth> + <grossWeight>7,8699998856</grossWeight> + <netWeight>6,8600001335</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>21,7999992371</shelfWidth> + <shelfHeight>19</shelfHeight> + <shelfDepth>13,3999996185</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Strawberry Fruit Roll</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Strawberry Fruit Roll</productName> <sku>27300886511</sku> <srp>1,5399999619</srp> - <gross_weight>7,7100000381</gross_weight> - <net_weight>6,7100000381</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>25</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>21,8999996185</shelf_width> - <shelf_height>17,1000003815</shelf_height> - <shelf_depth>7,9200000763</shelf_depth> + <grossWeight>7,7100000381</grossWeight> + <netWeight>6,7100000381</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>25</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>21,8999996185</shelfWidth> + <shelfHeight>17,1000003815</shelfHeight> + <shelfDepth>7,9200000763</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Raspberry Fruit Roll</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Raspberry Fruit Roll</productName> <sku>63831039071</sku> <srp>2,8399999142</srp> - <gross_weight>11,1000003815</gross_weight> - <net_weight>8,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>22</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>11,5</shelf_width> - <shelf_height>3,2000000477</shelf_height> - <shelf_depth>13,6999998093</shelf_depth> + <grossWeight>11,1000003815</grossWeight> + <netWeight>8,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>22</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>11,5</shelfWidth> + <shelfHeight>3,2000000477</shelfHeight> + <shelfDepth>13,6999998093</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Grape Fruit Roll</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Grape Fruit Roll</productName> <sku>56504542231</sku> <srp>1,3500000238</srp> - <gross_weight>16,3999996185</gross_weight> - <net_weight>14,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>18,3999996185</shelf_width> - <shelf_height>10,5</shelf_height> - <shelf_depth>21,3999996185</shelf_depth> + <grossWeight>16,3999996185</grossWeight> + <netWeight>14,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>18,3999996185</shelfWidth> + <shelfHeight>10,5</shelfHeight> + <shelfDepth>21,3999996185</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Dried Dates</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Dried Dates</productName> <sku>62272461056</sku> <srp>1,6799999475</srp> - <gross_weight>9,0100002289</gross_weight> - <net_weight>6,0100002289</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>32</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>12</shelf_width> - <shelf_height>22,3999996185</shelf_height> - <shelf_depth>5,6700000763</shelf_depth> + <grossWeight>9,0100002289</grossWeight> + <netWeight>6,0100002289</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>32</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>12</shelfWidth> + <shelfHeight>22,3999996185</shelfHeight> + <shelfDepth>5,6700000763</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Raisins</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Raisins</productName> <sku>12966689467</sku> <srp>2,2000000477</srp> - <gross_weight>17,8999996185</gross_weight> - <net_weight>15,8000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>19,1000003815</shelf_width> - <shelf_height>18,8999996185</shelf_height> - <shelf_depth>7,2600002289</shelf_depth> + <grossWeight>17,8999996185</grossWeight> + <netWeight>15,8000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>19,1000003815</shelfWidth> + <shelfHeight>18,8999996185</shelfHeight> + <shelfDepth>7,2600002289</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Golden Raisins</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Golden Raisins</productName> <sku>77972374558</sku> <srp>1,7899999619</srp> - <gross_weight>18,6000003815</gross_weight> - <net_weight>16,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>6,3400001526</shelf_width> - <shelf_height>19,2999992371</shelf_height> - <shelf_depth>8,8199996948</shelf_depth> + <grossWeight>18,6000003815</grossWeight> + <netWeight>16,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>6,3400001526</shelfWidth> + <shelfHeight>19,2999992371</shelfHeight> + <shelfDepth>8,8199996948</shelfDepth> </Product> <Product> - <brand_name>Horatio</brand_name> - <product_name>Horatio Dried Apricots</product_name> + <brandName>Horatio</brandName> + <productName>Horatio Dried Apricots</productName> <sku>99121410250</sku> <srp>0,7599999905</srp> - <gross_weight>12,3999996185</gross_weight> - <net_weight>10,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>16,8999996185</shelf_width> - <shelf_height>4,7199997902</shelf_height> - <shelf_depth>15,1000003815</shelf_depth> + <grossWeight>12,3999996185</grossWeight> + <netWeight>10,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>16,8999996185</shelfWidth> + <shelfHeight>4,7199997902</shelfHeight> + <shelfDepth>15,1000003815</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Dried Apples</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Dried Apples</productName> <sku>51633854508</sku> <srp>1,5199999809</srp> - <gross_weight>12,3999996185</gross_weight> - <net_weight>10,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>8,4399995804</shelf_width> - <shelf_height>13,8000001907</shelf_height> - <shelf_depth>17,3999996185</shelf_depth> + <grossWeight>12,3999996185</grossWeight> + <netWeight>10,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>8,4399995804</shelfWidth> + <shelfHeight>13,8000001907</shelfHeight> + <shelfDepth>17,3999996185</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Apple Fruit Roll</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Apple Fruit Roll</productName> <sku>72782890200</sku> <srp>3,9600000381</srp> - <gross_weight>6,7800002098</gross_weight> - <net_weight>4,7800002098</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>20,6000003815</shelf_width> - <shelf_height>9,3199996948</shelf_height> - <shelf_depth>8,5699996948</shelf_depth> + <grossWeight>6,7800002098</grossWeight> + <netWeight>4,7800002098</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>20,6000003815</shelfWidth> + <shelfHeight>9,3199996948</shelfHeight> + <shelfDepth>8,5699996948</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Strawberry Fruit Roll</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Strawberry Fruit Roll</productName> <sku>47741368412</sku> <srp>1,6799999475</srp> - <gross_weight>18,3999996185</gross_weight> - <net_weight>15,3000001907</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>17</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>11,3999996185</shelf_width> - <shelf_height>18,1000003815</shelf_height> - <shelf_depth>16,7999992371</shelf_depth> + <grossWeight>18,3999996185</grossWeight> + <netWeight>15,3000001907</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>17</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>11,3999996185</shelfWidth> + <shelfHeight>18,1000003815</shelfHeight> + <shelfDepth>16,7999992371</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Raspberry Fruit Roll</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Raspberry Fruit Roll</productName> <sku>38128170371</sku> <srp>3,4800000191</srp> - <gross_weight>15,3000001907</gross_weight> - <net_weight>12,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>12</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>16,2000007629</shelf_width> - <shelf_height>9,0900001526</shelf_height> - <shelf_depth>12,5</shelf_depth> + <grossWeight>15,3000001907</grossWeight> + <netWeight>12,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>12</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>16,2000007629</shelfWidth> + <shelfHeight>9,0900001526</shelfHeight> + <shelfDepth>12,5</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Grape Fruit Roll</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Grape Fruit Roll</productName> <sku>41609387993</sku> <srp>2,4700000286</srp> - <gross_weight>20,1000003815</gross_weight> - <net_weight>19,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>13,6999998093</shelf_width> - <shelf_height>7,4800000191</shelf_height> - <shelf_depth>12,8999996185</shelf_depth> + <grossWeight>20,1000003815</grossWeight> + <netWeight>19,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>13,6999998093</shelfWidth> + <shelfHeight>7,4800000191</shelfHeight> + <shelfDepth>12,8999996185</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Dried Dates</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Dried Dates</productName> <sku>67331826090</sku> <srp>3,2899999619</srp> - <gross_weight>12,1000003815</gross_weight> - <net_weight>10,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>16,2000007629</shelf_width> - <shelf_height>21,6000003815</shelf_height> - <shelf_depth>19,7000007629</shelf_depth> + <grossWeight>12,1000003815</grossWeight> + <netWeight>10,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>16,2000007629</shelfWidth> + <shelfHeight>21,6000003815</shelfHeight> + <shelfDepth>19,7000007629</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Raisins</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Raisins</productName> <sku>40050809979</sku> <srp>2,2999999523</srp> - <gross_weight>8,3199996948</gross_weight> - <net_weight>6,3099999428</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>7,9400000572</shelf_width> - <shelf_height>4,9899997711</shelf_height> - <shelf_depth>12,8000001907</shelf_depth> + <grossWeight>8,3199996948</grossWeight> + <netWeight>6,3099999428</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>7,9400000572</shelfWidth> + <shelfHeight>4,9899997711</shelfHeight> + <shelfDepth>12,8000001907</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Golden Raisins</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Golden Raisins</productName> <sku>58913144469</sku> <srp>1,3899999857</srp> - <gross_weight>7,1799998283</gross_weight> - <net_weight>6,1700000763</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>4,7399997711</shelf_width> - <shelf_height>22,8999996185</shelf_height> - <shelf_depth>17,6000003815</shelf_depth> + <grossWeight>7,1799998283</grossWeight> + <netWeight>6,1700000763</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>4,7399997711</shelfWidth> + <shelfHeight>22,8999996185</shelfHeight> + <shelfDepth>17,6000003815</shelfDepth> </Product> <Product> - <brand_name>Fort West</brand_name> - <product_name>Fort West Dried Apricots</product_name> + <brandName>Fort West</brandName> + <productName>Fort West Dried Apricots</productName> <sku>66967764496</sku> <srp>2,4100000858</srp> - <gross_weight>9,7899999619</gross_weight> - <net_weight>8,779999733</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>19</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>8,0699996948</shelf_width> - <shelf_height>6,7399997711</shelf_height> - <shelf_depth>13,6000003815</shelf_depth> + <grossWeight>9,7899999619</grossWeight> + <netWeight>8,779999733</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>19</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>8,0699996948</shelfWidth> + <shelfHeight>6,7399997711</shelfHeight> + <shelfDepth>13,6000003815</shelfDepth> </Product> - </Product_class> - <Product_class> + </ProductClass> + <ProductClass> <product_subcategory>Popsicles</product_subcategory> <product_category>Frozen Desserts</product_category> <product_department>Frozen Foods</product_department> - <product_family>Food</product_family> + <productFamily>Food</productFamily> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Orange Popsicles</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Orange Popsicles</productName> <sku>76317880749</sku> <srp>3,1300001144</srp> - <gross_weight>10,3999996185</gross_weight> - <net_weight>7,3899998665</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>13</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>5,8299999237</shelf_width> - <shelf_height>11,6999998093</shelf_height> - <shelf_depth>16,5</shelf_depth> + <grossWeight>10,3999996185</grossWeight> + <netWeight>7,3899998665</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>13</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>5,8299999237</shelfWidth> + <shelfHeight>11,6999998093</shelfHeight> + <shelfDepth>16,5</shelfDepth> </Product> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Grape Popsicles</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Grape Popsicles</productName> <sku>95396680235</sku> <srp>0,5099999905</srp> - <gross_weight>8,25</gross_weight> - <net_weight>7,25</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>33</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>10,8999996185</shelf_width> - <shelf_height>19,7000007629</shelf_height> - <shelf_depth>6,4499998093</shelf_depth> + <grossWeight>8,25</grossWeight> + <netWeight>7,25</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>33</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>10,8999996185</shelfWidth> + <shelfHeight>19,7000007629</shelfHeight> + <shelfDepth>6,4499998093</shelfDepth> </Product> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Lime Popsicles</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Lime Popsicles</productName> <sku>56168558001</sku> <srp>2,25</srp> - <gross_weight>18,3999996185</gross_weight> - <net_weight>17,2999992371</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>28</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>14,1999998093</shelf_width> - <shelf_height>12</shelf_height> - <shelf_depth>4,5500001907</shelf_depth> + <grossWeight>18,3999996185</grossWeight> + <netWeight>17,2999992371</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>28</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>14,1999998093</shelfWidth> + <shelfHeight>12</shelfHeight> + <shelfDepth>4,5500001907</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Orange Popsicles</product_name> + <brandName>Golden</brandName> + <productName>Golden Orange Popsicles</productName> <sku>36548671126</sku> <srp>3,8800001144</srp> - <gross_weight>18</gross_weight> - <net_weight>17</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>10,6999998093</shelf_width> - <shelf_height>3,2999999523</shelf_height> - <shelf_depth>21,5</shelf_depth> + <grossWeight>18</grossWeight> + <netWeight>17</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>10,6999998093</shelfWidth> + <shelfHeight>3,2999999523</shelfHeight> + <shelfDepth>21,5</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Grape Popsicles</product_name> + <brandName>Golden</brandName> + <productName>Golden Grape Popsicles</productName> <sku>90290108323</sku> <srp>1,9500000477</srp> - <gross_weight>9,4899997711</gross_weight> - <net_weight>8,4799995422</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>9,3000001907</shelf_width> - <shelf_height>16,1000003815</shelf_height> - <shelf_depth>6,3400001526</shelf_depth> + <grossWeight>9,4899997711</grossWeight> + <netWeight>8,4799995422</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>9,3000001907</shelfWidth> + <shelfHeight>16,1000003815</shelfHeight> + <shelfDepth>6,3400001526</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Lime Popsicles</product_name> + <brandName>Golden</brandName> + <productName>Golden Lime Popsicles</productName> <sku>55682595372</sku> <srp>2,4500000477</srp> - <gross_weight>18,2000007629</gross_weight> - <net_weight>17,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>16</units_per_case> - <cases_per_pallet>10</cases_per_pallet> - <shelf_width>6,0100002289</shelf_width> - <shelf_height>18,2999992371</shelf_height> - <shelf_depth>14,8000001907</shelf_depth> + <grossWeight>18,2000007629</grossWeight> + <netWeight>17,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>16</unitsPer_case> + <casesPerPallet>10</casesPerPallet> + <shelfWidth>6,0100002289</shelfWidth> + <shelfHeight>18,2999992371</shelfHeight> + <shelfDepth>14,8000001907</shelfDepth> </Product> <Product> - <brand_name>Golden</brand_name> - <product_name>Golden Lemon Popsicles</product_name> + <brandName>Golden</brandName> + <productName>Golden Lemon Popsicles</productName> <sku>89050326943</sku> <srp>1,1299999952</srp> - <gross_weight>9,3500003815</gross_weight> - <net_weight>7,3499999046</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>35</units_per_case> - <cases_per_pallet>5</cases_per_pallet> - <shelf_width>21,8999996185</shelf_width> - <shelf_height>15</shelf_height> - <shelf_depth>13,8000001907</shelf_depth> + <grossWeight>9,3500003815</grossWeight> + <netWeight>7,3499999046</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>35</unitsPer_case> + <casesPerPallet>5</casesPerPallet> + <shelfWidth>21,8999996185</shelfWidth> + <shelfHeight>15</shelfHeight> + <shelfDepth>13,8000001907</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Orange Popsicles</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Orange Popsicles</productName> <sku>14444887042</sku> <srp>1,2200000286</srp> - <gross_weight>12,6000003815</gross_weight> - <net_weight>10,6000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>23</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>10,6999998093</shelf_width> - <shelf_height>19,1000003815</shelf_height> - <shelf_depth>3,3900001049</shelf_depth> + <grossWeight>12,6000003815</grossWeight> + <netWeight>10,6000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>23</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>10,6999998093</shelfWidth> + <shelfHeight>19,1000003815</shelfHeight> + <shelfDepth>3,3900001049</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Grape Popsicles</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Grape Popsicles</productName> <sku>94638827443</sku> <srp>0,7400000095</srp> - <gross_weight>16,5</gross_weight> - <net_weight>14,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>7</cases_per_pallet> - <shelf_width>17,5</shelf_width> - <shelf_height>12,6999998093</shelf_height> - <shelf_depth>19,3999996185</shelf_depth> + <grossWeight>16,5</grossWeight> + <netWeight>14,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>7</casesPerPallet> + <shelfWidth>17,5</shelfWidth> + <shelfHeight>12,6999998093</shelfHeight> + <shelfDepth>19,3999996185</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Lime Popsicles</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Lime Popsicles</productName> <sku>64604716897</sku> <srp>1,3200000525</srp> - <gross_weight>17</gross_weight> - <net_weight>15</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>13,6000003815</shelf_width> - <shelf_height>18,8999996185</shelf_height> - <shelf_depth>10,5</shelf_depth> + <grossWeight>17</grossWeight> + <netWeight>15</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>13,6000003815</shelfWidth> + <shelfHeight>18,8999996185</shelfHeight> + <shelfDepth>10,5</shelfDepth> </Product> <Product> - <brand_name>PigTail</brand_name> - <product_name>PigTail Lemon Popsicles</product_name> + <brandName>PigTail</brandName> + <productName>PigTail Lemon Popsicles</productName> <sku>36447980999</sku> <srp>1,2799999714</srp> - <gross_weight>15,3000001907</gross_weight> - <net_weight>13,3000001907</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>8</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>19,2000007629</shelf_width> - <shelf_height>17,2000007629</shelf_height> - <shelf_depth>12,1000003815</shelf_depth> + <grossWeight>15,3000001907</grossWeight> + <netWeight>13,3000001907</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>8</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>19,2000007629</shelfWidth> + <shelfHeight>17,2000007629</shelfHeight> + <shelfDepth>12,1000003815</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Orange Popsicles</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Orange Popsicles</productName> <sku>83447481989</sku> <srp>0,8799999952</srp> - <gross_weight>12,1999998093</gross_weight> - <net_weight>9,1899995804</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>30</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>11,5</shelf_width> - <shelf_height>12</shelf_height> - <shelf_depth>9,0900001526</shelf_depth> + <grossWeight>12,1999998093</grossWeight> + <netWeight>9,1899995804</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>30</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>11,5</shelfWidth> + <shelfHeight>12</shelfHeight> + <shelfDepth>9,0900001526</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Grape Popsicles</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Grape Popsicles</productName> <sku>10648906826</sku> <srp>2,8299999237</srp> - <gross_weight>20,2000007629</gross_weight> - <net_weight>18,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>27</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>12,6000003815</shelf_width> - <shelf_height>19,2999992371</shelf_height> - <shelf_depth>13,8000001907</shelf_depth> + <grossWeight>20,2000007629</grossWeight> + <netWeight>18,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>27</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>12,6000003815</shelfWidth> + <shelfHeight>19,2999992371</shelfHeight> + <shelfDepth>13,8000001907</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Lime Popsicles</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Lime Popsicles</productName> <sku>37565861344</sku> <srp>2,9400000572</srp> - <gross_weight>19,2999992371</gross_weight> - <net_weight>17,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>34</units_per_case> - <cases_per_pallet>6</cases_per_pallet> - <shelf_width>21,1000003815</shelf_width> - <shelf_height>10,8999996185</shelf_height> - <shelf_depth>20,2999992371</shelf_depth> + <grossWeight>19,2999992371</grossWeight> + <netWeight>17,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>34</unitsPer_case> + <casesPerPallet>6</casesPerPallet> + <shelfWidth>21,1000003815</shelfWidth> + <shelfHeight>10,8999996185</shelfHeight> + <shelfDepth>20,2999992371</shelfDepth> </Product> <Product> - <brand_name>Imagine</brand_name> - <product_name>Imagine Lemon Popsicles</product_name> + <brandName>Imagine</brandName> + <productName>Imagine Lemon Popsicles</productName> <sku>66360190510</sku> <srp>0,6299999952</srp> - <gross_weight>19,1000003815</gross_weight> - <net_weight>16,1000003815</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>10</units_per_case> - <cases_per_pallet>14</cases_per_pallet> - <shelf_width>20,5</shelf_width> - <shelf_height>7,1100001335</shelf_height> - <shelf_depth>11,5</shelf_depth> + <grossWeight>19,1000003815</grossWeight> + <netWeight>16,1000003815</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>10</unitsPer_case> + <casesPerPallet>14</casesPerPallet> + <shelfWidth>20,5</shelfWidth> + <shelfHeight>7,1100001335</shelfHeight> + <shelfDepth>11,5</shelfDepth> </Product> <Product> - <brand_name>Big Time</brand_name> - <product_name>Big Time Lemon Popsicles</product_name> + <brandName>Big Time</brandName> + <productName>Big Time Lemon Popsicles</productName> <sku>63347458243</sku> <srp>1,4700000286</srp> - <gross_weight>17,2000007629</gross_weight> - <net_weight>15,1999998093</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>5</units_per_case> - <cases_per_pallet>9</cases_per_pallet> - <shelf_width>5,5</shelf_width> - <shelf_height>7,8400001526</shelf_height> - <shelf_depth>21,5</shelf_depth> + <grossWeight>17,2000007629</grossWeight> + <netWeight>15,1999998093</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>5</unitsPer_case> + <casesPerPallet>9</casesPerPallet> + <shelfWidth>5,5</shelfWidth> + <shelfHeight>7,8400001526</shelfHeight> + <shelfDepth>21,5</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Orange Popsicles</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Orange Popsicles</productName> <sku>46533108353</sku> <srp>0,6899999976</srp> - <gross_weight>14,6999998093</gross_weight> - <net_weight>12,6000003815</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>14</units_per_case> - <cases_per_pallet>12</cases_per_pallet> - <shelf_width>20,7999992371</shelf_width> - <shelf_height>8,1700000763</shelf_height> - <shelf_depth>10,5</shelf_depth> + <grossWeight>14,6999998093</grossWeight> + <netWeight>12,6000003815</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>14</unitsPer_case> + <casesPerPallet>12</casesPerPallet> + <shelfWidth>20,7999992371</shelfWidth> + <shelfHeight>8,1700000763</shelfHeight> + <shelfDepth>10,5</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Grape Popsicles</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Grape Popsicles</productName> <sku>56417896151</sku> <srp>2,9000000954</srp> - <gross_weight>12,5</gross_weight> - <net_weight>10,5</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>true</low_fat> - <units_per_case>11</units_per_case> - <cases_per_pallet>11</cases_per_pallet> - <shelf_width>22,7999992371</shelf_width> - <shelf_height>4,7699999809</shelf_height> - <shelf_depth>5,8699998856</shelf_depth> + <grossWeight>12,5</grossWeight> + <netWeight>10,5</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>true</lowFat> + <unitsPer_case>11</unitsPer_case> + <casesPerPallet>11</casesPerPallet> + <shelfWidth>22,7999992371</shelfWidth> + <shelfHeight>4,7699999809</shelfHeight> + <shelfDepth>5,8699998856</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Lime Popsicles</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Lime Popsicles</productName> <sku>81048149466</sku> <srp>1,6699999571</srp> - <gross_weight>20,2000007629</gross_weight> - <net_weight>18,2000007629</net_weight> - <recyclable_package>false</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>21</units_per_case> - <cases_per_pallet>13</cases_per_pallet> - <shelf_width>16,3999996185</shelf_width> - <shelf_height>15,8000001907</shelf_height> - <shelf_depth>19,6000003815</shelf_depth> + <grossWeight>20,2000007629</grossWeight> + <netWeight>18,2000007629</netWeight> + <recyclablePackage>false</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>21</unitsPer_case> + <casesPerPallet>13</casesPerPallet> + <shelfWidth>16,3999996185</shelfWidth> + <shelfHeight>15,8000001907</shelfHeight> + <shelfDepth>19,6000003815</shelfDepth> </Product> <Product> - <brand_name>Carrington</brand_name> - <product_name>Carrington Lemon Popsicles</product_name> + <brandName>Carrington</brandName> + <productName>Carrington Lemon Popsicles</productName> <sku>26702582240</sku> <srp>1,8099999428</srp> - <gross_weight>11,5</gross_weight> - <net_weight>9,5</net_weight> - <recyclable_package>true</recyclable_package> - <low_fat>false</low_fat> - <units_per_case>6</units_per_case> - <cases_per_pallet>8</cases_per_pallet> - <shelf_width>9,6599998474</shelf_width> - <shelf_height>19,1000003815</shelf_height> - <shelf_depth>13,6000003815</shelf_depth> + <grossWeight>11,5</grossWeight> + <netWeight>9,5</netWeight> + <recyclablePackage>true</recyclablePackage> + <lowFat>false</lowFat> + <unitsPer_case>6</unitsPer_case> + <casesPerPallet>8</casesPerPallet> + <shelfWidth>9,6599998474</shelfWidth> + <shelfHeight>19,1000003815</shelfHeight> + <shelfDepth>13,6000003815</shelfDepth> </Product> - </Product_class> -</vector> \ No newline at end of file + </ProductClass> +</vector>
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/promotion.xml b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/promotion.xml index a102d02..cfa3a6c 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/promotion.xml +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/promotion.xml
@@ -1,8002 +1,8002 @@ <vector> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Two for One</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Two for One</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>9645</cost> - <start_date>04.07.1996</start_date> - <end_date>08.07.1996</end_date> + <startDate>04.07.1996</startDate> + <endDate>08.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>Radio</mediaType> <cost>13089</cost> - <start_date>16.07.1996</start_date> - <end_date>18.07.1996</end_date> + <startDate>16.07.1996</startDate> + <endDate>18.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Shelf Clearing Days</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Shelf Clearing Days</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>6614</cost> - <start_date>01.08.1996</start_date> - <end_date>02.08.1996</end_date> + <startDate>01.08.1996</startDate> + <endDate>02.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Shelf Emptiers</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Shelf Emptiers</promotionName> + <mediaType>Street Handout</mediaType> <cost>7749</cost> - <start_date>15.08.1996</start_date> - <end_date>17.08.1996</end_date> + <startDate>15.08.1996</startDate> + <endDate>17.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Sales Galore</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Sales Galore</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>9218</cost> - <start_date>29.08.1996</start_date> - <end_date>01.09.1996</end_date> + <startDate>29.08.1996</startDate> + <endDate>01.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>High Roller Savings</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>High Roller Savings</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>7535</cost> - <start_date>12.09.1996</start_date> - <end_date>13.09.1996</end_date> + <startDate>12.09.1996</startDate> + <endDate>13.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Money Grabbers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Money Grabbers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>6441</cost> - <start_date>25.09.1996</start_date> - <end_date>27.09.1996</end_date> + <startDate>25.09.1996</startDate> + <endDate>27.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Radio</mediaType> <cost>12678</cost> - <start_date>09.10.1996</start_date> - <end_date>10.10.1996</end_date> + <startDate>09.10.1996</startDate> + <endDate>10.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>8513</cost> - <start_date>24.10.1996</start_date> - <end_date>28.10.1996</end_date> + <startDate>24.10.1996</startDate> + <endDate>28.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Money Grabbers</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Money Grabbers</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>9047</cost> - <start_date>07.11.1996</start_date> - <end_date>10.11.1996</end_date> + <startDate>07.11.1996</startDate> + <endDate>10.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Street Handout</mediaType> <cost>5990</cost> - <start_date>20.11.1996</start_date> - <end_date>22.11.1996</end_date> + <startDate>20.11.1996</startDate> + <endDate>22.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>6870</cost> - <start_date>04.12.1996</start_date> - <end_date>07.12.1996</end_date> + <startDate>04.12.1996</startDate> + <endDate>07.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>You Save Days</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>You Save Days</promotionName> + <mediaType>Product Attachment</mediaType> <cost>14413</cost> - <start_date>18.12.1996</start_date> - <end_date>19.12.1996</end_date> + <startDate>18.12.1996</startDate> + <endDate>19.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>9820</cost> - <start_date>03.01.1997</start_date> - <end_date>05.01.1997</end_date> + <startDate>03.01.1997</startDate> + <endDate>05.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Price Destroyers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Price Destroyers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>12144</cost> - <start_date>15.01.1997</start_date> - <end_date>18.01.1997</end_date> + <startDate>15.01.1997</startDate> + <endDate>18.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Two for One</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Two for One</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>11570</cost> - <start_date>30.01.1997</start_date> - <end_date>31.01.1997</end_date> + <startDate>30.01.1997</startDate> + <endDate>31.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>You Save Days</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>You Save Days</promotionName> + <mediaType>TV</mediaType> <cost>10822</cost> - <start_date>11.02.1997</start_date> - <end_date>13.02.1997</end_date> + <startDate>11.02.1997</startDate> + <endDate>13.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>12436</cost> - <start_date>27.02.1997</start_date> - <end_date>03.03.1997</end_date> + <startDate>27.02.1997</startDate> + <endDate>03.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Daily Paper</mediaType> <cost>12797</cost> - <start_date>14.03.1997</start_date> - <end_date>15.03.1997</end_date> + <startDate>14.03.1997</startDate> + <endDate>15.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>10768</cost> - <start_date>28.03.1997</start_date> - <end_date>29.03.1997</end_date> + <startDate>28.03.1997</startDate> + <endDate>29.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>11729</cost> - <start_date>10.04.1997</start_date> - <end_date>11.04.1997</end_date> + <startDate>10.04.1997</startDate> + <endDate>11.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Big Promo</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Big Promo</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>14226</cost> - <start_date>23.04.1997</start_date> - <end_date>25.04.1997</end_date> + <startDate>23.04.1997</startDate> + <endDate>25.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>12624</cost> - <start_date>08.05.1997</start_date> - <end_date>11.05.1997</end_date> + <startDate>08.05.1997</startDate> + <endDate>11.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Super Wallet Savers</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Super Wallet Savers</promotionName> + <mediaType>Radio</mediaType> <cost>11795</cost> - <start_date>22.05.1997</start_date> - <end_date>23.05.1997</end_date> + <startDate>22.05.1997</startDate> + <endDate>23.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Street Handout</mediaType> <cost>14466</cost> - <start_date>05.06.1997</start_date> - <end_date>08.06.1997</end_date> + <startDate>05.06.1997</startDate> + <endDate>08.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>11836</cost> - <start_date>18.06.1997</start_date> - <end_date>20.06.1997</end_date> + <startDate>18.06.1997</startDate> + <endDate>20.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>High Roller Savings</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>High Roller Savings</promotionName> + <mediaType>Street Handout</mediaType> <cost>9680</cost> - <start_date>02.07.1997</start_date> - <end_date>03.07.1997</end_date> + <startDate>02.07.1997</startDate> + <endDate>03.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>Radio</mediaType> <cost>7397</cost> - <start_date>16.07.1997</start_date> - <end_date>20.07.1997</end_date> + <startDate>16.07.1997</startDate> + <endDate>20.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Money Grabbers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Money Grabbers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>11776</cost> - <start_date>01.08.1997</start_date> - <end_date>03.08.1997</end_date> + <startDate>01.08.1997</startDate> + <endDate>03.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Super Wallet Savers</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Super Wallet Savers</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>14019</cost> - <start_date>13.08.1997</start_date> - <end_date>15.08.1997</end_date> + <startDate>13.08.1997</startDate> + <endDate>15.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>5835</cost> - <start_date>27.08.1997</start_date> - <end_date>29.08.1997</end_date> + <startDate>27.08.1997</startDate> + <endDate>29.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Product Attachment</mediaType> <cost>12096</cost> - <start_date>11.09.1997</start_date> - <end_date>14.09.1997</end_date> + <startDate>11.09.1997</startDate> + <endDate>14.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Price Savers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Price Savers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>8185</cost> - <start_date>25.09.1997</start_date> - <end_date>28.09.1997</end_date> + <startDate>25.09.1997</startDate> + <endDate>28.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Money Savers</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Money Savers</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>5301</cost> - <start_date>09.10.1997</start_date> - <end_date>13.10.1997</end_date> + <startDate>09.10.1997</startDate> + <endDate>13.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Super Savers</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Super Savers</promotionName> + <mediaType>Street Handout</mediaType> <cost>5153</cost> - <start_date>22.10.1997</start_date> - <end_date>26.10.1997</end_date> + <startDate>22.10.1997</startDate> + <endDate>26.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Go For It</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Go For It</promotionName> + <mediaType>Product Attachment</mediaType> <cost>9960</cost> - <start_date>05.11.1997</start_date> - <end_date>08.11.1997</end_date> + <startDate>05.11.1997</startDate> + <endDate>08.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>7757</cost> - <start_date>21.11.1997</start_date> - <end_date>23.11.1997</end_date> + <startDate>21.11.1997</startDate> + <endDate>23.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Product Attachment</mediaType> <cost>10993</cost> - <start_date>04.12.1997</start_date> - <end_date>06.12.1997</end_date> + <startDate>04.12.1997</startDate> + <endDate>06.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Price Savers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Price Savers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>6227</cost> - <start_date>18.12.1997</start_date> - <end_date>21.12.1997</end_date> + <startDate>18.12.1997</startDate> + <endDate>21.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Price Destroyers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Price Destroyers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>12234</cost> - <start_date>01.01.1998</start_date> - <end_date>04.01.1998</end_date> + <startDate>01.01.1998</startDate> + <endDate>04.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>Street Handout</mediaType> <cost>11740</cost> - <start_date>14.01.1998</start_date> - <end_date>15.01.1998</end_date> + <startDate>14.01.1998</startDate> + <endDate>15.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Daily Paper</mediaType> <cost>8602</cost> - <start_date>29.01.1998</start_date> - <end_date>31.01.1998</end_date> + <startDate>29.01.1998</startDate> + <endDate>31.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>You Save Days</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>You Save Days</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>9217</cost> - <start_date>13.02.1998</start_date> - <end_date>16.02.1998</end_date> + <startDate>13.02.1998</startDate> + <endDate>16.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Product Attachment</mediaType> <cost>13770</cost> - <start_date>26.02.1998</start_date> - <end_date>28.02.1998</end_date> + <startDate>26.02.1998</startDate> + <endDate>28.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Shelf Clearing Days</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Shelf Clearing Days</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>7641</cost> - <start_date>11.03.1998</start_date> - <end_date>13.03.1998</end_date> + <startDate>11.03.1998</startDate> + <endDate>13.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Price Slashers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Price Slashers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>6720</cost> - <start_date>25.03.1998</start_date> - <end_date>27.03.1998</end_date> + <startDate>25.03.1998</startDate> + <endDate>27.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Go For It</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Go For It</promotionName> + <mediaType>Product Attachment</mediaType> <cost>11930</cost> - <start_date>10.04.1998</start_date> - <end_date>12.04.1998</end_date> + <startDate>10.04.1998</startDate> + <endDate>12.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Pick Your Savings</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Pick Your Savings</promotionName> + <mediaType>Daily Paper</mediaType> <cost>5028</cost> - <start_date>23.04.1998</start_date> - <end_date>25.04.1998</end_date> + <startDate>23.04.1998</startDate> + <endDate>25.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>Radio</mediaType> <cost>10608</cost> - <start_date>07.05.1998</start_date> - <end_date>09.05.1998</end_date> + <startDate>07.05.1998</startDate> + <endDate>09.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>14560</cost> - <start_date>20.05.1998</start_date> - <end_date>22.05.1998</end_date> + <startDate>20.05.1998</startDate> + <endDate>22.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Price Destroyers</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Price Destroyers</promotionName> + <mediaType>Radio</mediaType> <cost>11249</cost> - <start_date>03.06.1998</start_date> - <end_date>07.06.1998</end_date> + <startDate>03.06.1998</startDate> + <endDate>07.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Daily Paper</mediaType> <cost>12891</cost> - <start_date>17.06.1998</start_date> - <end_date>19.06.1998</end_date> + <startDate>17.06.1998</startDate> + <endDate>19.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>High Roller Savings</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>High Roller Savings</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>10181</cost> - <start_date>02.07.1998</start_date> - <end_date>06.07.1998</end_date> + <startDate>02.07.1998</startDate> + <endDate>06.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Street Handout</mediaType> <cost>9006</cost> - <start_date>14.07.1998</start_date> - <end_date>17.07.1998</end_date> + <startDate>14.07.1998</startDate> + <endDate>17.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Shelf Emptiers</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Shelf Emptiers</promotionName> + <mediaType>Daily Paper</mediaType> <cost>11076</cost> - <start_date>29.07.1998</start_date> - <end_date>01.08.1998</end_date> + <startDate>29.07.1998</startDate> + <endDate>01.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Green Light Days</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Green Light Days</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>13919</cost> - <start_date>12.08.1998</start_date> - <end_date>15.08.1998</end_date> + <startDate>12.08.1998</startDate> + <endDate>15.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Price Cutters</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Price Cutters</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>12917</cost> - <start_date>26.08.1998</start_date> - <end_date>29.08.1998</end_date> + <startDate>26.08.1998</startDate> + <endDate>29.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Daily Paper</mediaType> <cost>5206</cost> - <start_date>09.09.1998</start_date> - <end_date>12.09.1998</end_date> + <startDate>09.09.1998</startDate> + <endDate>12.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Wallet Savers</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Wallet Savers</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>5313</cost> - <start_date>23.09.1998</start_date> - <end_date>26.09.1998</end_date> + <startDate>23.09.1998</startDate> + <endDate>26.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Go For It</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Go For It</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>6701</cost> - <start_date>08.10.1998</start_date> - <end_date>10.10.1998</end_date> + <startDate>08.10.1998</startDate> + <endDate>10.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Green Light Special</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Green Light Special</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>7408</cost> - <start_date>23.10.1998</start_date> - <end_date>24.10.1998</end_date> + <startDate>23.10.1998</startDate> + <endDate>24.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>5979</cost> - <start_date>05.11.1998</start_date> - <end_date>08.11.1998</end_date> + <startDate>05.11.1998</startDate> + <endDate>08.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>11467</cost> - <start_date>19.11.1998</start_date> - <end_date>23.11.1998</end_date> + <startDate>19.11.1998</startDate> + <endDate>23.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>Daily Paper</mediaType> <cost>14057</cost> - <start_date>02.12.1998</start_date> - <end_date>05.12.1998</end_date> + <startDate>02.12.1998</startDate> + <endDate>05.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>Super Savers</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>Super Savers</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>13817</cost> - <start_date>18.12.1998</start_date> - <end_date>20.12.1998</end_date> + <startDate>18.12.1998</startDate> + <endDate>20.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>120</promotion_district_id> - <promotion_name>High Roller Savings</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>120</promotionDistrictId> + <promotionName>High Roller Savings</promotionName> + <mediaType>TV</mediaType> <cost>7261</cost> - <start_date>29.12.1998</start_date> - <end_date>01.01.1999</end_date> + <startDate>29.12.1998</startDate> + <endDate>01.01.1999</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>13196</cost> - <start_date>17.01.1996</start_date> - <end_date>21.01.1996</end_date> + <startDate>17.01.1996</startDate> + <endDate>21.01.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>7321</cost> - <start_date>31.01.1996</start_date> - <end_date>02.02.1996</end_date> + <startDate>31.01.1996</startDate> + <endDate>02.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Shelf Clearing Days</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Shelf Clearing Days</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>12983</cost> - <start_date>14.02.1996</start_date> - <end_date>17.02.1996</end_date> + <startDate>14.02.1996</startDate> + <endDate>17.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Dimes Off</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Dimes Off</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>14544</cost> - <start_date>28.02.1996</start_date> - <end_date>02.03.1996</end_date> + <startDate>28.02.1996</startDate> + <endDate>02.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Price Smashers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Price Smashers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>14224</cost> - <start_date>13.03.1996</start_date> - <end_date>15.03.1996</end_date> + <startDate>13.03.1996</startDate> + <endDate>15.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Super Wallet Savers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Super Wallet Savers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>10058</cost> - <start_date>28.03.1996</start_date> - <end_date>01.04.1996</end_date> + <startDate>28.03.1996</startDate> + <endDate>01.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Coupon Spectacular</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Coupon Spectacular</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>10592</cost> - <start_date>10.04.1996</start_date> - <end_date>12.04.1996</end_date> + <startDate>10.04.1996</startDate> + <endDate>12.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>Radio</mediaType> <cost>7535</cost> - <start_date>24.04.1996</start_date> - <end_date>27.04.1996</end_date> + <startDate>24.04.1996</startDate> + <endDate>27.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Super Wallet Savers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Super Wallet Savers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>8416</cost> - <start_date>09.05.1996</start_date> - <end_date>11.05.1996</end_date> + <startDate>09.05.1996</startDate> + <endDate>11.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Price Destroyers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Price Destroyers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>13303</cost> - <start_date>22.05.1996</start_date> - <end_date>26.05.1996</end_date> + <startDate>22.05.1996</startDate> + <endDate>26.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Money Savers</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Money Savers</promotionName> + <mediaType>Radio</mediaType> <cost>8710</cost> - <start_date>06.06.1996</start_date> - <end_date>10.06.1996</end_date> + <startDate>06.06.1996</startDate> + <endDate>10.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Dimes Off</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Dimes Off</promotionName> + <mediaType>Daily Paper</mediaType> <cost>7592</cost> - <start_date>21.06.1996</start_date> - <end_date>25.06.1996</end_date> + <startDate>21.06.1996</startDate> + <endDate>25.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Shelf Clearing Days</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Shelf Clearing Days</promotionName> + <mediaType>Street Handout</mediaType> <cost>7017</cost> - <start_date>03.07.1996</start_date> - <end_date>06.07.1996</end_date> + <startDate>03.07.1996</startDate> + <endDate>06.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Double Down Sale</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Double Down Sale</promotionName> + <mediaType>Product Attachment</mediaType> <cost>6270</cost> - <start_date>18.07.1996</start_date> - <end_date>22.07.1996</end_date> + <startDate>18.07.1996</startDate> + <endDate>22.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Coupon Spectacular</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Coupon Spectacular</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>13894</cost> - <start_date>01.08.1996</start_date> - <end_date>02.08.1996</end_date> + <startDate>01.08.1996</startDate> + <endDate>02.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>Product Attachment</mediaType> <cost>6911</cost> - <start_date>14.08.1996</start_date> - <end_date>17.08.1996</end_date> + <startDate>14.08.1996</startDate> + <endDate>17.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Savings Galore</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Savings Galore</promotionName> + <mediaType>Street Handout</mediaType> <cost>14881</cost> - <start_date>27.08.1996</start_date> - <end_date>29.08.1996</end_date> + <startDate>27.08.1996</startDate> + <endDate>29.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>Street Handout</mediaType> <cost>5842</cost> - <start_date>12.09.1996</start_date> - <end_date>14.09.1996</end_date> + <startDate>12.09.1996</startDate> + <endDate>14.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>8340</cost> - <start_date>26.09.1996</start_date> - <end_date>30.09.1996</end_date> + <startDate>26.09.1996</startDate> + <endDate>30.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>6737</cost> - <start_date>09.10.1996</start_date> - <end_date>10.10.1996</end_date> + <startDate>09.10.1996</startDate> + <endDate>10.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>TV</mediaType> <cost>13253</cost> - <start_date>25.10.1996</start_date> - <end_date>28.10.1996</end_date> + <startDate>25.10.1996</startDate> + <endDate>28.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>9826</cost> - <start_date>07.11.1996</start_date> - <end_date>10.11.1996</end_date> + <startDate>07.11.1996</startDate> + <endDate>10.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>9851</cost> - <start_date>19.11.1996</start_date> - <end_date>22.11.1996</end_date> + <startDate>19.11.1996</startDate> + <endDate>22.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Product Attachment</mediaType> <cost>13630</cost> - <start_date>05.12.1996</start_date> - <end_date>07.12.1996</end_date> + <startDate>05.12.1996</startDate> + <endDate>07.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>TV</mediaType> <cost>11347</cost> - <start_date>19.12.1996</start_date> - <end_date>21.12.1996</end_date> + <startDate>19.12.1996</startDate> + <endDate>21.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Two for One</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Two for One</promotionName> + <mediaType>Street Handout</mediaType> <cost>5726</cost> - <start_date>01.01.1997</start_date> - <end_date>04.01.1997</end_date> + <startDate>01.01.1997</startDate> + <endDate>04.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Radio</mediaType> <cost>7969</cost> - <start_date>15.01.1997</start_date> - <end_date>19.01.1997</end_date> + <startDate>15.01.1997</startDate> + <endDate>19.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Radio</mediaType> <cost>9785</cost> - <start_date>30.01.1997</start_date> - <end_date>02.02.1997</end_date> + <startDate>30.01.1997</startDate> + <endDate>02.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Dollar Days</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Dollar Days</promotionName> + <mediaType>Street Handout</mediaType> <cost>6047</cost> - <start_date>12.02.1997</start_date> - <end_date>13.02.1997</end_date> + <startDate>12.02.1997</startDate> + <endDate>13.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>12135</cost> - <start_date>25.02.1997</start_date> - <end_date>26.02.1997</end_date> + <startDate>25.02.1997</startDate> + <endDate>26.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Three for One</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Three for One</promotionName> + <mediaType>Product Attachment</mediaType> <cost>9251</cost> - <start_date>14.03.1997</start_date> - <end_date>16.03.1997</end_date> + <startDate>14.03.1997</startDate> + <endDate>16.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>13006</cost> - <start_date>27.03.1997</start_date> - <end_date>29.03.1997</end_date> + <startDate>27.03.1997</startDate> + <endDate>29.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Two Day Sale</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Two Day Sale</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>7812</cost> - <start_date>09.04.1997</start_date> - <end_date>11.04.1997</end_date> + <startDate>09.04.1997</startDate> + <endDate>11.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>5610</cost> - <start_date>24.04.1997</start_date> - <end_date>28.04.1997</end_date> + <startDate>24.04.1997</startDate> + <endDate>28.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>High Roller Savings</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>High Roller Savings</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>7599</cost> - <start_date>07.05.1997</start_date> - <end_date>08.05.1997</end_date> + <startDate>07.05.1997</startDate> + <endDate>08.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>12833</cost> - <start_date>21.05.1997</start_date> - <end_date>22.05.1997</end_date> + <startDate>21.05.1997</startDate> + <endDate>22.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Big Promo</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Big Promo</promotionName> + <mediaType>Radio</mediaType> <cost>6184</cost> - <start_date>04.06.1997</start_date> - <end_date>06.06.1997</end_date> + <startDate>04.06.1997</startDate> + <endDate>06.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Shelf Clearing Days</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Shelf Clearing Days</promotionName> + <mediaType>Daily Paper</mediaType> <cost>8347</cost> - <start_date>17.06.1997</start_date> - <end_date>20.06.1997</end_date> + <startDate>17.06.1997</startDate> + <endDate>20.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>12553</cost> - <start_date>02.07.1997</start_date> - <end_date>06.07.1997</end_date> + <startDate>02.07.1997</startDate> + <endDate>06.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>5823</cost> - <start_date>17.07.1997</start_date> - <end_date>18.07.1997</end_date> + <startDate>17.07.1997</startDate> + <endDate>18.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Green Light Days</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Green Light Days</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>10376</cost> - <start_date>30.07.1997</start_date> - <end_date>03.08.1997</end_date> + <startDate>30.07.1997</startDate> + <endDate>03.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>11591</cost> - <start_date>14.08.1997</start_date> - <end_date>18.08.1997</end_date> + <startDate>14.08.1997</startDate> + <endDate>18.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Green Light Special</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Green Light Special</promotionName> + <mediaType>Radio</mediaType> <cost>14736</cost> - <start_date>28.08.1997</start_date> - <end_date>01.09.1997</end_date> + <startDate>28.08.1997</startDate> + <endDate>01.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>13388</cost> - <start_date>12.09.1997</start_date> - <end_date>15.09.1997</end_date> + <startDate>12.09.1997</startDate> + <endDate>15.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>TV</mediaType> <cost>6485</cost> - <start_date>26.09.1997</start_date> - <end_date>29.09.1997</end_date> + <startDate>26.09.1997</startDate> + <endDate>29.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Pick Your Savings</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Pick Your Savings</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>12065</cost> - <start_date>09.10.1997</start_date> - <end_date>11.10.1997</end_date> + <startDate>09.10.1997</startDate> + <endDate>11.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Product Attachment</mediaType> <cost>6018</cost> - <start_date>22.10.1997</start_date> - <end_date>24.10.1997</end_date> + <startDate>22.10.1997</startDate> + <endDate>24.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>12706</cost> - <start_date>06.11.1997</start_date> - <end_date>07.11.1997</end_date> + <startDate>06.11.1997</startDate> + <endDate>07.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>14349</cost> - <start_date>20.11.1997</start_date> - <end_date>23.11.1997</end_date> + <startDate>20.11.1997</startDate> + <endDate>23.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>Radio</mediaType> <cost>11638</cost> - <start_date>05.12.1997</start_date> - <end_date>09.12.1997</end_date> + <startDate>05.12.1997</startDate> + <endDate>09.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Super Savers</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Super Savers</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>7807</cost> - <start_date>17.12.1997</start_date> - <end_date>20.12.1997</end_date> + <startDate>17.12.1997</startDate> + <endDate>20.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Price Savers</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Price Savers</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>12533</cost> - <start_date>30.12.1997</start_date> - <end_date>02.01.1998</end_date> + <startDate>30.12.1997</startDate> + <endDate>02.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>9249</cost> - <start_date>16.01.1998</start_date> - <end_date>17.01.1998</end_date> + <startDate>16.01.1998</startDate> + <endDate>17.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>5592</cost> - <start_date>28.01.1998</start_date> - <end_date>30.01.1998</end_date> + <startDate>28.01.1998</startDate> + <endDate>30.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Product Attachment</mediaType> <cost>9290</cost> - <start_date>12.02.1998</start_date> - <end_date>16.02.1998</end_date> + <startDate>12.02.1998</startDate> + <endDate>16.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>9397</cost> - <start_date>26.02.1998</start_date> - <end_date>27.02.1998</end_date> + <startDate>26.02.1998</startDate> + <endDate>27.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Price Savers</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Price Savers</promotionName> + <mediaType>Radio</mediaType> <cost>10785</cost> - <start_date>11.03.1998</start_date> - <end_date>13.03.1998</end_date> + <startDate>11.03.1998</startDate> + <endDate>13.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>11493</cost> - <start_date>25.03.1998</start_date> - <end_date>26.03.1998</end_date> + <startDate>25.03.1998</startDate> + <endDate>26.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Big Promo</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Big Promo</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>7408</cost> - <start_date>10.04.1998</start_date> - <end_date>11.04.1998</end_date> + <startDate>10.04.1998</startDate> + <endDate>11.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Product Attachment</mediaType> <cost>5551</cost> - <start_date>21.04.1998</start_date> - <end_date>23.04.1998</end_date> + <startDate>21.04.1998</startDate> + <endDate>23.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Coupon Spectacular</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Coupon Spectacular</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>5485</cost> - <start_date>07.05.1998</start_date> - <end_date>08.05.1998</end_date> + <startDate>07.05.1998</startDate> + <endDate>08.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Shelf Clearing Days</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Shelf Clearing Days</promotionName> + <mediaType>Street Handout</mediaType> <cost>7901</cost> - <start_date>19.05.1998</start_date> - <end_date>21.05.1998</end_date> + <startDate>19.05.1998</startDate> + <endDate>21.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Shelf Clearing Days</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Shelf Clearing Days</promotionName> + <mediaType>Product Attachment</mediaType> <cost>12592</cost> - <start_date>05.06.1998</start_date> - <end_date>08.06.1998</end_date> + <startDate>05.06.1998</startDate> + <endDate>08.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>You Save Days</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>You Save Days</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>8772</cost> - <start_date>19.06.1998</start_date> - <end_date>20.06.1998</end_date> + <startDate>19.06.1998</startDate> + <endDate>20.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Green Light Days</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Green Light Days</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>7251</cost> - <start_date>02.07.1998</start_date> - <end_date>04.07.1998</end_date> + <startDate>02.07.1998</startDate> + <endDate>04.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>11376</cost> - <start_date>16.07.1998</start_date> - <end_date>18.07.1998</end_date> + <startDate>16.07.1998</startDate> + <endDate>18.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>7037</cost> - <start_date>31.07.1998</start_date> - <end_date>01.08.1998</end_date> + <startDate>31.07.1998</startDate> + <endDate>01.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Dollar Days</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Dollar Days</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>8599</cost> - <start_date>13.08.1998</start_date> - <end_date>16.08.1998</end_date> + <startDate>13.08.1998</startDate> + <endDate>16.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Two for One</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Two for One</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>8279</cost> - <start_date>27.08.1998</start_date> - <end_date>29.08.1998</end_date> + <startDate>27.08.1998</startDate> + <endDate>29.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Price Savers</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Price Savers</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>14113</cost> - <start_date>08.09.1998</start_date> - <end_date>10.09.1998</end_date> + <startDate>08.09.1998</startDate> + <endDate>10.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>14647</cost> - <start_date>25.09.1998</start_date> - <end_date>29.09.1998</end_date> + <startDate>25.09.1998</startDate> + <endDate>29.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Wallet Savers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Wallet Savers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>11590</cost> - <start_date>08.10.1998</start_date> - <end_date>11.10.1998</end_date> + <startDate>08.10.1998</startDate> + <endDate>11.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>6372</cost> - <start_date>21.10.1998</start_date> - <end_date>24.10.1998</end_date> + <startDate>21.10.1998</startDate> + <endDate>24.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Go For It</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Go For It</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>13916</cost> - <start_date>04.11.1998</start_date> - <end_date>05.11.1998</end_date> + <startDate>04.11.1998</startDate> + <endDate>05.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Pick Your Savings</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Pick Your Savings</promotionName> + <mediaType>Street Handout</mediaType> <cost>9323</cost> - <start_date>19.11.1998</start_date> - <end_date>22.11.1998</end_date> + <startDate>19.11.1998</startDate> + <endDate>22.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Price Slashers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Price Slashers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>14302</cost> - <start_date>03.12.1998</start_date> - <end_date>06.12.1998</end_date> + <startDate>03.12.1998</startDate> + <endDate>06.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>Daily Paper</mediaType> <cost>11072</cost> - <start_date>15.12.1998</start_date> - <end_date>17.12.1998</end_date> + <startDate>15.12.1998</startDate> + <endDate>17.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>121</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>121</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>10324</cost> - <start_date>30.12.1998</start_date> - <end_date>01.01.1999</end_date> + <startDate>30.12.1998</startDate> + <endDate>01.01.1999</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Cash Register Lottery</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Cash Register Lottery</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>10965</cost> - <start_date>16.01.1996</start_date> - <end_date>23.01.1996</end_date> + <startDate>16.01.1996</startDate> + <endDate>23.01.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Two Day Sale</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Two Day Sale</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>8936</cost> - <start_date>01.02.1996</start_date> - <end_date>02.02.1996</end_date> + <startDate>01.02.1996</startDate> + <endDate>02.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Two for One</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Two for One</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>9897</cost> - <start_date>14.02.1996</start_date> - <end_date>18.02.1996</end_date> + <startDate>14.02.1996</startDate> + <endDate>18.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Super Wallet Savers</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Super Wallet Savers</promotionName> + <mediaType>Radio</mediaType> <cost>5050</cost> - <start_date>28.02.1996</start_date> - <end_date>01.03.1996</end_date> + <startDate>28.02.1996</startDate> + <endDate>01.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Cash Register Lottery</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Cash Register Lottery</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>14694</cost> - <start_date>15.03.1996</start_date> - <end_date>22.03.1996</end_date> + <startDate>15.03.1996</startDate> + <endDate>22.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>11210</cost> - <start_date>28.03.1996</start_date> - <end_date>30.03.1996</end_date> + <startDate>28.03.1996</startDate> + <endDate>30.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>Radio</mediaType> <cost>13880</cost> - <start_date>12.04.1996</start_date> - <end_date>13.04.1996</end_date> + <startDate>12.04.1996</startDate> + <endDate>13.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Cash Register Lottery</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Cash Register Lottery</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>11250</cost> - <start_date>24.04.1996</start_date> - <end_date>30.04.1996</end_date> + <startDate>24.04.1996</startDate> + <endDate>30.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Super Wallet Savers</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Super Wallet Savers</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>7685</cost> - <start_date>09.05.1996</start_date> - <end_date>13.05.1996</end_date> + <startDate>09.05.1996</startDate> + <endDate>13.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Coupon Spectacular</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Coupon Spectacular</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>12746</cost> - <start_date>21.05.1996</start_date> - <end_date>24.05.1996</end_date> + <startDate>21.05.1996</startDate> + <endDate>24.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Super Savers</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Super Savers</promotionName> + <mediaType>Daily Paper</mediaType> <cost>9781</cost> - <start_date>05.06.1996</start_date> - <end_date>09.06.1996</end_date> + <startDate>05.06.1996</startDate> + <endDate>09.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>TV</mediaType> <cost>12024</cost> - <start_date>20.06.1996</start_date> - <end_date>22.06.1996</end_date> + <startDate>20.06.1996</startDate> + <endDate>22.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Cash Register Lottery</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Cash Register Lottery</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>13840</cost> - <start_date>03.07.1996</start_date> - <end_date>10.07.1996</end_date> + <startDate>03.07.1996</startDate> + <endDate>10.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>You Save Days</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>You Save Days</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>10101</cost> - <start_date>17.07.1996</start_date> - <end_date>19.07.1996</end_date> + <startDate>17.07.1996</startDate> + <endDate>19.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Price Destroyers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Price Destroyers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>12777</cost> - <start_date>31.07.1996</start_date> - <end_date>04.08.1996</end_date> + <startDate>31.07.1996</startDate> + <endDate>04.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Double Down Sale</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Double Down Sale</promotionName> + <mediaType>Radio</mediaType> <cost>9893</cost> - <start_date>13.08.1996</start_date> - <end_date>14.08.1996</end_date> + <startDate>13.08.1996</startDate> + <endDate>14.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Price Smashers</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Price Smashers</promotionName> + <mediaType>Daily Paper</mediaType> <cost>7090</cost> - <start_date>28.08.1996</start_date> - <end_date>29.08.1996</end_date> + <startDate>28.08.1996</startDate> + <endDate>29.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>14552</cost> - <start_date>13.09.1996</start_date> - <end_date>14.09.1996</end_date> + <startDate>13.09.1996</startDate> + <endDate>14.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Price Slashers</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Price Slashers</promotionName> + <mediaType>Radio</mediaType> <cost>12350</cost> - <start_date>25.09.1996</start_date> - <end_date>28.09.1996</end_date> + <startDate>25.09.1996</startDate> + <endDate>28.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Cash Register Lottery</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Cash Register Lottery</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>14339</cost> - <start_date>11.10.1996</start_date> - <end_date>18.10.1996</end_date> + <startDate>11.10.1996</startDate> + <endDate>18.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Green Light Days</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Green Light Days</promotionName> + <mediaType>Radio</mediaType> <cost>9573</cost> - <start_date>22.10.1996</start_date> - <end_date>25.10.1996</end_date> + <startDate>22.10.1996</startDate> + <endDate>25.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Wallet Savers</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Wallet Savers</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>12924</cost> - <start_date>08.11.1996</start_date> - <end_date>09.11.1996</end_date> + <startDate>08.11.1996</startDate> + <endDate>09.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Shelf Emptiers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Shelf Emptiers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>5086</cost> - <start_date>20.11.1996</start_date> - <end_date>22.11.1996</end_date> + <startDate>20.11.1996</startDate> + <endDate>22.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>9293</cost> - <start_date>06.12.1996</start_date> - <end_date>08.12.1996</end_date> + <startDate>06.12.1996</startDate> + <endDate>08.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Shelf Emptiers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Shelf Emptiers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>13810</cost> - <start_date>18.12.1996</start_date> - <end_date>22.12.1996</end_date> + <startDate>18.12.1996</startDate> + <endDate>22.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Two Day Sale</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Two Day Sale</promotionName> + <mediaType>TV</mediaType> <cost>8362</cost> - <start_date>31.12.1996</start_date> - <end_date>02.01.1997</end_date> + <startDate>31.12.1996</startDate> + <endDate>02.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Cash Register Lottery</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Cash Register Lottery</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>9578</cost> - <start_date>01.01.1997</start_date> - <end_date>30.01.1997</end_date> + <startDate>01.01.1997</startDate> + <endDate>30.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Money Savers</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Money Savers</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>8657</cost> - <start_date>29.01.1997</start_date> - <end_date>01.02.1997</end_date> + <startDate>29.01.1997</startDate> + <endDate>01.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>9964</cost> - <start_date>13.02.1997</start_date> - <end_date>14.02.1997</end_date> + <startDate>13.02.1997</startDate> + <endDate>14.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Green Light Special</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Green Light Special</promotionName> + <mediaType>Street Handout</mediaType> <cost>13062</cost> - <start_date>27.02.1997</start_date> - <end_date>01.03.1997</end_date> + <startDate>27.02.1997</startDate> + <endDate>01.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Cash Register Lottery</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Cash Register Lottery</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>5986</cost> - <start_date>01.03.1997</start_date> - <end_date>30.03.1997</end_date> + <startDate>01.03.1997</startDate> + <endDate>30.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>9938</cost> - <start_date>25.03.1997</start_date> - <end_date>29.03.1997</end_date> + <startDate>25.03.1997</startDate> + <endDate>29.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Green Light Days</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Green Light Days</promotionName> + <mediaType>Daily Paper</mediaType> <cost>6627</cost> - <start_date>08.04.1997</start_date> - <end_date>10.04.1997</end_date> + <startDate>08.04.1997</startDate> + <endDate>10.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Street Handout</mediaType> <cost>10926</cost> - <start_date>23.04.1997</start_date> - <end_date>24.04.1997</end_date> + <startDate>23.04.1997</startDate> + <endDate>24.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Cash Register Lottery</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Cash Register Lottery</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>5559</cost> - <start_date>01.05.1997</start_date> - <end_date>30.05.1997</end_date> + <startDate>01.05.1997</startDate> + <endDate>30.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>Radio</mediaType> <cost>8449</cost> - <start_date>21.05.1997</start_date> - <end_date>25.05.1997</end_date> + <startDate>21.05.1997</startDate> + <endDate>25.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>13175</cost> - <start_date>04.06.1997</start_date> - <end_date>07.06.1997</end_date> + <startDate>04.06.1997</startDate> + <endDate>07.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Radio</mediaType> <cost>13363</cost> - <start_date>19.06.1997</start_date> - <end_date>22.06.1997</end_date> + <startDate>19.06.1997</startDate> + <endDate>22.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Cash Register Lottery</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Cash Register Lottery</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>12361</cost> - <start_date>01.07.1997</start_date> - <end_date>30.07.1997</end_date> + <startDate>01.07.1997</startDate> + <endDate>30.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>6059</cost> - <start_date>16.07.1997</start_date> - <end_date>19.07.1997</end_date> + <startDate>16.07.1997</startDate> + <endDate>19.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Shelf Clearing Days</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Shelf Clearing Days</promotionName> + <mediaType>Daily Paper</mediaType> <cost>6166</cost> - <start_date>30.07.1997</start_date> - <end_date>02.08.1997</end_date> + <startDate>30.07.1997</startDate> + <endDate>02.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>7554</cost> - <start_date>15.08.1997</start_date> - <end_date>16.08.1997</end_date> + <startDate>15.08.1997</startDate> + <endDate>16.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>8262</cost> - <start_date>29.08.1997</start_date> - <end_date>02.09.1997</end_date> + <startDate>29.08.1997</startDate> + <endDate>02.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Wallet Savers</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Wallet Savers</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>14177</cost> - <start_date>11.09.1997</start_date> - <end_date>13.09.1997</end_date> + <startDate>11.09.1997</startDate> + <endDate>13.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>12321</cost> - <start_date>24.09.1997</start_date> - <end_date>28.09.1997</end_date> + <startDate>24.09.1997</startDate> + <endDate>28.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>13501</cost> - <start_date>08.10.1997</start_date> - <end_date>12.10.1997</end_date> + <startDate>08.10.1997</startDate> + <endDate>12.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Price Cutters</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Price Cutters</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>5917</cost> - <start_date>24.10.1997</start_date> - <end_date>26.10.1997</end_date> + <startDate>24.10.1997</startDate> + <endDate>26.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Shelf Emptiers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Shelf Emptiers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>6705</cost> - <start_date>05.11.1997</start_date> - <end_date>06.11.1997</end_date> + <startDate>05.11.1997</startDate> + <endDate>06.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>10230</cost> - <start_date>18.11.1997</start_date> - <end_date>20.11.1997</end_date> + <startDate>18.11.1997</startDate> + <endDate>20.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Price Smashers</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Price Smashers</promotionName> + <mediaType>TV</mediaType> <cost>11364</cost> - <start_date>05.12.1997</start_date> - <end_date>08.12.1997</end_date> + <startDate>05.12.1997</startDate> + <endDate>08.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>5490</cost> - <start_date>19.12.1997</start_date> - <end_date>23.12.1997</end_date> + <startDate>19.12.1997</startDate> + <endDate>23.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>11151</cost> - <start_date>30.12.1997</start_date> - <end_date>02.01.1998</end_date> + <startDate>30.12.1997</startDate> + <endDate>02.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>You Save Days</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>You Save Days</promotionName> + <mediaType>Radio</mediaType> <cost>12712</cost> - <start_date>15.01.1998</start_date> - <end_date>16.01.1998</end_date> + <startDate>15.01.1998</startDate> + <endDate>16.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Super Savers</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Super Savers</promotionName> + <mediaType>Radio</mediaType> <cost>12392</cost> - <start_date>30.01.1998</start_date> - <end_date>02.02.1998</end_date> + <startDate>30.01.1998</startDate> + <endDate>02.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Street Handout</mediaType> <cost>5570</cost> - <start_date>11.02.1998</start_date> - <end_date>14.02.1998</end_date> + <startDate>11.02.1998</startDate> + <endDate>14.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>12662</cost> - <start_date>27.02.1998</start_date> - <end_date>03.03.1998</end_date> + <startDate>27.02.1998</startDate> + <endDate>03.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Best Savings</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Best Savings</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>12261</cost> - <start_date>12.03.1998</start_date> - <end_date>15.03.1998</end_date> + <startDate>12.03.1998</startDate> + <endDate>15.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Green Light Days</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Green Light Days</promotionName> + <mediaType>Radio</mediaType> <cost>10486</cost> - <start_date>27.03.1998</start_date> - <end_date>31.03.1998</end_date> + <startDate>27.03.1998</startDate> + <endDate>31.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Price Savers</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Price Savers</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>8029</cost> - <start_date>09.04.1998</start_date> - <end_date>11.04.1998</end_date> + <startDate>09.04.1998</startDate> + <endDate>11.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Double Down Sale</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Double Down Sale</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>13436</cost> - <start_date>22.04.1998</start_date> - <end_date>25.04.1998</end_date> + <startDate>22.04.1998</startDate> + <endDate>25.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>High Roller Savings</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>High Roller Savings</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>8416</cost> - <start_date>07.05.1998</start_date> - <end_date>08.05.1998</end_date> + <startDate>07.05.1998</startDate> + <endDate>08.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>Product Attachment</mediaType> <cost>5186</cost> - <start_date>20.05.1998</start_date> - <end_date>22.05.1998</end_date> + <startDate>20.05.1998</startDate> + <endDate>22.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>Radio</mediaType> <cost>14438</cost> - <start_date>04.06.1998</start_date> - <end_date>07.06.1998</end_date> + <startDate>04.06.1998</startDate> + <endDate>07.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>14718</cost> - <start_date>19.06.1998</start_date> - <end_date>21.06.1998</end_date> + <startDate>19.06.1998</startDate> + <endDate>21.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Double Down Sale</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Double Down Sale</promotionName> + <mediaType>Radio</mediaType> <cost>5079</cost> - <start_date>01.07.1998</start_date> - <end_date>03.07.1998</end_date> + <startDate>01.07.1998</startDate> + <endDate>03.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Product Attachment</mediaType> <cost>14383</cost> - <start_date>15.07.1998</start_date> - <end_date>18.07.1998</end_date> + <startDate>15.07.1998</startDate> + <endDate>18.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Radio</mediaType> <cost>5345</cost> - <start_date>31.07.1998</start_date> - <end_date>03.08.1998</end_date> + <startDate>31.07.1998</startDate> + <endDate>03.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Super Savers</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Super Savers</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>10498</cost> - <start_date>13.08.1998</start_date> - <end_date>16.08.1998</end_date> + <startDate>13.08.1998</startDate> + <endDate>16.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>You Save Days</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>You Save Days</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>8896</cost> - <start_date>26.08.1998</start_date> - <end_date>28.08.1998</end_date> + <startDate>26.08.1998</startDate> + <endDate>28.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Price Slashers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Price Slashers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>5411</cost> - <start_date>09.09.1998</start_date> - <end_date>12.09.1998</end_date> + <startDate>09.09.1998</startDate> + <endDate>12.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>TV</mediaType> <cost>8082</cost> - <start_date>23.09.1998</start_date> - <end_date>25.09.1998</end_date> + <startDate>23.09.1998</startDate> + <endDate>25.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>5452</cost> - <start_date>09.10.1998</start_date> - <end_date>12.10.1998</end_date> + <startDate>09.10.1998</startDate> + <endDate>12.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>11886</cost> - <start_date>21.10.1998</start_date> - <end_date>23.10.1998</end_date> + <startDate>21.10.1998</startDate> + <endDate>23.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>Product Attachment</mediaType> <cost>6947</cost> - <start_date>04.11.1998</start_date> - <end_date>08.11.1998</end_date> + <startDate>04.11.1998</startDate> + <endDate>08.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Money Savers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Money Savers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>11326</cost> - <start_date>20.11.1998</start_date> - <end_date>22.11.1998</end_date> + <startDate>20.11.1998</startDate> + <endDate>22.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Dimes Off</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Dimes Off</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>7472</cost> - <start_date>03.12.1998</start_date> - <end_date>04.12.1998</end_date> + <startDate>03.12.1998</startDate> + <endDate>04.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>11943</cost> - <start_date>15.12.1998</start_date> - <end_date>18.12.1998</end_date> + <startDate>15.12.1998</startDate> + <endDate>18.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>122</promotion_district_id> - <promotion_name>Coupon Spectacular</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>122</promotionDistrictId> + <promotionName>Coupon Spectacular</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>5549</cost> - <start_date>30.12.1998</start_date> - <end_date>31.12.1998</end_date> + <startDate>30.12.1998</startDate> + <endDate>31.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Green Light Special</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Green Light Special</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>11409</cost> - <start_date>17.01.1996</start_date> - <end_date>19.01.1996</end_date> + <startDate>17.01.1996</startDate> + <endDate>19.01.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>High Roller Savings</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>High Roller Savings</promotionName> + <mediaType>TV</mediaType> <cost>8606</cost> - <start_date>01.02.1996</start_date> - <end_date>03.02.1996</end_date> + <startDate>01.02.1996</startDate> + <endDate>03.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Best Savings</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Best Savings</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>13413</cost> - <start_date>15.02.1996</start_date> - <end_date>19.02.1996</end_date> + <startDate>15.02.1996</startDate> + <endDate>19.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>You Save Days</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>You Save Days</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>13866</cost> - <start_date>28.02.1996</start_date> - <end_date>02.03.1996</end_date> + <startDate>28.02.1996</startDate> + <endDate>02.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Price Smashers</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Price Smashers</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>13199</cost> - <start_date>15.03.1996</start_date> - <end_date>18.03.1996</end_date> + <startDate>15.03.1996</startDate> + <endDate>18.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Big Promo</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Big Promo</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>8433</cost> - <start_date>27.03.1996</start_date> - <end_date>31.03.1996</end_date> + <startDate>27.03.1996</startDate> + <endDate>31.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Pick Your Savings</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Pick Your Savings</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>14440</cost> - <start_date>09.04.1996</start_date> - <end_date>11.04.1996</end_date> + <startDate>09.04.1996</startDate> + <endDate>11.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>7849</cost> - <start_date>23.04.1996</start_date> - <end_date>24.04.1996</end_date> + <startDate>23.04.1996</startDate> + <endDate>24.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Go For It</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Go For It</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>14711</cost> - <start_date>09.05.1996</start_date> - <end_date>13.05.1996</end_date> + <startDate>09.05.1996</startDate> + <endDate>13.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Price Cutters</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Price Cutters</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>7982</cost> - <start_date>23.05.1996</start_date> - <end_date>25.05.1996</end_date> + <startDate>23.05.1996</startDate> + <endDate>25.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>9878</cost> - <start_date>05.06.1996</start_date> - <end_date>09.06.1996</end_date> + <startDate>05.06.1996</startDate> + <endDate>09.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>13749</cost> - <start_date>20.06.1996</start_date> - <end_date>21.06.1996</end_date> + <startDate>20.06.1996</startDate> + <endDate>21.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>12829</cost> - <start_date>04.07.1996</start_date> - <end_date>08.07.1996</end_date> + <startDate>04.07.1996</startDate> + <endDate>08.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>Daily Paper</mediaType> <cost>11481</cost> - <start_date>19.07.1996</start_date> - <end_date>22.07.1996</end_date> + <startDate>19.07.1996</startDate> + <endDate>22.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Daily Paper</mediaType> <cost>7234</cost> - <start_date>30.07.1996</start_date> - <end_date>02.08.1996</end_date> + <startDate>30.07.1996</startDate> + <endDate>02.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Super Savers</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Super Savers</promotionName> + <mediaType>Radio</mediaType> <cost>10158</cost> - <start_date>15.08.1996</start_date> - <end_date>17.08.1996</end_date> + <startDate>15.08.1996</startDate> + <endDate>17.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Big Promo</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Big Promo</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>14110</cost> - <start_date>28.08.1996</start_date> - <end_date>29.08.1996</end_date> + <startDate>28.08.1996</startDate> + <endDate>29.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Super Wallet Savers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Super Wallet Savers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>14701</cost> - <start_date>12.09.1996</start_date> - <end_date>14.09.1996</end_date> + <startDate>12.09.1996</startDate> + <endDate>14.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Wallet Savers</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Wallet Savers</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>6344</cost> - <start_date>24.09.1996</start_date> - <end_date>27.09.1996</end_date> + <startDate>24.09.1996</startDate> + <endDate>27.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>13633</cost> - <start_date>08.10.1996</start_date> - <end_date>10.10.1996</end_date> + <startDate>08.10.1996</startDate> + <endDate>10.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Money Grabbers</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Money Grabbers</promotionName> + <mediaType>TV</mediaType> <cost>12458</cost> - <start_date>23.10.1996</start_date> - <end_date>24.10.1996</end_date> + <startDate>23.10.1996</startDate> + <endDate>24.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Savings Galore</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Savings Galore</promotionName> + <mediaType>Street Handout</mediaType> <cost>14528</cost> - <start_date>07.11.1996</start_date> - <end_date>11.11.1996</end_date> + <startDate>07.11.1996</startDate> + <endDate>11.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>7372</cost> - <start_date>19.11.1996</start_date> - <end_date>23.11.1996</end_date> + <startDate>19.11.1996</startDate> + <endDate>23.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Super Wallet Savers</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Super Wallet Savers</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>6370</cost> - <start_date>05.12.1996</start_date> - <end_date>09.12.1996</end_date> + <startDate>05.12.1996</startDate> + <endDate>09.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Price Slashers</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Price Slashers</promotionName> + <mediaType>Radio</mediaType> <cost>10068</cost> - <start_date>19.12.1996</start_date> - <end_date>22.12.1996</end_date> + <startDate>19.12.1996</startDate> + <endDate>22.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Shelf Emptiers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Shelf Emptiers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>10175</cost> - <start_date>02.01.1997</start_date> - <end_date>06.01.1997</end_date> + <startDate>02.01.1997</startDate> + <endDate>06.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Dimes Off</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Dimes Off</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>11563</cost> - <start_date>14.01.1997</start_date> - <end_date>16.01.1997</end_date> + <startDate>14.01.1997</startDate> + <endDate>16.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>Daily Paper</mediaType> <cost>13546</cost> - <start_date>29.01.1997</start_date> - <end_date>01.02.1997</end_date> + <startDate>29.01.1997</startDate> + <endDate>01.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Radio</mediaType> <cost>12117</cost> - <start_date>12.02.1997</start_date> - <end_date>14.02.1997</end_date> + <startDate>12.02.1997</startDate> + <endDate>14.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Savings Galore</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Savings Galore</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>7605</cost> - <start_date>26.02.1997</start_date> - <end_date>01.03.1997</end_date> + <startDate>26.02.1997</startDate> + <endDate>01.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Street Handout</mediaType> <cost>10194</cost> - <start_date>11.03.1997</start_date> - <end_date>13.03.1997</end_date> + <startDate>11.03.1997</startDate> + <endDate>13.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Double Down Sale</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Double Down Sale</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>9955</cost> - <start_date>27.03.1997</start_date> - <end_date>31.03.1997</end_date> + <startDate>27.03.1997</startDate> + <endDate>31.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Price Cutters</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Price Cutters</promotionName> + <mediaType>Radio</mediaType> <cost>13399</cost> - <start_date>08.04.1997</start_date> - <end_date>10.04.1997</end_date> + <startDate>08.04.1997</startDate> + <endDate>10.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>6924</cost> - <start_date>24.04.1997</start_date> - <end_date>25.04.1997</end_date> + <startDate>24.04.1997</startDate> + <endDate>25.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Two for One</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Two for One</promotionName> + <mediaType>Street Handout</mediaType> <cost>8058</cost> - <start_date>08.05.1997</start_date> - <end_date>10.05.1997</end_date> + <startDate>08.05.1997</startDate> + <endDate>10.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>9528</cost> - <start_date>22.05.1997</start_date> - <end_date>25.05.1997</end_date> + <startDate>22.05.1997</startDate> + <endDate>25.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>7845</cost> - <start_date>05.06.1997</start_date> - <end_date>07.06.1997</end_date> + <startDate>05.06.1997</startDate> + <endDate>07.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>6751</cost> - <start_date>19.06.1997</start_date> - <end_date>21.06.1997</end_date> + <startDate>19.06.1997</startDate> + <endDate>21.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>10332</cost> - <start_date>04.07.1997</start_date> - <end_date>08.07.1997</end_date> + <startDate>04.07.1997</startDate> + <endDate>08.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>Product Attachment</mediaType> <cost>6167</cost> - <start_date>17.07.1997</start_date> - <end_date>20.07.1997</end_date> + <startDate>17.07.1997</startDate> + <endDate>20.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>Radio</mediaType> <cost>6701</cost> - <start_date>30.07.1997</start_date> - <end_date>01.08.1997</end_date> + <startDate>30.07.1997</startDate> + <endDate>01.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Three for One</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Three for One</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>13643</cost> - <start_date>15.08.1997</start_date> - <end_date>16.08.1997</end_date> + <startDate>15.08.1997</startDate> + <endDate>16.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Price Smashers</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Price Smashers</promotionName> + <mediaType>TV</mediaType> <cost>14524</cost> - <start_date>27.08.1997</start_date> - <end_date>29.08.1997</end_date> + <startDate>27.08.1997</startDate> + <endDate>29.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>12067</cost> - <start_date>12.09.1997</start_date> - <end_date>16.09.1997</end_date> + <startDate>12.09.1997</startDate> + <endDate>16.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>7474</cost> - <start_date>25.09.1997</start_date> - <end_date>27.09.1997</end_date> + <startDate>25.09.1997</startDate> + <endDate>27.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Green Light Special</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Green Light Special</promotionName> + <mediaType>Radio</mediaType> <cost>9798</cost> - <start_date>07.10.1997</start_date> - <end_date>09.10.1997</end_date> + <startDate>07.10.1997</startDate> + <endDate>09.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>9224</cost> - <start_date>23.10.1997</start_date> - <end_date>26.10.1997</end_date> + <startDate>23.10.1997</startDate> + <endDate>26.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>8476</cost> - <start_date>06.11.1997</start_date> - <end_date>08.11.1997</end_date> + <startDate>06.11.1997</startDate> + <endDate>08.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Dimes Off</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Dimes Off</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>10165</cost> - <start_date>19.11.1997</start_date> - <end_date>22.11.1997</end_date> + <startDate>19.11.1997</startDate> + <endDate>22.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Savings Galore</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Savings Galore</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>10526</cost> - <start_date>04.12.1997</start_date> - <end_date>08.12.1997</end_date> + <startDate>04.12.1997</startDate> + <endDate>08.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Dimes Off</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Dimes Off</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>8497</cost> - <start_date>18.12.1997</start_date> - <end_date>21.12.1997</end_date> + <startDate>18.12.1997</startDate> + <endDate>21.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>TV</mediaType> <cost>9458</cost> - <start_date>31.12.1997</start_date> - <end_date>04.01.1998</end_date> + <startDate>31.12.1997</startDate> + <endDate>04.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Money Savers</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Money Savers</promotionName> + <mediaType>Radio</mediaType> <cost>11955</cost> - <start_date>13.01.1998</start_date> - <end_date>15.01.1998</end_date> + <startDate>13.01.1998</startDate> + <endDate>15.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>Street Handout</mediaType> <cost>10353</cost> - <start_date>29.01.1998</start_date> - <end_date>01.02.1998</end_date> + <startDate>29.01.1998</startDate> + <endDate>01.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>You Save Days</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>You Save Days</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>9525</cost> - <start_date>12.02.1998</start_date> - <end_date>16.02.1998</end_date> + <startDate>12.02.1998</startDate> + <endDate>16.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Savings Galore</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Savings Galore</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>12195</cost> - <start_date>26.02.1998</start_date> - <end_date>01.03.1998</end_date> + <startDate>26.02.1998</startDate> + <endDate>01.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Sales Galore</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Sales Galore</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>9565</cost> - <start_date>10.03.1998</start_date> - <end_date>11.03.1998</end_date> + <startDate>10.03.1998</startDate> + <endDate>11.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>13344</cost> - <start_date>26.03.1998</start_date> - <end_date>28.03.1998</end_date> + <startDate>26.03.1998</startDate> + <endDate>28.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Pick Your Savings</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Pick Your Savings</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>14962</cost> - <start_date>10.04.1998</start_date> - <end_date>13.04.1998</end_date> + <startDate>10.04.1998</startDate> + <endDate>13.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>9342</cost> - <start_date>23.04.1998</start_date> - <end_date>25.04.1998</end_date> + <startDate>23.04.1998</startDate> + <endDate>25.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>11585</cost> - <start_date>05.05.1998</start_date> - <end_date>07.05.1998</end_date> + <startDate>05.05.1998</startDate> + <endDate>07.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Fantastic Discounts</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Fantastic Discounts</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>13401</cost> - <start_date>20.05.1998</start_date> - <end_date>21.05.1998</end_date> + <startDate>20.05.1998</startDate> + <endDate>21.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Go For It</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Go For It</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>9662</cost> - <start_date>04.06.1998</start_date> - <end_date>07.06.1998</end_date> + <startDate>04.06.1998</startDate> + <endDate>07.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Pick Your Savings</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Pick Your Savings</promotionName> + <mediaType>Daily Paper</mediaType> <cost>5751</cost> - <start_date>17.06.1998</start_date> - <end_date>20.06.1998</end_date> + <startDate>17.06.1998</startDate> + <endDate>20.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>12867</cost> - <start_date>01.07.1998</start_date> - <end_date>04.07.1998</end_date> + <startDate>01.07.1998</startDate> + <endDate>04.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Green Light Special</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Green Light Special</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>12719</cost> - <start_date>17.07.1998</start_date> - <end_date>20.07.1998</end_date> + <startDate>17.07.1998</startDate> + <endDate>20.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Three for One</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Three for One</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>7526</cost> - <start_date>29.07.1998</start_date> - <end_date>31.07.1998</end_date> + <startDate>29.07.1998</startDate> + <endDate>31.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>5323</cost> - <start_date>13.08.1998</start_date> - <end_date>14.08.1998</end_date> + <startDate>13.08.1998</startDate> + <endDate>14.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Wallet Savers</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Wallet Savers</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>11215</cost> - <start_date>27.08.1998</start_date> - <end_date>30.08.1998</end_date> + <startDate>27.08.1998</startDate> + <endDate>30.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Money Grabbers</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Money Grabbers</promotionName> + <mediaType>Radio</mediaType> <cost>6448</cost> - <start_date>11.09.1998</start_date> - <end_date>14.09.1998</end_date> + <startDate>11.09.1998</startDate> + <endDate>14.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Super Savers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Super Savers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>12456</cost> - <start_date>24.09.1998</start_date> - <end_date>28.09.1998</end_date> + <startDate>24.09.1998</startDate> + <endDate>28.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Street Handout</mediaType> <cost>11962</cost> - <start_date>07.10.1998</start_date> - <end_date>09.10.1998</end_date> + <startDate>07.10.1998</startDate> + <endDate>09.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Price Smashers</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Price Smashers</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>8824</cost> - <start_date>22.10.1998</start_date> - <end_date>24.10.1998</end_date> + <startDate>22.10.1998</startDate> + <endDate>24.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>9439</cost> - <start_date>06.11.1998</start_date> - <end_date>09.11.1998</end_date> + <startDate>06.11.1998</startDate> + <endDate>09.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Shelf Clearing Days</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Shelf Clearing Days</promotionName> + <mediaType>Radio</mediaType> <cost>13992</cost> - <start_date>20.11.1998</start_date> - <end_date>22.11.1998</end_date> + <startDate>20.11.1998</startDate> + <endDate>22.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>7863</cost> - <start_date>02.12.1998</start_date> - <end_date>04.12.1998</end_date> + <startDate>02.12.1998</startDate> + <endDate>04.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>Price Cutters</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>Price Cutters</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>6942</cost> - <start_date>16.12.1998</start_date> - <end_date>18.12.1998</end_date> + <startDate>16.12.1998</startDate> + <endDate>18.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>123</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>123</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>Product Attachment</mediaType> <cost>5594</cost> - <start_date>30.12.1998</start_date> - <end_date>02.01.1999</end_date> + <startDate>30.12.1998</startDate> + <endDate>02.01.1999</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Three for One</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Three for One</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>8144</cost> - <start_date>17.01.1996</start_date> - <end_date>18.01.1996</end_date> + <startDate>17.01.1996</startDate> + <endDate>18.01.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Price Savers</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Price Savers</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>12097</cost> - <start_date>02.02.1996</start_date> - <end_date>06.02.1996</end_date> + <startDate>02.02.1996</startDate> + <endDate>06.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>8785</cost> - <start_date>14.02.1996</start_date> - <end_date>17.02.1996</end_date> + <startDate>14.02.1996</startDate> + <endDate>17.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Money Grabbers</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Money Grabbers</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>10428</cost> - <start_date>28.02.1996</start_date> - <end_date>01.03.1996</end_date> + <startDate>28.02.1996</startDate> + <endDate>01.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>7717</cost> - <start_date>14.03.1996</start_date> - <end_date>17.03.1996</end_date> + <startDate>14.03.1996</startDate> + <endDate>17.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Double Down Sale</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Double Down Sale</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>6542</cost> - <start_date>29.03.1996</start_date> - <end_date>31.03.1996</end_date> + <startDate>29.03.1996</startDate> + <endDate>31.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Super Wallet Savers</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Super Wallet Savers</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>8612</cost> - <start_date>09.04.1996</start_date> - <end_date>11.04.1996</end_date> + <startDate>09.04.1996</startDate> + <endDate>11.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>11456</cost> - <start_date>23.04.1996</start_date> - <end_date>25.04.1996</end_date> + <startDate>23.04.1996</startDate> + <endDate>25.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Radio</mediaType> <cost>10454</cost> - <start_date>10.05.1996</start_date> - <end_date>12.05.1996</end_date> + <startDate>10.05.1996</startDate> + <endDate>12.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>High Roller Savings</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>High Roller Savings</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>11496</cost> - <start_date>24.05.1996</start_date> - <end_date>26.05.1996</end_date> + <startDate>24.05.1996</startDate> + <endDate>26.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Price Cutters</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Price Cutters</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>12849</cost> - <start_date>07.06.1996</start_date> - <end_date>09.06.1996</end_date> + <startDate>07.06.1996</startDate> + <endDate>09.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Three for One</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Three for One</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>14238</cost> - <start_date>20.06.1996</start_date> - <end_date>24.06.1996</end_date> + <startDate>20.06.1996</startDate> + <endDate>24.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>14945</cost> - <start_date>04.07.1996</start_date> - <end_date>07.07.1996</end_date> + <startDate>04.07.1996</startDate> + <endDate>07.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Dimes Off</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Dimes Off</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>13516</cost> - <start_date>17.07.1996</start_date> - <end_date>19.07.1996</end_date> + <startDate>17.07.1996</startDate> + <endDate>19.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Go For It</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Go For It</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>9004</cost> - <start_date>31.07.1996</start_date> - <end_date>03.08.1996</end_date> + <startDate>31.07.1996</startDate> + <endDate>03.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>11593</cost> - <start_date>13.08.1996</start_date> - <end_date>15.08.1996</end_date> + <startDate>13.08.1996</startDate> + <endDate>15.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Green Light Special</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Green Light Special</promotionName> + <mediaType>TV</mediaType> <cost>11354</cost> - <start_date>29.08.1996</start_date> - <end_date>30.08.1996</end_date> + <startDate>29.08.1996</startDate> + <endDate>30.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>14798</cost> - <start_date>13.09.1996</start_date> - <end_date>16.09.1996</end_date> + <startDate>13.09.1996</startDate> + <endDate>16.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Super Wallet Savers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Super Wallet Savers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>8323</cost> - <start_date>27.09.1996</start_date> - <end_date>28.09.1996</end_date> + <startDate>27.09.1996</startDate> + <endDate>28.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>6801</cost> - <start_date>10.10.1996</start_date> - <end_date>12.10.1996</end_date> + <startDate>10.10.1996</startDate> + <endDate>12.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>Daily Paper</mediaType> <cost>10927</cost> - <start_date>24.10.1996</start_date> - <end_date>26.10.1996</end_date> + <startDate>24.10.1996</startDate> + <endDate>26.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>13146</cost> - <start_date>07.11.1996</start_date> - <end_date>10.11.1996</end_date> + <startDate>07.11.1996</startDate> + <endDate>10.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>14707</cost> - <start_date>20.11.1996</start_date> - <end_date>23.11.1996</end_date> + <startDate>20.11.1996</startDate> + <endDate>23.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Pick Your Savings</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Pick Your Savings</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>14387</cost> - <start_date>04.12.1996</start_date> - <end_date>06.12.1996</end_date> + <startDate>04.12.1996</startDate> + <endDate>06.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Wallet Savers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Wallet Savers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>10221</cost> - <start_date>19.12.1996</start_date> - <end_date>20.12.1996</end_date> + <startDate>19.12.1996</startDate> + <endDate>20.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Coupon Spectacular</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Coupon Spectacular</promotionName> + <mediaType>TV</mediaType> <cost>10755</cost> - <start_date>01.01.1997</start_date> - <end_date>03.01.1997</end_date> + <startDate>01.01.1997</startDate> + <endDate>03.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Price Slashers</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Price Slashers</promotionName> + <mediaType>Radio</mediaType> <cost>7698</cost> - <start_date>15.01.1997</start_date> - <end_date>18.01.1997</end_date> + <startDate>15.01.1997</startDate> + <endDate>18.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Wallet Savers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Wallet Savers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>8579</cost> - <start_date>30.01.1997</start_date> - <end_date>01.02.1997</end_date> + <startDate>30.01.1997</startDate> + <endDate>01.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Super Savers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Super Savers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>13466</cost> - <start_date>12.02.1997</start_date> - <end_date>16.02.1997</end_date> + <startDate>12.02.1997</startDate> + <endDate>16.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>Radio</mediaType> <cost>8873</cost> - <start_date>27.02.1997</start_date> - <end_date>02.03.1997</end_date> + <startDate>27.02.1997</startDate> + <endDate>02.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Savings Galore</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Savings Galore</promotionName> + <mediaType>Street Handout</mediaType> <cost>13853</cost> - <start_date>13.03.1997</start_date> - <end_date>16.03.1997</end_date> + <startDate>13.03.1997</startDate> + <endDate>16.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Savings Galore</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Savings Galore</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>14525</cost> - <start_date>25.03.1997</start_date> - <end_date>27.03.1997</end_date> + <startDate>25.03.1997</startDate> + <endDate>27.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>13777</cost> - <start_date>09.04.1997</start_date> - <end_date>12.04.1997</end_date> + <startDate>09.04.1997</startDate> + <endDate>12.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Best Savings</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Best Savings</promotionName> + <mediaType>Street Handout</mediaType> <cost>11401</cost> - <start_date>24.04.1997</start_date> - <end_date>28.04.1997</end_date> + <startDate>24.04.1997</startDate> + <endDate>28.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>14418</cost> - <start_date>06.05.1997</start_date> - <end_date>08.05.1997</end_date> + <startDate>06.05.1997</startDate> + <endDate>08.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Big Promo</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Big Promo</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>12388</cost> - <start_date>22.05.1997</start_date> - <end_date>24.05.1997</end_date> + <startDate>22.05.1997</startDate> + <endDate>24.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Dollar Days</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Dollar Days</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>13350</cost> - <start_date>04.06.1997</start_date> - <end_date>05.06.1997</end_date> + <startDate>04.06.1997</startDate> + <endDate>05.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>TV</mediaType> <cost>5847</cost> - <start_date>18.06.1997</start_date> - <end_date>21.06.1997</end_date> + <startDate>18.06.1997</startDate> + <endDate>21.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Sales Galore</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Sales Galore</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>14245</cost> - <start_date>04.07.1997</start_date> - <end_date>08.07.1997</end_date> + <startDate>04.07.1997</startDate> + <endDate>08.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Money Grabbers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Money Grabbers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>10760</cost> - <start_date>17.07.1997</start_date> - <end_date>19.07.1997</end_date> + <startDate>17.07.1997</startDate> + <endDate>19.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Product Attachment</mediaType> <cost>13431</cost> - <start_date>01.08.1997</start_date> - <end_date>05.08.1997</end_date> + <startDate>01.08.1997</startDate> + <endDate>05.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Price Slashers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Price Slashers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>10044</cost> - <start_date>12.08.1997</start_date> - <end_date>15.08.1997</end_date> + <startDate>12.08.1997</startDate> + <endDate>15.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Price Smashers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Price Smashers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>13823</cost> - <start_date>28.08.1997</start_date> - <end_date>31.08.1997</end_date> + <startDate>28.08.1997</startDate> + <endDate>31.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Dimes Off</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Dimes Off</promotionName> + <mediaType>TV</mediaType> <cost>11539</cost> - <start_date>11.09.1997</start_date> - <end_date>13.09.1997</end_date> + <startDate>11.09.1997</startDate> + <endDate>13.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Double Down Sale</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Double Down Sale</promotionName> + <mediaType>Street Handout</mediaType> <cost>5919</cost> - <start_date>24.09.1997</start_date> - <end_date>27.09.1997</end_date> + <startDate>24.09.1997</startDate> + <endDate>27.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Radio</mediaType> <cost>8162</cost> - <start_date>08.10.1997</start_date> - <end_date>12.10.1997</end_date> + <startDate>08.10.1997</startDate> + <endDate>12.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Shelf Clearing Days</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Shelf Clearing Days</promotionName> + <mediaType>Radio</mediaType> <cost>9977</cost> - <start_date>24.10.1997</start_date> - <end_date>27.10.1997</end_date> + <startDate>24.10.1997</startDate> + <endDate>27.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Street Handout</mediaType> <cost>6239</cost> - <start_date>05.11.1997</start_date> - <end_date>06.11.1997</end_date> + <startDate>05.11.1997</startDate> + <endDate>06.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>12327</cost> - <start_date>18.11.1997</start_date> - <end_date>20.11.1997</end_date> + <startDate>18.11.1997</startDate> + <endDate>20.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>Radio</mediaType> <cost>9443</cost> - <start_date>02.12.1997</start_date> - <end_date>04.12.1997</end_date> + <startDate>02.12.1997</startDate> + <endDate>04.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Shelf Clearing Days</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Shelf Clearing Days</promotionName> + <mediaType>Daily Paper</mediaType> <cost>9296</cost> - <start_date>17.12.1997</start_date> - <end_date>18.12.1997</end_date> + <startDate>17.12.1997</startDate> + <endDate>18.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Pick Your Savings</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Pick Your Savings</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>5349</cost> - <start_date>30.12.1997</start_date> - <end_date>31.12.1997</end_date> + <startDate>30.12.1997</startDate> + <endDate>31.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Street Handout</mediaType> <cost>13146</cost> - <start_date>14.01.1998</start_date> - <end_date>17.01.1998</end_date> + <startDate>14.01.1998</startDate> + <endDate>17.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>5135</cost> - <start_date>27.01.1998</start_date> - <end_date>31.01.1998</end_date> + <startDate>27.01.1998</startDate> + <endDate>31.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Street Handout</mediaType> <cost>10369</cost> - <start_date>11.02.1998</start_date> - <end_date>15.02.1998</end_date> + <startDate>11.02.1998</startDate> + <endDate>15.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Best Savings</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Best Savings</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>13721</cost> - <start_date>27.02.1998</start_date> - <end_date>01.03.1998</end_date> + <startDate>27.02.1998</startDate> + <endDate>01.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Savings Galore</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Savings Galore</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>5883</cost> - <start_date>13.03.1998</start_date> - <end_date>16.03.1998</end_date> + <startDate>13.03.1998</startDate> + <endDate>16.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Two Day Sale</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Two Day Sale</promotionName> + <mediaType>Product Attachment</mediaType> <cost>10089</cost> - <start_date>24.03.1998</start_date> - <end_date>27.03.1998</end_date> + <startDate>24.03.1998</startDate> + <endDate>27.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>13360</cost> - <start_date>08.04.1998</start_date> - <end_date>12.04.1998</end_date> + <startDate>08.04.1998</startDate> + <endDate>12.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>7913</cost> - <start_date>22.04.1998</start_date> - <end_date>25.04.1998</end_date> + <startDate>22.04.1998</startDate> + <endDate>25.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Two Day Sale</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Two Day Sale</promotionName> + <mediaType>Radio</mediaType> <cost>9128</cost> - <start_date>06.05.1998</start_date> - <end_date>09.05.1998</end_date> + <startDate>06.05.1998</startDate> + <endDate>09.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>10863</cost> - <start_date>20.05.1998</start_date> - <end_date>23.05.1998</end_date> + <startDate>20.05.1998</startDate> + <endDate>23.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>13580</cost> - <start_date>05.06.1998</start_date> - <end_date>08.06.1998</end_date> + <startDate>05.06.1998</startDate> + <endDate>08.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>6678</cost> - <start_date>19.06.1998</start_date> - <end_date>22.06.1998</end_date> + <startDate>19.06.1998</startDate> + <endDate>22.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>12258</cost> - <start_date>02.07.1998</start_date> - <end_date>04.07.1998</end_date> + <startDate>02.07.1998</startDate> + <endDate>04.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Sales Galore</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Sales Galore</promotionName> + <mediaType>Product Attachment</mediaType> <cost>6210</cost> - <start_date>15.07.1998</start_date> - <end_date>17.07.1998</end_date> + <startDate>15.07.1998</startDate> + <endDate>17.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Shelf Clearing Days</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Shelf Clearing Days</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>12899</cost> - <start_date>30.07.1998</start_date> - <end_date>31.07.1998</end_date> + <startDate>30.07.1998</startDate> + <endDate>31.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Sales Galore</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Sales Galore</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>14541</cost> - <start_date>13.08.1998</start_date> - <end_date>16.08.1998</end_date> + <startDate>13.08.1998</startDate> + <endDate>16.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Radio</mediaType> <cost>11831</cost> - <start_date>28.08.1998</start_date> - <end_date>01.09.1998</end_date> + <startDate>28.08.1998</startDate> + <endDate>01.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>8000</cost> - <start_date>09.09.1998</start_date> - <end_date>12.09.1998</end_date> + <startDate>09.09.1998</startDate> + <endDate>12.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Money Grabbers</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Money Grabbers</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>12726</cost> - <start_date>22.09.1998</start_date> - <end_date>25.09.1998</end_date> + <startDate>22.09.1998</startDate> + <endDate>25.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Radio</mediaType> <cost>5569</cost> - <start_date>08.10.1998</start_date> - <end_date>11.10.1998</end_date> + <startDate>08.10.1998</startDate> + <endDate>11.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Dimes Off</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Dimes Off</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>13158</cost> - <start_date>21.10.1998</start_date> - <end_date>25.10.1998</end_date> + <startDate>21.10.1998</startDate> + <endDate>25.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Double Down Sale</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Double Down Sale</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>6856</cost> - <start_date>04.11.1998</start_date> - <end_date>07.11.1998</end_date> + <startDate>04.11.1998</startDate> + <endDate>07.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>6963</cost> - <start_date>18.11.1998</start_date> - <end_date>21.11.1998</end_date> + <startDate>18.11.1998</startDate> + <endDate>21.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Pick Your Savings</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Pick Your Savings</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>8351</cost> - <start_date>04.12.1998</start_date> - <end_date>05.12.1998</end_date> + <startDate>04.12.1998</startDate> + <endDate>05.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>124</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>124</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>Radio</mediaType> <cost>9058</cost> - <start_date>15.12.1998</start_date> - <end_date>19.12.1998</end_date> + <startDate>15.12.1998</startDate> + <endDate>19.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Best Savings</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Best Savings</promotionName> + <mediaType>TV</mediaType> <cost>13051</cost> - <start_date>17.01.1996</start_date> - <end_date>21.01.1996</end_date> + <startDate>17.01.1996</startDate> + <endDate>21.01.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Savings Galore</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Savings Galore</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>5467</cost> - <start_date>01.02.1996</start_date> - <end_date>03.02.1996</end_date> + <startDate>01.02.1996</startDate> + <endDate>03.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>6255</cost> - <start_date>14.02.1996</start_date> - <end_date>18.02.1996</end_date> + <startDate>14.02.1996</startDate> + <endDate>18.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>8994</cost> - <start_date>01.03.1996</start_date> - <end_date>02.03.1996</end_date> + <startDate>01.03.1996</startDate> + <endDate>02.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Three for One</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Three for One</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>7473</cost> - <start_date>15.03.1996</start_date> - <end_date>17.03.1996</end_date> + <startDate>15.03.1996</startDate> + <endDate>17.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>11598</cost> - <start_date>28.03.1996</start_date> - <end_date>30.03.1996</end_date> + <startDate>28.03.1996</startDate> + <endDate>30.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Super Wallet Savers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Super Wallet Savers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>7259</cost> - <start_date>12.04.1996</start_date> - <end_date>13.04.1996</end_date> + <startDate>12.04.1996</startDate> + <endDate>13.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>8821</cost> - <start_date>25.04.1996</start_date> - <end_date>28.04.1996</end_date> + <startDate>25.04.1996</startDate> + <endDate>28.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Double Down Sale</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Double Down Sale</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>8500</cost> - <start_date>09.05.1996</start_date> - <end_date>11.05.1996</end_date> + <startDate>09.05.1996</startDate> + <endDate>11.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Fantastic Discounts</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Fantastic Discounts</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>14335</cost> - <start_date>21.05.1996</start_date> - <end_date>23.05.1996</end_date> + <startDate>21.05.1996</startDate> + <endDate>23.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Go For It</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Go For It</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>14869</cost> - <start_date>07.06.1996</start_date> - <end_date>11.06.1996</end_date> + <startDate>07.06.1996</startDate> + <endDate>11.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>High Roller Savings</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>High Roller Savings</promotionName> + <mediaType>TV</mediaType> <cost>11812</cost> - <start_date>20.06.1996</start_date> - <end_date>23.06.1996</end_date> + <startDate>20.06.1996</startDate> + <endDate>23.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>10036</cost> - <start_date>04.07.1996</start_date> - <end_date>08.07.1996</end_date> + <startDate>04.07.1996</startDate> + <endDate>08.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Money Savers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Money Savers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>8914</cost> - <start_date>19.07.1996</start_date> - <end_date>22.07.1996</end_date> + <startDate>19.07.1996</startDate> + <endDate>22.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>14321</cost> - <start_date>31.07.1996</start_date> - <end_date>01.08.1996</end_date> + <startDate>31.07.1996</startDate> + <endDate>01.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>9301</cost> - <start_date>13.08.1996</start_date> - <end_date>14.08.1996</end_date> + <startDate>13.08.1996</startDate> + <endDate>14.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Super Wallet Savers</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Super Wallet Savers</promotionName> + <mediaType>Radio</mediaType> <cost>6070</cost> - <start_date>29.08.1996</start_date> - <end_date>01.09.1996</end_date> + <startDate>29.08.1996</startDate> + <endDate>01.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>Street Handout</mediaType> <cost>5323</cost> - <start_date>12.09.1996</start_date> - <end_date>16.09.1996</end_date> + <startDate>12.09.1996</startDate> + <endDate>16.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>Daily Paper</mediaType> <cost>5602</cost> - <start_date>27.09.1996</start_date> - <end_date>29.09.1996</end_date> + <startDate>27.09.1996</startDate> + <endDate>29.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Street Handout</mediaType> <cost>5963</cost> - <start_date>10.10.1996</start_date> - <end_date>13.10.1996</end_date> + <startDate>10.10.1996</startDate> + <endDate>13.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>You Save Days</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>You Save Days</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>13934</cost> - <start_date>23.10.1996</start_date> - <end_date>26.10.1996</end_date> + <startDate>23.10.1996</startDate> + <endDate>26.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>You Save Days</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>You Save Days</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>14895</cost> - <start_date>08.11.1996</start_date> - <end_date>10.11.1996</end_date> + <startDate>08.11.1996</startDate> + <endDate>10.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>Daily Paper</mediaType> <cost>10048</cost> - <start_date>22.11.1996</start_date> - <end_date>25.11.1996</end_date> + <startDate>22.11.1996</startDate> + <endDate>25.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Go For It</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Go For It</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>5004</cost> - <start_date>03.12.1996</start_date> - <end_date>07.12.1996</end_date> + <startDate>03.12.1996</startDate> + <endDate>07.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Shelf Emptiers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Shelf Emptiers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>11520</cost> - <start_date>19.12.1996</start_date> - <end_date>21.12.1996</end_date> + <startDate>19.12.1996</startDate> + <endDate>21.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Radio</mediaType> <cost>14190</cost> - <start_date>03.01.1997</start_date> - <end_date>04.01.1997</end_date> + <startDate>03.01.1997</startDate> + <endDate>04.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>High Roller Savings</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>High Roller Savings</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>11560</cost> - <start_date>16.01.1997</start_date> - <end_date>18.01.1997</end_date> + <startDate>16.01.1997</startDate> + <endDate>18.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Wallet Savers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Wallet Savers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>7995</cost> - <start_date>31.01.1997</start_date> - <end_date>04.02.1997</end_date> + <startDate>31.01.1997</startDate> + <endDate>04.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Dollar Days</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Dollar Days</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>13055</cost> - <start_date>11.02.1997</start_date> - <end_date>14.02.1997</end_date> + <startDate>11.02.1997</startDate> + <endDate>14.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Daily Paper</mediaType> <cost>10091</cost> - <start_date>26.02.1997</start_date> - <end_date>27.02.1997</end_date> + <startDate>26.02.1997</startDate> + <endDate>27.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Shelf Clearing Days</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Shelf Clearing Days</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>12334</cost> - <start_date>13.03.1997</start_date> - <end_date>15.03.1997</end_date> + <startDate>13.03.1997</startDate> + <endDate>15.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>14149</cost> - <start_date>26.03.1997</start_date> - <end_date>28.03.1997</end_date> + <startDate>26.03.1997</startDate> + <endDate>28.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Daily Paper</mediaType> <cost>10411</cost> - <start_date>09.04.1997</start_date> - <end_date>11.04.1997</end_date> + <startDate>09.04.1997</startDate> + <endDate>11.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Super Savers</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Super Savers</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>6499</cost> - <start_date>24.04.1997</start_date> - <end_date>26.04.1997</end_date> + <startDate>24.04.1997</startDate> + <endDate>26.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Daily Paper</mediaType> <cost>14862</cost> - <start_date>08.05.1997</start_date> - <end_date>11.05.1997</end_date> + <startDate>08.05.1997</startDate> + <endDate>11.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Radio</mediaType> <cost>12059</cost> - <start_date>23.05.1997</start_date> - <end_date>26.05.1997</end_date> + <startDate>23.05.1997</startDate> + <endDate>26.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>9521</cost> - <start_date>04.06.1997</start_date> - <end_date>07.06.1997</end_date> + <startDate>04.06.1997</startDate> + <endDate>07.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>Daily Paper</mediaType> <cost>7318</cost> - <start_date>19.06.1997</start_date> - <end_date>20.06.1997</end_date> + <startDate>19.06.1997</startDate> + <endDate>20.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>9307</cost> - <start_date>02.07.1997</start_date> - <end_date>04.07.1997</end_date> + <startDate>02.07.1997</startDate> + <endDate>04.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Dimes Off</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Dimes Off</promotionName> + <mediaType>Daily Paper</mediaType> <cost>14541</cost> - <start_date>17.07.1997</start_date> - <end_date>19.07.1997</end_date> + <startDate>17.07.1997</startDate> + <endDate>19.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>7893</cost> - <start_date>30.07.1997</start_date> - <end_date>02.08.1997</end_date> + <startDate>30.07.1997</startDate> + <endDate>02.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Go For It</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Go For It</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>10055</cost> - <start_date>15.08.1997</start_date> - <end_date>19.08.1997</end_date> + <startDate>15.08.1997</startDate> + <endDate>19.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Price Destroyers</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Price Destroyers</promotionName> + <mediaType>Street Handout</mediaType> <cost>14261</cost> - <start_date>27.08.1997</start_date> - <end_date>31.08.1997</end_date> + <startDate>27.08.1997</startDate> + <endDate>31.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>7532</cost> - <start_date>11.09.1997</start_date> - <end_date>13.09.1997</end_date> + <startDate>11.09.1997</startDate> + <endDate>13.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Two for One</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Two for One</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>8642</cost> - <start_date>23.09.1997</start_date> - <end_date>25.09.1997</end_date> + <startDate>23.09.1997</startDate> + <endDate>25.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Coupon Spectacular</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Coupon Spectacular</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>9858</cost> - <start_date>08.10.1997</start_date> - <end_date>11.10.1997</end_date> + <startDate>08.10.1997</startDate> + <endDate>11.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>8937</cost> - <start_date>22.10.1997</start_date> - <end_date>25.10.1997</end_date> + <startDate>22.10.1997</startDate> + <endDate>25.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>TV</mediaType> <cost>10245</cost> - <start_date>06.11.1997</start_date> - <end_date>08.11.1997</end_date> + <startDate>06.11.1997</startDate> + <endDate>08.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Green Light Days</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Green Light Days</promotionName> + <mediaType>Street Handout</mediaType> <cost>13342</cost> - <start_date>20.11.1997</start_date> - <end_date>22.11.1997</end_date> + <startDate>20.11.1997</startDate> + <endDate>22.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Double Down Sale</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Double Down Sale</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>6267</cost> - <start_date>03.12.1997</start_date> - <end_date>07.12.1997</end_date> + <startDate>03.12.1997</startDate> + <endDate>07.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>10219</cost> - <start_date>16.12.1997</start_date> - <end_date>17.12.1997</end_date> + <startDate>16.12.1997</startDate> + <endDate>17.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Three for One</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Three for One</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>6908</cost> - <start_date>30.12.1997</start_date> - <end_date>02.01.1998</end_date> + <startDate>30.12.1997</startDate> + <endDate>02.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>Street Handout</mediaType> <cost>11206</cost> - <start_date>14.01.1998</start_date> - <end_date>15.01.1998</end_date> + <startDate>14.01.1998</startDate> + <endDate>15.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>5839</cost> - <start_date>28.01.1998</start_date> - <end_date>31.01.1998</end_date> + <startDate>28.01.1998</startDate> + <endDate>31.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>5940</cost> - <start_date>10.02.1998</start_date> - <end_date>13.02.1998</end_date> + <startDate>10.02.1998</startDate> + <endDate>13.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>10666</cost> - <start_date>27.02.1998</start_date> - <end_date>02.03.1998</end_date> + <startDate>27.02.1998</startDate> + <endDate>02.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Fantastic Discounts</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Fantastic Discounts</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>10854</cost> - <start_date>11.03.1998</start_date> - <end_date>13.03.1998</end_date> + <startDate>11.03.1998</startDate> + <endDate>13.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Big Promo</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Big Promo</promotionName> + <mediaType>Radio</mediaType> <cost>9852</cost> - <start_date>27.03.1998</start_date> - <end_date>30.03.1998</end_date> + <startDate>27.03.1998</startDate> + <endDate>30.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>13550</cost> - <start_date>07.04.1998</start_date> - <end_date>09.04.1998</end_date> + <startDate>07.04.1998</startDate> + <endDate>09.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Savings Galore</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Savings Galore</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>13657</cost> - <start_date>21.04.1998</start_date> - <end_date>24.04.1998</end_date> + <startDate>21.04.1998</startDate> + <endDate>24.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Double Down Sale</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Double Down Sale</promotionName> + <mediaType>Street Handout</mediaType> <cost>5045</cost> - <start_date>07.05.1998</start_date> - <end_date>10.05.1998</end_date> + <startDate>07.05.1998</startDate> + <endDate>10.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Two for One</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Two for One</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>5752</cost> - <start_date>21.05.1998</start_date> - <end_date>24.05.1998</end_date> + <startDate>21.05.1998</startDate> + <endDate>24.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>You Save Days</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>You Save Days</promotionName> + <mediaType>Radio</mediaType> <cost>11668</cost> - <start_date>03.06.1998</start_date> - <end_date>05.06.1998</end_date> + <startDate>03.06.1998</startDate> + <endDate>05.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>TV</mediaType> <cost>9811</cost> - <start_date>17.06.1998</start_date> - <end_date>20.06.1998</end_date> + <startDate>17.06.1998</startDate> + <endDate>20.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Go For It</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Go For It</promotionName> + <mediaType>Street Handout</mediaType> <cost>9745</cost> - <start_date>03.07.1998</start_date> - <end_date>07.07.1998</end_date> + <startDate>03.07.1998</startDate> + <endDate>07.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Price Destroyers</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Price Destroyers</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>6226</cost> - <start_date>17.07.1998</start_date> - <end_date>19.07.1998</end_date> + <startDate>17.07.1998</startDate> + <endDate>19.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Two Day Sale</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Two Day Sale</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>7015</cost> - <start_date>29.07.1998</start_date> - <end_date>30.07.1998</end_date> + <startDate>29.07.1998</startDate> + <endDate>30.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>10539</cost> - <start_date>11.08.1998</start_date> - <end_date>14.08.1998</end_date> + <startDate>11.08.1998</startDate> + <endDate>14.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>11674</cost> - <start_date>25.08.1998</start_date> - <end_date>28.08.1998</end_date> + <startDate>25.08.1998</startDate> + <endDate>28.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>5799</cost> - <start_date>08.09.1998</start_date> - <end_date>12.09.1998</end_date> + <startDate>08.09.1998</startDate> + <endDate>12.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>11460</cost> - <start_date>22.09.1998</start_date> - <end_date>25.09.1998</end_date> + <startDate>22.09.1998</startDate> + <endDate>25.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Radio</mediaType> <cost>13022</cost> - <start_date>09.10.1998</start_date> - <end_date>10.10.1998</end_date> + <startDate>09.10.1998</startDate> + <endDate>10.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Radio</mediaType> <cost>12702</cost> - <start_date>23.10.1998</start_date> - <end_date>27.10.1998</end_date> + <startDate>23.10.1998</startDate> + <endDate>27.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Savings Galore</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Savings Galore</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>5880</cost> - <start_date>04.11.1998</start_date> - <end_date>08.11.1998</end_date> + <startDate>04.11.1998</startDate> + <endDate>08.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Pick Your Savings</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Pick Your Savings</promotionName> + <mediaType>Product Attachment</mediaType> <cost>6414</cost> - <start_date>18.11.1998</start_date> - <end_date>20.11.1998</end_date> + <startDate>18.11.1998</startDate> + <endDate>20.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Sales Galore</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Sales Galore</promotionName> + <mediaType>Product Attachment</mediaType> <cost>7259</cost> - <start_date>01.12.1998</start_date> - <end_date>03.12.1998</end_date> + <startDate>01.12.1998</startDate> + <endDate>03.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Daily Paper</mediaType> <cost>5484</cost> - <start_date>16.12.1998</start_date> - <end_date>18.12.1998</end_date> + <startDate>16.12.1998</startDate> + <endDate>18.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>125</promotion_district_id> - <promotion_name>Price Cutters</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>125</promotionDistrictId> + <promotionName>Price Cutters</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>13027</cost> - <start_date>29.12.1998</start_date> - <end_date>02.01.1999</end_date> + <startDate>29.12.1998</startDate> + <endDate>02.01.1999</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>Street Handout</mediaType> <cost>13414</cost> - <start_date>17.01.1996</start_date> - <end_date>20.01.1996</end_date> + <startDate>17.01.1996</startDate> + <endDate>20.01.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>TV</mediaType> <cost>10184</cost> - <start_date>02.02.1996</start_date> - <end_date>06.02.1996</end_date> + <startDate>02.02.1996</startDate> + <endDate>06.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Price Slashers</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Price Slashers</promotionName> + <mediaType>Daily Paper</mediaType> <cost>9436</cost> - <start_date>14.02.1996</start_date> - <end_date>16.02.1996</end_date> + <startDate>14.02.1996</startDate> + <endDate>16.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>9716</cost> - <start_date>28.02.1996</start_date> - <end_date>02.03.1996</end_date> + <startDate>28.02.1996</startDate> + <endDate>02.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Daily Paper</mediaType> <cost>10077</cost> - <start_date>15.03.1996</start_date> - <end_date>18.03.1996</end_date> + <startDate>15.03.1996</startDate> + <endDate>18.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>TV</mediaType> <cost>8047</cost> - <start_date>28.03.1996</start_date> - <end_date>29.03.1996</end_date> + <startDate>28.03.1996</startDate> + <endDate>29.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>9009</cost> - <start_date>10.04.1996</start_date> - <end_date>13.04.1996</end_date> + <startDate>10.04.1996</startDate> + <endDate>13.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>10719</cost> - <start_date>25.04.1996</start_date> - <end_date>28.04.1996</end_date> + <startDate>25.04.1996</startDate> + <endDate>28.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>9117</cost> - <start_date>08.05.1996</start_date> - <end_date>10.05.1996</end_date> + <startDate>08.05.1996</startDate> + <endDate>10.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Price Cutters</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Price Cutters</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>5633</cost> - <start_date>22.05.1996</start_date> - <end_date>25.05.1996</end_date> + <startDate>22.05.1996</startDate> + <endDate>25.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>8303</cost> - <start_date>05.06.1996</start_date> - <end_date>07.06.1996</end_date> + <startDate>05.06.1996</startDate> + <endDate>07.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Green Light Special</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Green Light Special</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>5673</cost> - <start_date>21.06.1996</start_date> - <end_date>24.06.1996</end_date> + <startDate>21.06.1996</startDate> + <endDate>24.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>12108</cost> - <start_date>03.07.1996</start_date> - <end_date>05.07.1996</end_date> + <startDate>03.07.1996</startDate> + <endDate>05.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>You Save Days</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>You Save Days</promotionName> + <mediaType>Radio</mediaType> <cost>7169</cost> - <start_date>17.07.1996</start_date> - <end_date>21.07.1996</end_date> + <startDate>17.07.1996</startDate> + <endDate>21.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>Product Attachment</mediaType> <cost>11548</cost> - <start_date>02.08.1996</start_date> - <end_date>04.08.1996</end_date> + <startDate>02.08.1996</startDate> + <endDate>04.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>13791</cost> - <start_date>14.08.1996</start_date> - <end_date>17.08.1996</end_date> + <startDate>14.08.1996</startDate> + <endDate>17.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>8263</cost> - <start_date>29.08.1996</start_date> - <end_date>31.08.1996</end_date> + <startDate>29.08.1996</startDate> + <endDate>31.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Best Savings</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Best Savings</promotionName> + <mediaType>Radio</mediaType> <cost>13115</cost> - <start_date>13.09.1996</start_date> - <end_date>17.09.1996</end_date> + <startDate>13.09.1996</startDate> + <endDate>17.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Shelf Emptiers</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Shelf Emptiers</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>11859</cost> - <start_date>26.09.1996</start_date> - <end_date>30.09.1996</end_date> + <startDate>26.09.1996</startDate> + <endDate>30.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Product Attachment</mediaType> <cost>8975</cost> - <start_date>11.10.1996</start_date> - <end_date>15.10.1996</end_date> + <startDate>11.10.1996</startDate> + <endDate>15.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>6172</cost> - <start_date>23.10.1996</start_date> - <end_date>24.10.1996</end_date> + <startDate>23.10.1996</startDate> + <endDate>24.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Shelf Clearing Days</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Shelf Clearing Days</promotionName> + <mediaType>Radio</mediaType> <cost>10979</cost> - <start_date>07.11.1996</start_date> - <end_date>10.11.1996</end_date> + <startDate>07.11.1996</startDate> + <endDate>10.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>11432</cost> - <start_date>22.11.1996</start_date> - <end_date>24.11.1996</end_date> + <startDate>22.11.1996</startDate> + <endDate>24.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Price Slashers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Price Slashers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>10765</cost> - <start_date>05.12.1996</start_date> - <end_date>07.12.1996</end_date> + <startDate>05.12.1996</startDate> + <endDate>07.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>Product Attachment</mediaType> <cost>5999</cost> - <start_date>17.12.1996</start_date> - <end_date>20.12.1996</end_date> + <startDate>17.12.1996</startDate> + <endDate>20.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Price Cutters</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Price Cutters</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>12006</cost> - <start_date>02.01.1997</start_date> - <end_date>05.01.1997</end_date> + <startDate>02.01.1997</startDate> + <endDate>05.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Price Savers</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Price Savers</promotionName> + <mediaType>Street Handout</mediaType> <cost>11513</cost> - <start_date>15.01.1997</start_date> - <end_date>17.01.1997</end_date> + <startDate>15.01.1997</startDate> + <endDate>17.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Three for One</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Three for One</promotionName> + <mediaType>Product Attachment</mediaType> <cost>12247</cost> - <start_date>29.01.1997</start_date> - <end_date>01.02.1997</end_date> + <startDate>29.01.1997</startDate> + <endDate>01.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Street Handout</mediaType> <cost>5518</cost> - <start_date>12.02.1997</start_date> - <end_date>13.02.1997</end_date> + <startDate>12.02.1997</startDate> + <endDate>13.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Fantastic Discounts</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Fantastic Discounts</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>7415</cost> - <start_date>26.02.1997</start_date> - <end_date>01.03.1997</end_date> + <startDate>26.02.1997</startDate> + <endDate>01.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Green Light Days</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Green Light Days</promotionName> + <mediaType>Product Attachment</mediaType> <cost>11286</cost> - <start_date>13.03.1997</start_date> - <end_date>16.03.1997</end_date> + <startDate>13.03.1997</startDate> + <endDate>16.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Two Day Sale</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Two Day Sale</promotionName> + <mediaType>Daily Paper</mediaType> <cost>10365</cost> - <start_date>27.03.1997</start_date> - <end_date>30.03.1997</end_date> + <startDate>27.03.1997</startDate> + <endDate>30.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Dollar Days</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Dollar Days</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>9017</cost> - <start_date>10.04.1997</start_date> - <end_date>12.04.1997</end_date> + <startDate>10.04.1997</startDate> + <endDate>12.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>14771</cost> - <start_date>24.04.1997</start_date> - <end_date>26.04.1997</end_date> + <startDate>24.04.1997</startDate> + <endDate>26.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Green Light Special</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Green Light Special</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>7695</cost> - <start_date>07.05.1997</start_date> - <end_date>08.05.1997</end_date> + <startDate>07.05.1997</startDate> + <endDate>08.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Money Savers</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Money Savers</promotionName> + <mediaType>Daily Paper</mediaType> <cost>11647</cost> - <start_date>21.05.1997</start_date> - <end_date>25.05.1997</end_date> + <startDate>21.05.1997</startDate> + <endDate>25.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Dollar Days</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Dollar Days</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>8336</cost> - <start_date>04.06.1997</start_date> - <end_date>07.06.1997</end_date> + <startDate>04.06.1997</startDate> + <endDate>07.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Dollar Days</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Dollar Days</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>13881</cost> - <start_date>19.06.1997</start_date> - <end_date>22.06.1997</end_date> + <startDate>19.06.1997</startDate> + <endDate>22.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Price Savers</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Price Savers</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>11170</cost> - <start_date>04.07.1997</start_date> - <end_date>05.07.1997</end_date> + <startDate>04.07.1997</startDate> + <endDate>05.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>9995</cost> - <start_date>16.07.1997</start_date> - <end_date>19.07.1997</end_date> + <startDate>16.07.1997</startDate> + <endDate>19.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Big Promo</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Big Promo</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>12065</cost> - <start_date>30.07.1997</start_date> - <end_date>02.08.1997</end_date> + <startDate>30.07.1997</startDate> + <endDate>02.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Sales Galore</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Sales Galore</promotionName> + <mediaType>Product Attachment</mediaType> <cost>14908</cost> - <start_date>14.08.1997</start_date> - <end_date>17.08.1997</end_date> + <startDate>14.08.1997</startDate> + <endDate>17.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>13906</cost> - <start_date>27.08.1997</start_date> - <end_date>30.08.1997</end_date> + <startDate>27.08.1997</startDate> + <endDate>30.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>7605</cost> - <start_date>10.09.1997</start_date> - <end_date>13.09.1997</end_date> + <startDate>10.09.1997</startDate> + <endDate>13.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Super Wallet Savers</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Super Wallet Savers</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>7711</cost> - <start_date>24.09.1997</start_date> - <end_date>27.09.1997</end_date> + <startDate>24.09.1997</startDate> + <endDate>27.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Daily Paper</mediaType> <cost>9100</cost> - <start_date>09.10.1997</start_date> - <end_date>10.10.1997</end_date> + <startDate>09.10.1997</startDate> + <endDate>10.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Super Savers</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Super Savers</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>7151</cost> - <start_date>23.10.1997</start_date> - <end_date>27.10.1997</end_date> + <startDate>23.10.1997</startDate> + <endDate>27.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Fantastic Discounts</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Fantastic Discounts</promotionName> + <mediaType>TV</mediaType> <cost>5722</cost> - <start_date>06.11.1997</start_date> - <end_date>09.11.1997</end_date> + <startDate>06.11.1997</startDate> + <endDate>09.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Big Promo</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Big Promo</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>5112</cost> - <start_date>21.11.1997</start_date> - <end_date>23.11.1997</end_date> + <startDate>21.11.1997</startDate> + <endDate>23.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>7702</cost> - <start_date>04.12.1997</start_date> - <end_date>05.12.1997</end_date> + <startDate>04.12.1997</startDate> + <endDate>05.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>Radio</mediaType> <cost>7462</cost> - <start_date>17.12.1997</start_date> - <end_date>20.12.1997</end_date> + <startDate>17.12.1997</startDate> + <endDate>20.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>10906</cost> - <start_date>01.01.1998</start_date> - <end_date>03.01.1998</end_date> + <startDate>01.01.1998</startDate> + <endDate>03.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>14431</cost> - <start_date>14.01.1998</start_date> - <end_date>18.01.1998</end_date> + <startDate>14.01.1998</startDate> + <endDate>18.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>High Roller Savings</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>High Roller Savings</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>5566</cost> - <start_date>28.01.1998</start_date> - <end_date>29.01.1998</end_date> + <startDate>28.01.1998</startDate> + <endDate>29.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Dollar Days</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Dollar Days</promotionName> + <mediaType>Street Handout</mediaType> <cost>7035</cost> - <start_date>11.02.1998</start_date> - <end_date>13.02.1998</end_date> + <startDate>11.02.1998</startDate> + <endDate>13.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Radio</mediaType> <cost>5352</cost> - <start_date>25.02.1998</start_date> - <end_date>01.03.1998</end_date> + <startDate>25.02.1998</startDate> + <endDate>01.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>Street Handout</mediaType> <cost>14258</cost> - <start_date>11.03.1998</start_date> - <end_date>14.03.1998</end_date> + <startDate>11.03.1998</startDate> + <endDate>14.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>13937</cost> - <start_date>25.03.1998</start_date> - <end_date>27.03.1998</end_date> + <startDate>25.03.1998</startDate> + <endDate>27.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>13674</cost> - <start_date>08.04.1998</start_date> - <end_date>10.04.1998</end_date> + <startDate>08.04.1998</startDate> + <endDate>10.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Price Destroyers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Price Destroyers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>14208</cost> - <start_date>21.04.1998</start_date> - <end_date>22.04.1998</end_date> + <startDate>21.04.1998</startDate> + <endDate>22.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Shelf Emptiers</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Shelf Emptiers</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>11151</cost> - <start_date>07.05.1998</start_date> - <end_date>11.05.1998</end_date> + <startDate>07.05.1998</startDate> + <endDate>11.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Price Slashers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Price Slashers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>12031</cost> - <start_date>19.05.1998</start_date> - <end_date>20.05.1998</end_date> + <startDate>19.05.1998</startDate> + <endDate>20.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Double Down Sale</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Double Down Sale</promotionName> + <mediaType>TV</mediaType> <cost>9574</cost> - <start_date>04.06.1998</start_date> - <end_date>07.06.1998</end_date> + <startDate>04.06.1998</startDate> + <endDate>07.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Green Light Days</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Green Light Days</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>14982</cost> - <start_date>17.06.1998</start_date> - <end_date>21.06.1998</end_date> + <startDate>17.06.1998</startDate> + <endDate>21.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>7305</cost> - <start_date>03.07.1998</start_date> - <end_date>04.07.1998</end_date> + <startDate>03.07.1998</startDate> + <endDate>04.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Street Handout</mediaType> <cost>6731</cost> - <start_date>15.07.1998</start_date> - <end_date>18.07.1998</end_date> + <startDate>15.07.1998</startDate> + <endDate>18.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Two for One</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Two for One</promotionName> + <mediaType>Product Attachment</mediaType> <cost>5983</cost> - <start_date>30.07.1998</start_date> - <end_date>03.08.1998</end_date> + <startDate>30.07.1998</startDate> + <endDate>03.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Sales Galore</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Sales Galore</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>6263</cost> - <start_date>11.08.1998</start_date> - <end_date>13.08.1998</end_date> + <startDate>11.08.1998</startDate> + <endDate>13.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Product Attachment</mediaType> <cost>6624</cost> - <start_date>26.08.1998</start_date> - <end_date>28.08.1998</end_date> + <startDate>26.08.1998</startDate> + <endDate>28.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>6004</cost> - <start_date>09.09.1998</start_date> - <end_date>12.09.1998</end_date> + <startDate>09.09.1998</startDate> + <endDate>12.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>6965</cost> - <start_date>22.09.1998</start_date> - <end_date>25.09.1998</end_date> + <startDate>22.09.1998</startDate> + <endDate>25.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>9463</cost> - <start_date>08.10.1998</start_date> - <end_date>12.10.1998</end_date> + <startDate>08.10.1998</startDate> + <endDate>12.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>7860</cost> - <start_date>21.10.1998</start_date> - <end_date>23.10.1998</end_date> + <startDate>21.10.1998</startDate> + <endDate>23.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>Daily Paper</mediaType> <cost>7032</cost> - <start_date>04.11.1998</start_date> - <end_date>07.11.1998</end_date> + <startDate>04.11.1998</startDate> + <endDate>07.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Big Promo</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Big Promo</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>9702</cost> - <start_date>18.11.1998</start_date> - <end_date>20.11.1998</end_date> + <startDate>18.11.1998</startDate> + <endDate>20.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Coupon Spectacular</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Coupon Spectacular</promotionName> + <mediaType>Street Handout</mediaType> <cost>7072</cost> - <start_date>03.12.1998</start_date> - <end_date>06.12.1998</end_date> + <startDate>03.12.1998</startDate> + <endDate>06.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Sales Galore</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Sales Galore</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>10851</cost> - <start_date>16.12.1998</start_date> - <end_date>18.12.1998</end_date> + <startDate>16.12.1998</startDate> + <endDate>18.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>126</promotion_district_id> - <promotion_name>Price Cutters</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>126</promotionDistrictId> + <promotionName>Price Cutters</promotionName> + <mediaType>Street Handout</mediaType> <cost>8568</cost> - <start_date>30.12.1998</start_date> - <end_date>31.12.1998</end_date> + <startDate>30.12.1998</startDate> + <endDate>31.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>9122</cost> - <start_date>18.01.1996</start_date> - <end_date>22.01.1996</end_date> + <startDate>18.01.1996</startDate> + <endDate>22.01.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>10937</cost> - <start_date>02.02.1996</start_date> - <end_date>06.02.1996</end_date> + <startDate>02.02.1996</startDate> + <endDate>06.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Three for One</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Three for One</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>7199</cost> - <start_date>14.02.1996</start_date> - <end_date>16.02.1996</end_date> + <startDate>14.02.1996</startDate> + <endDate>16.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Price Cutters</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Price Cutters</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>13287</cost> - <start_date>28.02.1996</start_date> - <end_date>01.03.1996</end_date> + <startDate>28.02.1996</startDate> + <endDate>01.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>10403</cost> - <start_date>12.03.1996</start_date> - <end_date>14.03.1996</end_date> + <startDate>12.03.1996</startDate> + <endDate>14.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>10256</cost> - <start_date>28.03.1996</start_date> - <end_date>30.03.1996</end_date> + <startDate>28.03.1996</startDate> + <endDate>30.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Shelf Emptiers</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Shelf Emptiers</promotionName> + <mediaType>TV</mediaType> <cost>5063</cost> - <start_date>12.04.1996</start_date> - <end_date>13.04.1996</end_date> + <startDate>12.04.1996</startDate> + <endDate>13.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>Street Handout</mediaType> <cost>12860</cost> - <start_date>24.04.1996</start_date> - <end_date>28.04.1996</end_date> + <startDate>24.04.1996</startDate> + <endDate>28.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>You Save Days</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>You Save Days</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>14849</cost> - <start_date>07.05.1996</start_date> - <end_date>11.05.1996</end_date> + <startDate>07.05.1996</startDate> + <endDate>11.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>10083</cost> - <start_date>22.05.1996</start_date> - <end_date>23.05.1996</end_date> + <startDate>22.05.1996</startDate> + <endDate>23.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>6090</cost> - <start_date>07.06.1996</start_date> - <end_date>09.06.1996</end_date> + <startDate>07.06.1996</startDate> + <endDate>09.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Dimes Off</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Dimes Off</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>9499</cost> - <start_date>19.06.1996</start_date> - <end_date>23.06.1996</end_date> + <startDate>19.06.1996</startDate> + <endDate>23.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Price Slashers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Price Slashers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>6361</cost> - <start_date>03.07.1996</start_date> - <end_date>04.07.1996</end_date> + <startDate>03.07.1996</startDate> + <endDate>04.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Daily Paper</mediaType> <cost>6976</cost> - <start_date>18.07.1996</start_date> - <end_date>20.07.1996</end_date> + <startDate>18.07.1996</startDate> + <endDate>20.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Sales Galore</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Sales Galore</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>11528</cost> - <start_date>01.08.1996</start_date> - <end_date>02.08.1996</end_date> + <startDate>01.08.1996</startDate> + <endDate>02.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>5399</cost> - <start_date>16.08.1996</start_date> - <end_date>18.08.1996</end_date> + <startDate>16.08.1996</startDate> + <endDate>18.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Product Attachment</mediaType> <cost>14479</cost> - <start_date>30.08.1996</start_date> - <end_date>31.08.1996</end_date> + <startDate>30.08.1996</startDate> + <endDate>31.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>13130</cost> - <start_date>10.09.1996</start_date> - <end_date>12.09.1996</end_date> + <startDate>10.09.1996</startDate> + <endDate>12.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Wallet Savers</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Wallet Savers</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>6228</cost> - <start_date>27.09.1996</start_date> - <end_date>30.09.1996</end_date> + <startDate>27.09.1996</startDate> + <endDate>30.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>11808</cost> - <start_date>10.10.1996</start_date> - <end_date>12.10.1996</end_date> + <startDate>10.10.1996</startDate> + <endDate>12.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>Product Attachment</mediaType> <cost>5760</cost> - <start_date>23.10.1996</start_date> - <end_date>25.10.1996</end_date> + <startDate>23.10.1996</startDate> + <endDate>25.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>Daily Paper</mediaType> <cost>6351</cost> - <start_date>08.11.1996</start_date> - <end_date>10.11.1996</end_date> + <startDate>08.11.1996</startDate> + <endDate>10.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>Radio</mediaType> <cost>7994</cost> - <start_date>22.11.1996</start_date> - <end_date>26.11.1996</end_date> + <startDate>22.11.1996</startDate> + <endDate>26.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>5283</cost> - <start_date>04.12.1996</start_date> - <end_date>06.12.1996</end_date> + <startDate>04.12.1996</startDate> + <endDate>06.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>14108</cost> - <start_date>19.12.1996</start_date> - <end_date>21.12.1996</end_date> + <startDate>19.12.1996</startDate> + <endDate>21.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>Radio</mediaType> <cost>6178</cost> - <start_date>02.01.1997</start_date> - <end_date>03.01.1997</end_date> + <startDate>02.01.1997</startDate> + <endDate>03.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>9022</cost> - <start_date>17.01.1997</start_date> - <end_date>18.01.1997</end_date> + <startDate>17.01.1997</startDate> + <endDate>18.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Fantastic Discounts</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Fantastic Discounts</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>8020</cost> - <start_date>30.01.1997</start_date> - <end_date>31.01.1997</end_date> + <startDate>30.01.1997</startDate> + <endDate>31.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Product Attachment</mediaType> <cost>9062</cost> - <start_date>13.02.1997</start_date> - <end_date>17.02.1997</end_date> + <startDate>13.02.1997</startDate> + <endDate>17.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Street Handout</mediaType> <cost>9169</cost> - <start_date>27.02.1997</start_date> - <end_date>28.02.1997</end_date> + <startDate>27.02.1997</startDate> + <endDate>28.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>Product Attachment</mediaType> <cost>10557</cost> - <start_date>12.03.1997</start_date> - <end_date>15.03.1997</end_date> + <startDate>12.03.1997</startDate> + <endDate>15.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>5167</cost> - <start_date>27.03.1997</start_date> - <end_date>30.03.1997</end_date> + <startDate>27.03.1997</startDate> + <endDate>30.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>13738</cost> - <start_date>09.04.1997</start_date> - <end_date>11.04.1997</end_date> + <startDate>09.04.1997</startDate> + <endDate>11.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>9226</cost> - <start_date>23.04.1997</start_date> - <end_date>26.04.1997</end_date> + <startDate>23.04.1997</startDate> + <endDate>26.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Dimes Off</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Dimes Off</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>11815</cost> - <start_date>06.05.1997</start_date> - <end_date>08.05.1997</end_date> + <startDate>06.05.1997</startDate> + <endDate>08.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Green Light Days</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Green Light Days</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>11576</cost> - <start_date>22.05.1997</start_date> - <end_date>23.05.1997</end_date> + <startDate>22.05.1997</startDate> + <endDate>23.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>5020</cost> - <start_date>06.06.1997</start_date> - <end_date>09.06.1997</end_date> + <startDate>06.06.1997</startDate> + <endDate>09.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Wallet Savers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Wallet Savers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>8544</cost> - <start_date>20.06.1997</start_date> - <end_date>21.06.1997</end_date> + <startDate>20.06.1997</startDate> + <endDate>21.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Green Light Special</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Green Light Special</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>7023</cost> - <start_date>03.07.1997</start_date> - <end_date>05.07.1997</end_date> + <startDate>03.07.1997</startDate> + <endDate>05.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>You Save Days</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>You Save Days</promotionName> + <mediaType>Daily Paper</mediaType> <cost>11148</cost> - <start_date>17.07.1997</start_date> - <end_date>20.07.1997</end_date> + <startDate>17.07.1997</startDate> + <endDate>20.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>6809</cost> - <start_date>01.08.1997</start_date> - <end_date>02.08.1997</end_date> + <startDate>01.08.1997</startDate> + <endDate>02.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Three for One</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Three for One</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>9705</cost> - <start_date>14.08.1997</start_date> - <end_date>15.08.1997</end_date> + <startDate>14.08.1997</startDate> + <endDate>15.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>9385</cost> - <start_date>29.08.1997</start_date> - <end_date>01.09.1997</end_date> + <startDate>29.08.1997</startDate> + <endDate>01.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>5219</cost> - <start_date>09.09.1997</start_date> - <end_date>12.09.1997</end_date> + <startDate>09.09.1997</startDate> + <endDate>12.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Shelf Clearing Days</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Shelf Clearing Days</promotionName> + <mediaType>Product Attachment</mediaType> <cost>5753</cost> - <start_date>26.09.1997</start_date> - <end_date>30.09.1997</end_date> + <startDate>26.09.1997</startDate> + <endDate>30.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>Daily Paper</mediaType> <cost>12696</cost> - <start_date>10.10.1997</start_date> - <end_date>11.10.1997</end_date> + <startDate>10.10.1997</startDate> + <endDate>11.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>13577</cost> - <start_date>22.10.1997</start_date> - <end_date>26.10.1997</end_date> + <startDate>22.10.1997</startDate> + <endDate>26.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>8464</cost> - <start_date>07.11.1997</start_date> - <end_date>09.11.1997</end_date> + <startDate>07.11.1997</startDate> + <endDate>09.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>Daily Paper</mediaType> <cost>13871</cost> - <start_date>19.11.1997</start_date> - <end_date>20.11.1997</end_date> + <startDate>19.11.1997</startDate> + <endDate>20.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Best Savings</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Best Savings</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>8851</cost> - <start_date>02.12.1997</start_date> - <end_date>03.12.1997</end_date> + <startDate>02.12.1997</startDate> + <endDate>03.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Dimes Off</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Dimes Off</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>8276</cost> - <start_date>17.12.1997</start_date> - <end_date>20.12.1997</end_date> + <startDate>17.12.1997</startDate> + <endDate>20.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Street Handout</mediaType> <cost>7529</cost> - <start_date>31.12.1997</start_date> - <end_date>03.01.1998</end_date> + <startDate>31.12.1997</startDate> + <endDate>03.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Money Savers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Money Savers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>11711</cost> - <start_date>15.01.1998</start_date> - <end_date>19.01.1998</end_date> + <startDate>15.01.1998</startDate> + <endDate>19.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Wallet Savers</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Wallet Savers</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>14728</cost> - <start_date>28.01.1998</start_date> - <end_date>30.01.1998</end_date> + <startDate>28.01.1998</startDate> + <endDate>30.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>12698</cost> - <start_date>12.02.1998</start_date> - <end_date>14.02.1998</end_date> + <startDate>12.02.1998</startDate> + <endDate>14.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>13659</cost> - <start_date>26.02.1998</start_date> - <end_date>27.02.1998</end_date> + <startDate>26.02.1998</startDate> + <endDate>27.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>TV</mediaType> <cost>6157</cost> - <start_date>11.03.1998</start_date> - <end_date>14.03.1998</end_date> + <startDate>11.03.1998</startDate> + <endDate>14.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Savings Galore</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Savings Galore</promotionName> + <mediaType>Daily Paper</mediaType> <cost>14554</cost> - <start_date>27.03.1998</start_date> - <end_date>31.03.1998</end_date> + <startDate>27.03.1998</startDate> + <endDate>31.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>11070</cost> - <start_date>09.04.1998</start_date> - <end_date>11.04.1998</end_date> + <startDate>09.04.1998</startDate> + <endDate>11.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Super Wallet Savers</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Super Wallet Savers</promotionName> + <mediaType>Radio</mediaType> <cost>13740</cost> - <start_date>24.04.1998</start_date> - <end_date>28.04.1998</end_date> + <startDate>24.04.1998</startDate> + <endDate>28.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Super Wallet Savers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Super Wallet Savers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>13766</cost> - <start_date>06.05.1998</start_date> - <end_date>07.05.1998</end_date> + <startDate>06.05.1998</startDate> + <endDate>07.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Shelf Emptiers</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Shelf Emptiers</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>8791</cost> - <start_date>20.05.1998</start_date> - <end_date>21.05.1998</end_date> + <startDate>20.05.1998</startDate> + <endDate>21.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Green Light Special</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Green Light Special</promotionName> + <mediaType>Product Attachment</mediaType> <cost>6508</cost> - <start_date>02.06.1998</start_date> - <end_date>06.06.1998</end_date> + <startDate>02.06.1998</startDate> + <endDate>06.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>10887</cost> - <start_date>18.06.1998</start_date> - <end_date>19.06.1998</end_date> + <startDate>18.06.1998</startDate> + <endDate>19.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>Daily Paper</mediaType> <cost>13130</cost> - <start_date>03.07.1998</start_date> - <end_date>05.07.1998</end_date> + <startDate>03.07.1998</startDate> + <endDate>05.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Coupon Spectacular</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Coupon Spectacular</promotionName> + <mediaType>Daily Paper</mediaType> <cost>14946</cost> - <start_date>15.07.1998</start_date> - <end_date>17.07.1998</end_date> + <startDate>15.07.1998</startDate> + <endDate>17.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Pick Your Savings</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Pick Your Savings</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>11208</cost> - <start_date>30.07.1998</start_date> - <end_date>02.08.1998</end_date> + <startDate>30.07.1998</startDate> + <endDate>02.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>High Roller Savings</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>High Roller Savings</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>7296</cost> - <start_date>13.08.1998</start_date> - <end_date>16.08.1998</end_date> + <startDate>13.08.1998</startDate> + <endDate>16.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Wallet Savers</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Wallet Savers</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>14412</cost> - <start_date>27.08.1998</start_date> - <end_date>30.08.1998</end_date> + <startDate>27.08.1998</startDate> + <endDate>30.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Coupon Spectacular</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Coupon Spectacular</promotionName> + <mediaType>Radio</mediaType> <cost>14265</cost> - <start_date>10.09.1998</start_date> - <end_date>13.09.1998</end_date> + <startDate>10.09.1998</startDate> + <endDate>13.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>9071</cost> - <start_date>23.09.1998</start_date> - <end_date>25.09.1998</end_date> + <startDate>23.09.1998</startDate> + <endDate>25.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Big Promo</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Big Promo</promotionName> + <mediaType>Daily Paper</mediaType> <cost>6869</cost> - <start_date>08.10.1998</start_date> - <end_date>10.10.1998</end_date> + <startDate>08.10.1998</startDate> + <endDate>10.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Sales Galore</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Sales Galore</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>12923</cost> - <start_date>23.10.1998</start_date> - <end_date>26.10.1998</end_date> + <startDate>23.10.1998</startDate> + <endDate>26.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Coupon Spectacular</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Coupon Spectacular</promotionName> + <mediaType>Product Attachment</mediaType> <cost>8157</cost> - <start_date>03.11.1998</start_date> - <end_date>06.11.1998</end_date> + <startDate>03.11.1998</startDate> + <endDate>06.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Price Smashers</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Price Smashers</promotionName> + <mediaType>Daily Paper</mediaType> <cost>11509</cost> - <start_date>19.11.1998</start_date> - <end_date>20.11.1998</end_date> + <startDate>19.11.1998</startDate> + <endDate>20.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Dollar Days</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Dollar Days</promotionName> + <mediaType>Radio</mediaType> <cost>13671</cost> - <start_date>03.12.1998</start_date> - <end_date>05.12.1998</end_date> + <startDate>03.12.1998</startDate> + <endDate>05.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>High Roller Savings</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>High Roller Savings</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>7877</cost> - <start_date>17.12.1998</start_date> - <end_date>19.12.1998</end_date> + <startDate>17.12.1998</startDate> + <endDate>19.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>127</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>127</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Product Attachment</mediaType> <cost>11148</cost> - <start_date>29.12.1998</start_date> - <end_date>01.01.1999</end_date> + <startDate>29.12.1998</startDate> + <endDate>01.01.1999</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>High Roller Savings</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>High Roller Savings</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>6916</cost> - <start_date>16.01.1996</start_date> - <end_date>18.01.1996</end_date> + <startDate>16.01.1996</startDate> + <endDate>18.01.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Shelf Clearing Days</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Shelf Clearing Days</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>8651</cost> - <start_date>30.01.1996</start_date> - <end_date>01.02.1996</end_date> + <startDate>30.01.1996</startDate> + <endDate>01.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>Street Handout</mediaType> <cost>7302</cost> - <start_date>14.02.1996</start_date> - <end_date>18.02.1996</end_date> + <startDate>14.02.1996</startDate> + <endDate>18.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Sales Galore</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Sales Galore</promotionName> + <mediaType>Product Attachment</mediaType> <cost>11646</cost> - <start_date>28.02.1996</start_date> - <end_date>29.02.1996</end_date> + <startDate>28.02.1996</startDate> + <endDate>29.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>7227</cost> - <start_date>13.03.1996</start_date> - <end_date>16.03.1996</end_date> + <startDate>13.03.1996</startDate> + <endDate>16.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>11179</cost> - <start_date>29.03.1996</start_date> - <end_date>02.04.1996</end_date> + <startDate>29.03.1996</startDate> + <endDate>02.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Coupon Spectacular</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Coupon Spectacular</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>7867</cost> - <start_date>09.04.1996</start_date> - <end_date>12.04.1996</end_date> + <startDate>09.04.1996</startDate> + <endDate>12.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>9510</cost> - <start_date>23.04.1996</start_date> - <end_date>24.04.1996</end_date> + <startDate>23.04.1996</startDate> + <endDate>24.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Daily Paper</mediaType> <cost>6799</cost> - <start_date>08.05.1996</start_date> - <end_date>10.05.1996</end_date> + <startDate>08.05.1996</startDate> + <endDate>10.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>12969</cost> - <start_date>23.05.1996</start_date> - <end_date>25.05.1996</end_date> + <startDate>23.05.1996</startDate> + <endDate>25.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Price Cutters</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Price Cutters</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>7694</cost> - <start_date>06.06.1996</start_date> - <end_date>08.06.1996</end_date> + <startDate>06.06.1996</startDate> + <endDate>08.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Price Smashers</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Price Smashers</promotionName> + <mediaType>Daily Paper</mediaType> <cost>10538</cost> - <start_date>18.06.1996</start_date> - <end_date>20.06.1996</end_date> + <startDate>18.06.1996</startDate> + <endDate>20.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Coupon Spectacular</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Coupon Spectacular</promotionName> + <mediaType>Product Attachment</mediaType> <cost>6880</cost> - <start_date>04.07.1996</start_date> - <end_date>06.07.1996</end_date> + <startDate>04.07.1996</startDate> + <endDate>06.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Big Promo</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Big Promo</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>7165</cost> - <start_date>17.07.1996</start_date> - <end_date>20.07.1996</end_date> + <startDate>17.07.1996</startDate> + <endDate>20.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>7272</cost> - <start_date>31.07.1996</start_date> - <end_date>04.08.1996</end_date> + <startDate>31.07.1996</startDate> + <endDate>04.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>8661</cost> - <start_date>16.08.1996</start_date> - <end_date>17.08.1996</end_date> + <startDate>16.08.1996</startDate> + <endDate>17.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Price Cutters</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Price Cutters</promotionName> + <mediaType>Street Handout</mediaType> <cost>9368</cost> - <start_date>27.08.1996</start_date> - <end_date>31.08.1996</end_date> + <startDate>27.08.1996</startDate> + <endDate>31.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>5283</cost> - <start_date>12.09.1996</start_date> - <end_date>16.09.1996</end_date> + <startDate>12.09.1996</startDate> + <endDate>16.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Fantastic Discounts</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Fantastic Discounts</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>13427</cost> - <start_date>26.09.1996</start_date> - <end_date>27.09.1996</end_date> + <startDate>26.09.1996</startDate> + <endDate>27.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Money Savers</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Money Savers</promotionName> + <mediaType>TV</mediaType> <cost>13361</cost> - <start_date>09.10.1996</start_date> - <end_date>13.10.1996</end_date> + <startDate>09.10.1996</startDate> + <endDate>13.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Price Slashers</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Price Slashers</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>5777</cost> - <start_date>25.10.1996</start_date> - <end_date>27.10.1996</end_date> + <startDate>25.10.1996</startDate> + <endDate>27.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>6565</cost> - <start_date>06.11.1996</start_date> - <end_date>07.11.1996</end_date> + <startDate>06.11.1996</startDate> + <endDate>07.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>12746</cost> - <start_date>20.11.1996</start_date> - <end_date>22.11.1996</end_date> + <startDate>20.11.1996</startDate> + <endDate>22.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>12471</cost> - <start_date>04.12.1996</start_date> - <end_date>07.12.1996</end_date> + <startDate>04.12.1996</startDate> + <endDate>07.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Coupon Spectacular</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Coupon Spectacular</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>6596</cost> - <start_date>17.12.1996</start_date> - <end_date>21.12.1996</end_date> + <startDate>17.12.1996</startDate> + <endDate>21.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>12257</cost> - <start_date>01.01.1997</start_date> - <end_date>04.01.1997</end_date> + <startDate>01.01.1997</startDate> + <endDate>04.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Pick Your Savings</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Pick Your Savings</promotionName> + <mediaType>Street Handout</mediaType> <cost>13819</cost> - <start_date>15.01.1997</start_date> - <end_date>17.01.1997</end_date> + <startDate>15.01.1997</startDate> + <endDate>17.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Street Handout</mediaType> <cost>13498</cost> - <start_date>29.01.1997</start_date> - <end_date>02.02.1997</end_date> + <startDate>29.01.1997</startDate> + <endDate>02.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Price Destroyers</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Price Destroyers</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>9333</cost> - <start_date>13.02.1997</start_date> - <end_date>17.02.1997</end_date> + <startDate>13.02.1997</startDate> + <endDate>17.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Shelf Emptiers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Shelf Emptiers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>9867</cost> - <start_date>26.02.1997</start_date> - <end_date>28.02.1997</end_date> + <startDate>26.02.1997</startDate> + <endDate>28.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>6810</cost> - <start_date>11.03.1997</start_date> - <end_date>13.03.1997</end_date> + <startDate>11.03.1997</startDate> + <endDate>13.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>5034</cost> - <start_date>26.03.1997</start_date> - <end_date>28.03.1997</end_date> + <startDate>26.03.1997</startDate> + <endDate>28.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Savings Galore</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Savings Galore</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>12577</cost> - <start_date>09.04.1997</start_date> - <end_date>13.04.1997</end_date> + <startDate>09.04.1997</startDate> + <endDate>13.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>14542</cost> - <start_date>23.04.1997</start_date> - <end_date>24.04.1997</end_date> + <startDate>23.04.1997</startDate> + <endDate>24.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Price Savers</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Price Savers</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>9522</cost> - <start_date>06.05.1997</start_date> - <end_date>07.05.1997</end_date> + <startDate>06.05.1997</startDate> + <endDate>07.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>High Roller Savings</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>High Roller Savings</promotionName> + <mediaType>Radio</mediaType> <cost>6292</cost> - <start_date>22.05.1997</start_date> - <end_date>25.05.1997</end_date> + <startDate>22.05.1997</startDate> + <endDate>25.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Shelf Emptiers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Shelf Emptiers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>5544</cost> - <start_date>05.06.1997</start_date> - <end_date>09.06.1997</end_date> + <startDate>05.06.1997</startDate> + <endDate>09.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>5824</cost> - <start_date>20.06.1997</start_date> - <end_date>22.06.1997</end_date> + <startDate>20.06.1997</startDate> + <endDate>22.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Street Handout</mediaType> <cost>6185</cost> - <start_date>03.07.1997</start_date> - <end_date>06.07.1997</end_date> + <startDate>03.07.1997</startDate> + <endDate>06.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>14156</cost> - <start_date>16.07.1997</start_date> - <end_date>19.07.1997</end_date> + <startDate>16.07.1997</startDate> + <endDate>19.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>5117</cost> - <start_date>01.08.1997</start_date> - <end_date>03.08.1997</end_date> + <startDate>01.08.1997</startDate> + <endDate>03.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>10270</cost> - <start_date>15.08.1997</start_date> - <end_date>18.08.1997</end_date> + <startDate>15.08.1997</startDate> + <endDate>18.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>8668</cost> - <start_date>27.08.1997</start_date> - <end_date>29.08.1997</end_date> + <startDate>27.08.1997</startDate> + <endDate>29.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>6430</cost> - <start_date>10.09.1997</start_date> - <end_date>14.09.1997</end_date> + <startDate>10.09.1997</startDate> + <endDate>14.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Two for One</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Two for One</promotionName> + <mediaType>Daily Paper</mediaType> <cost>9100</cost> - <start_date>24.09.1997</start_date> - <end_date>27.09.1997</end_date> + <startDate>24.09.1997</startDate> + <endDate>27.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>6470</cost> - <start_date>07.10.1997</start_date> - <end_date>10.10.1997</end_date> + <startDate>07.10.1997</startDate> + <endDate>10.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>12905</cost> - <start_date>22.10.1997</start_date> - <end_date>24.10.1997</end_date> + <startDate>22.10.1997</startDate> + <endDate>24.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>7965</cost> - <start_date>06.11.1997</start_date> - <end_date>08.11.1997</end_date> + <startDate>06.11.1997</startDate> + <endDate>08.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Radio</mediaType> <cost>5001</cost> - <start_date>21.11.1997</start_date> - <end_date>24.11.1997</end_date> + <startDate>21.11.1997</startDate> + <endDate>24.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Coupon Spectacular</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Coupon Spectacular</promotionName> + <mediaType>Product Attachment</mediaType> <cost>7244</cost> - <start_date>03.12.1997</start_date> - <end_date>06.12.1997</end_date> + <startDate>03.12.1997</startDate> + <endDate>06.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Green Light Days</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Green Light Days</promotionName> + <mediaType>Product Attachment</mediaType> <cost>9060</cost> - <start_date>18.12.1997</start_date> - <end_date>21.12.1997</end_date> + <startDate>18.12.1997</startDate> + <endDate>21.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Double Down Sale</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Double Down Sale</promotionName> + <mediaType>Radio</mediaType> <cost>5321</cost> - <start_date>02.01.1998</start_date> - <end_date>05.01.1998</end_date> + <startDate>02.01.1998</startDate> + <endDate>05.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>11409</cost> - <start_date>13.01.1998</start_date> - <end_date>16.01.1998</end_date> + <startDate>13.01.1998</startDate> + <endDate>16.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Money Grabbers</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Money Grabbers</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>8525</cost> - <start_date>30.01.1998</start_date> - <end_date>03.02.1998</end_date> + <startDate>30.01.1998</startDate> + <endDate>03.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Go For It</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Go For It</promotionName> + <mediaType>Radio</mediaType> <cost>12251</cost> - <start_date>13.02.1998</start_date> - <end_date>16.02.1998</end_date> + <startDate>13.02.1998</startDate> + <endDate>16.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Green Light Special</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Green Light Special</promotionName> + <mediaType>Product Attachment</mediaType> <cost>9713</cost> - <start_date>25.02.1998</start_date> - <end_date>28.02.1998</end_date> + <startDate>25.02.1998</startDate> + <endDate>28.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Price Savers</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Price Savers</promotionName> + <mediaType>Daily Paper</mediaType> <cost>7511</cost> - <start_date>13.03.1998</start_date> - <end_date>14.03.1998</end_date> + <startDate>13.03.1998</startDate> + <endDate>14.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>9500</cost> - <start_date>26.03.1998</start_date> - <end_date>28.03.1998</end_date> + <startDate>26.03.1998</startDate> + <endDate>28.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Daily Paper</mediaType> <cost>14734</cost> - <start_date>09.04.1998</start_date> - <end_date>11.04.1998</end_date> + <startDate>09.04.1998</startDate> + <endDate>11.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>8085</cost> - <start_date>22.04.1998</start_date> - <end_date>25.04.1998</end_date> + <startDate>22.04.1998</startDate> + <endDate>25.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>10247</cost> - <start_date>05.05.1998</start_date> - <end_date>06.05.1998</end_date> + <startDate>05.05.1998</startDate> + <endDate>06.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Super Savers</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Super Savers</promotionName> + <mediaType>Street Handout</mediaType> <cost>14454</cost> - <start_date>20.05.1998</start_date> - <end_date>24.05.1998</end_date> + <startDate>20.05.1998</startDate> + <endDate>24.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Price Slashers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Price Slashers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>7724</cost> - <start_date>04.06.1998</start_date> - <end_date>06.06.1998</end_date> + <startDate>04.06.1998</startDate> + <endDate>06.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Price Cutters</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Price Cutters</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>12277</cost> - <start_date>17.06.1998</start_date> - <end_date>21.06.1998</end_date> + <startDate>17.06.1998</startDate> + <endDate>21.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Super Savers</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Super Savers</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>14739</cost> - <start_date>03.07.1998</start_date> - <end_date>04.07.1998</end_date> + <startDate>03.07.1998</startDate> + <endDate>04.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>13818</cost> - <start_date>17.07.1998</start_date> - <end_date>18.07.1998</end_date> + <startDate>17.07.1998</startDate> + <endDate>18.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>5125</cost> - <start_date>28.07.1998</start_date> - <end_date>31.07.1998</end_date> + <startDate>28.07.1998</startDate> + <endDate>31.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Dimes Off</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Dimes Off</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>8223</cost> - <start_date>11.08.1998</start_date> - <end_date>14.08.1998</end_date> + <startDate>11.08.1998</startDate> + <endDate>14.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Street Handout</mediaType> <cost>11147</cost> - <start_date>27.08.1998</start_date> - <end_date>29.08.1998</end_date> + <startDate>27.08.1998</startDate> + <endDate>29.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Street Handout</mediaType> <cost>5100</cost> - <start_date>10.09.1998</start_date> - <end_date>13.09.1998</end_date> + <startDate>10.09.1998</startDate> + <endDate>13.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Street Handout</mediaType> <cost>11788</cost> - <start_date>24.09.1998</start_date> - <end_date>28.09.1998</end_date> + <startDate>24.09.1998</startDate> + <endDate>28.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>6087</cost> - <start_date>08.10.1998</start_date> - <end_date>11.10.1998</end_date> + <startDate>08.10.1998</startDate> + <endDate>11.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Money Savers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Money Savers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>10720</cost> - <start_date>23.10.1998</start_date> - <end_date>24.10.1998</end_date> + <startDate>23.10.1998</startDate> + <endDate>24.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Price Smashers</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Price Smashers</promotionName> + <mediaType>Street Handout</mediaType> <cost>9545</cost> - <start_date>04.11.1998</start_date> - <end_date>08.11.1998</end_date> + <startDate>04.11.1998</startDate> + <endDate>08.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Double Down Sale</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Double Down Sale</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>14271</cost> - <start_date>18.11.1998</start_date> - <end_date>22.11.1998</end_date> + <startDate>18.11.1998</startDate> + <endDate>22.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>Daily Paper</mediaType> <cost>8524</cost> - <start_date>01.12.1998</start_date> - <end_date>02.12.1998</end_date> + <startDate>01.12.1998</startDate> + <endDate>02.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>128</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>128</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>7522</cost> - <start_date>17.12.1998</start_date> - <end_date>19.12.1998</end_date> + <startDate>17.12.1998</startDate> + <endDate>19.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>12716</cost> - <start_date>17.01.1996</start_date> - <end_date>20.01.1996</end_date> + <startDate>17.01.1996</startDate> + <endDate>20.01.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>Daily Paper</mediaType> <cost>13423</cost> - <start_date>31.01.1996</start_date> - <end_date>02.02.1996</end_date> + <startDate>31.01.1996</startDate> + <endDate>02.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>9338</cost> - <start_date>13.02.1996</start_date> - <end_date>14.02.1996</end_date> + <startDate>13.02.1996</startDate> + <endDate>14.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Double Down Sale</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Double Down Sale</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>7482</cost> - <start_date>01.03.1996</start_date> - <end_date>03.03.1996</end_date> + <startDate>01.03.1996</startDate> + <endDate>03.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>7415</cost> - <start_date>14.03.1996</start_date> - <end_date>16.03.1996</end_date> + <startDate>14.03.1996</startDate> + <endDate>16.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>High Roller Savings</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>High Roller Savings</promotionName> + <mediaType>Radio</mediaType> <cost>9832</cost> - <start_date>27.03.1996</start_date> - <end_date>30.03.1996</end_date> + <startDate>27.03.1996</startDate> + <endDate>30.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>11866</cost> - <start_date>12.04.1996</start_date> - <end_date>15.04.1996</end_date> + <startDate>12.04.1996</startDate> + <endDate>15.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>5391</cost> - <start_date>25.04.1996</start_date> - <end_date>29.04.1996</end_date> + <startDate>25.04.1996</startDate> + <endDate>29.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Product Attachment</mediaType> <cost>6525</cost> - <start_date>08.05.1996</start_date> - <end_date>10.05.1996</end_date> + <startDate>08.05.1996</startDate> + <endDate>10.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Green Light Special</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Green Light Special</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>10651</cost> - <start_date>23.05.1996</start_date> - <end_date>25.05.1996</end_date> + <startDate>23.05.1996</startDate> + <endDate>25.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>Street Handout</mediaType> <cost>6312</cost> - <start_date>06.06.1996</start_date> - <end_date>07.06.1996</end_date> + <startDate>06.06.1996</startDate> + <endDate>07.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Double Down Sale</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Double Down Sale</promotionName> + <mediaType>Daily Paper</mediaType> <cost>7874</cost> - <start_date>19.06.1996</start_date> - <end_date>22.06.1996</end_date> + <startDate>19.06.1996</startDate> + <endDate>22.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Daily Paper</mediaType> <cost>7553</cost> - <start_date>03.07.1996</start_date> - <end_date>05.07.1996</end_date> + <startDate>03.07.1996</startDate> + <endDate>05.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Best Savings</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Best Savings</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>10732</cost> - <start_date>19.07.1996</start_date> - <end_date>21.07.1996</end_date> + <startDate>19.07.1996</startDate> + <endDate>21.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>11266</cost> - <start_date>01.08.1996</start_date> - <end_date>04.08.1996</end_date> + <startDate>01.08.1996</startDate> + <endDate>04.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>10864</cost> - <start_date>14.08.1996</start_date> - <end_date>17.08.1996</end_date> + <startDate>14.08.1996</startDate> + <endDate>17.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Big Promo</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Big Promo</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>9089</cost> - <start_date>29.08.1996</start_date> - <end_date>01.09.1996</end_date> + <startDate>29.08.1996</startDate> + <endDate>01.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Price Cutters</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Price Cutters</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>13190</cost> - <start_date>10.09.1996</start_date> - <end_date>14.09.1996</end_date> + <startDate>10.09.1996</startDate> + <endDate>14.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>8597</cost> - <start_date>26.09.1996</start_date> - <end_date>28.09.1996</end_date> + <startDate>26.09.1996</startDate> + <endDate>28.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Street Handout</mediaType> <cost>13577</cost> - <start_date>09.10.1996</start_date> - <end_date>12.10.1996</end_date> + <startDate>09.10.1996</startDate> + <endDate>12.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>10347</cost> - <start_date>25.10.1996</start_date> - <end_date>29.10.1996</end_date> + <startDate>25.10.1996</startDate> + <endDate>29.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Price Cutters</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Price Cutters</promotionName> + <mediaType>Daily Paper</mediaType> <cost>9599</cost> - <start_date>06.11.1996</start_date> - <end_date>08.11.1996</end_date> + <startDate>06.11.1996</startDate> + <endDate>08.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>9879</cost> - <start_date>20.11.1996</start_date> - <end_date>23.11.1996</end_date> + <startDate>20.11.1996</startDate> + <endDate>23.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Shelf Clearing Days</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Shelf Clearing Days</promotionName> + <mediaType>Daily Paper</mediaType> <cost>10240</cost> - <start_date>06.12.1996</start_date> - <end_date>10.12.1996</end_date> + <startDate>06.12.1996</startDate> + <endDate>10.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>TV</mediaType> <cost>8210</cost> - <start_date>19.12.1996</start_date> - <end_date>20.12.1996</end_date> + <startDate>19.12.1996</startDate> + <endDate>20.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>TV</mediaType> <cost>9172</cost> - <start_date>01.01.1997</start_date> - <end_date>05.01.1997</end_date> + <startDate>01.01.1997</startDate> + <endDate>05.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Best Savings</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Best Savings</promotionName> + <mediaType>Radio</mediaType> <cost>14325</cost> - <start_date>14.01.1997</start_date> - <end_date>16.01.1997</end_date> + <startDate>14.01.1997</startDate> + <endDate>16.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Two for One</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Two for One</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>13998</cost> - <start_date>31.01.1997</start_date> - <end_date>04.02.1997</end_date> + <startDate>31.01.1997</startDate> + <endDate>04.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Price Savers</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Price Savers</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>10514</cost> - <start_date>13.02.1997</start_date> - <end_date>15.02.1997</end_date> + <startDate>13.02.1997</startDate> + <endDate>15.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Super Savers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Super Savers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>13184</cost> - <start_date>28.02.1997</start_date> - <end_date>04.03.1997</end_date> + <startDate>28.02.1997</startDate> + <endDate>04.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>10554</cost> - <start_date>12.03.1997</start_date> - <end_date>13.03.1997</end_date> + <startDate>12.03.1997</startDate> + <endDate>13.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>6989</cost> - <start_date>27.03.1997</start_date> - <end_date>31.03.1997</end_date> + <startDate>27.03.1997</startDate> + <endDate>31.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Two Day Sale</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Two Day Sale</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>12050</cost> - <start_date>11.04.1997</start_date> - <end_date>13.04.1997</end_date> + <startDate>11.04.1997</startDate> + <endDate>13.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>TV</mediaType> <cost>6429</cost> - <start_date>23.04.1997</start_date> - <end_date>27.04.1997</end_date> + <startDate>23.04.1997</startDate> + <endDate>27.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Green Light Days</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Green Light Days</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>8672</cost> - <start_date>08.05.1997</start_date> - <end_date>10.05.1997</end_date> + <startDate>08.05.1997</startDate> + <endDate>10.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Price Smashers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Price Smashers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>13144</cost> - <start_date>21.05.1997</start_date> - <end_date>25.05.1997</end_date> + <startDate>21.05.1997</startDate> + <endDate>25.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Green Light Special</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Green Light Special</promotionName> + <mediaType>TV</mediaType> <cost>6749</cost> - <start_date>04.06.1997</start_date> - <end_date>06.06.1997</end_date> + <startDate>04.06.1997</startDate> + <endDate>06.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Savings Galore</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Savings Galore</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>9396</cost> - <start_date>19.06.1997</start_date> - <end_date>22.06.1997</end_date> + <startDate>19.06.1997</startDate> + <endDate>22.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Dimes Off</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Dimes Off</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>6512</cost> - <start_date>03.07.1997</start_date> - <end_date>06.07.1997</end_date> + <startDate>03.07.1997</startDate> + <endDate>06.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Product Attachment</mediaType> <cost>13709</cost> - <start_date>15.07.1997</start_date> - <end_date>18.07.1997</end_date> + <startDate>15.07.1997</startDate> + <endDate>18.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Savings Galore</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Savings Galore</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>8515</cost> - <start_date>30.07.1997</start_date> - <end_date>01.08.1997</end_date> + <startDate>30.07.1997</startDate> + <endDate>01.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Two for One</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Two for One</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>8968</cost> - <start_date>14.08.1997</start_date> - <end_date>16.08.1997</end_date> + <startDate>14.08.1997</startDate> + <endDate>16.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Product Attachment</mediaType> <cost>8302</cost> - <start_date>27.08.1997</start_date> - <end_date>29.08.1997</end_date> + <startDate>27.08.1997</startDate> + <endDate>29.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>13535</cost> - <start_date>11.09.1997</start_date> - <end_date>13.09.1997</end_date> + <startDate>11.09.1997</startDate> + <endDate>13.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Street Handout</mediaType> <cost>9543</cost> - <start_date>24.09.1997</start_date> - <end_date>27.09.1997</end_date> + <startDate>24.09.1997</startDate> + <endDate>27.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Pick Your Savings</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Pick Your Savings</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>9049</cost> - <start_date>07.10.1997</start_date> - <end_date>08.10.1997</end_date> + <startDate>07.10.1997</startDate> + <endDate>08.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>5911</cost> - <start_date>23.10.1997</start_date> - <end_date>24.10.1997</end_date> + <startDate>23.10.1997</startDate> + <endDate>24.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>You Save Days</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>You Save Days</promotionName> + <mediaType>Daily Paper</mediaType> <cost>9182</cost> - <start_date>04.11.1997</start_date> - <end_date>07.11.1997</end_date> + <startDate>04.11.1997</startDate> + <endDate>07.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>Street Handout</mediaType> <cost>14981</cost> - <start_date>21.11.1997</start_date> - <end_date>23.11.1997</end_date> + <startDate>21.11.1997</startDate> + <endDate>23.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>8852</cost> - <start_date>03.12.1997</start_date> - <end_date>06.12.1997</end_date> + <startDate>03.12.1997</startDate> + <endDate>06.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Wallet Savers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Wallet Savers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>7931</cost> - <start_date>17.12.1997</start_date> - <end_date>20.12.1997</end_date> + <startDate>17.12.1997</startDate> + <endDate>20.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>Radio</mediaType> <cost>6583</cost> - <start_date>31.12.1997</start_date> - <end_date>01.01.1998</end_date> + <startDate>31.12.1997</startDate> + <endDate>01.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Dollar Days</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Dollar Days</promotionName> + <mediaType>Radio</mediaType> <cost>12336</cost> - <start_date>15.01.1998</start_date> - <end_date>16.01.1998</end_date> + <startDate>15.01.1998</startDate> + <endDate>16.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Daily Paper</mediaType> <cost>5261</cost> - <start_date>27.01.1998</start_date> - <end_date>31.01.1998</end_date> + <startDate>27.01.1998</startDate> + <endDate>31.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>9213</cost> - <start_date>13.02.1998</start_date> - <end_date>16.02.1998</end_date> + <startDate>13.02.1998</startDate> + <endDate>16.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>5902</cost> - <start_date>27.02.1998</start_date> - <end_date>01.03.1998</end_date> + <startDate>27.02.1998</startDate> + <endDate>01.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>Radio</mediaType> <cost>7544</cost> - <start_date>11.03.1998</start_date> - <end_date>15.03.1998</end_date> + <startDate>11.03.1998</startDate> + <endDate>15.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>8736</cost> - <start_date>26.03.1998</start_date> - <end_date>30.03.1998</end_date> + <startDate>26.03.1998</startDate> + <endDate>30.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Price Destroyers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Price Destroyers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>7561</cost> - <start_date>10.04.1998</start_date> - <end_date>13.04.1998</end_date> + <startDate>10.04.1998</startDate> + <endDate>13.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Money Savers</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Money Savers</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>9631</cost> - <start_date>21.04.1998</start_date> - <end_date>23.04.1998</end_date> + <startDate>21.04.1998</startDate> + <endDate>23.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Coupon Spectacular</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Coupon Spectacular</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>12474</cost> - <start_date>07.05.1998</start_date> - <end_date>09.05.1998</end_date> + <startDate>07.05.1998</startDate> + <endDate>09.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>Street Handout</mediaType> <cost>11472</cost> - <start_date>19.05.1998</start_date> - <end_date>22.05.1998</end_date> + <startDate>19.05.1998</startDate> + <endDate>22.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Price Savers</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Price Savers</promotionName> + <mediaType>Daily Paper</mediaType> <cost>5170</cost> - <start_date>03.06.1998</start_date> - <end_date>05.06.1998</end_date> + <startDate>03.06.1998</startDate> + <endDate>05.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>TV</mediaType> <cost>5277</cost> - <start_date>17.06.1998</start_date> - <end_date>19.06.1998</end_date> + <startDate>17.06.1998</startDate> + <endDate>19.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Green Light Days</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Green Light Days</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>6666</cost> - <start_date>02.07.1998</start_date> - <end_date>06.07.1998</end_date> + <startDate>02.07.1998</startDate> + <endDate>06.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Green Light Special</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Green Light Special</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>14717</cost> - <start_date>16.07.1998</start_date> - <end_date>19.07.1998</end_date> + <startDate>16.07.1998</startDate> + <endDate>19.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>13288</cost> - <start_date>30.07.1998</start_date> - <end_date>01.08.1998</end_date> + <startDate>30.07.1998</startDate> + <endDate>01.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>8776</cost> - <start_date>12.08.1998</start_date> - <end_date>15.08.1998</end_date> + <startDate>12.08.1998</startDate> + <endDate>15.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Double Down Sale</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Double Down Sale</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>5356</cost> - <start_date>27.08.1998</start_date> - <end_date>30.08.1998</end_date> + <startDate>27.08.1998</startDate> + <endDate>30.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Shelf Clearing Days</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Shelf Clearing Days</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>5116</cost> - <start_date>08.09.1998</start_date> - <end_date>10.09.1998</end_date> + <startDate>08.09.1998</startDate> + <endDate>10.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Fantastic Discounts</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Fantastic Discounts</promotionName> + <mediaType>Daily Paper</mediaType> <cost>8560</cost> - <start_date>24.09.1998</start_date> - <end_date>28.09.1998</end_date> + <startDate>24.09.1998</startDate> + <endDate>28.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>TV</mediaType> <cost>12085</cost> - <start_date>07.10.1998</start_date> - <end_date>10.10.1998</end_date> + <startDate>07.10.1998</startDate> + <endDate>10.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>13219</cost> - <start_date>20.10.1998</start_date> - <end_date>24.10.1998</end_date> + <startDate>20.10.1998</startDate> + <endDate>24.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>Product Attachment</mediaType> <cost>14689</cost> - <start_date>04.11.1998</start_date> - <end_date>05.11.1998</end_date> + <startDate>04.11.1998</startDate> + <endDate>05.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Savings Galore</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Savings Galore</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>13006</cost> - <start_date>18.11.1998</start_date> - <end_date>21.11.1998</end_date> + <startDate>18.11.1998</startDate> + <endDate>21.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>11912</cost> - <start_date>01.12.1998</start_date> - <end_date>03.12.1998</end_date> + <startDate>01.12.1998</startDate> + <endDate>03.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>129</promotion_district_id> - <promotion_name>Price Smashers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>129</promotionDistrictId> + <promotionName>Price Smashers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>11591</cost> - <start_date>15.12.1998</start_date> - <end_date>16.12.1998</end_date> + <startDate>15.12.1998</startDate> + <endDate>16.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Super Wallet Savers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Super Wallet Savers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>8805</cost> - <start_date>18.01.1996</start_date> - <end_date>21.01.1996</end_date> + <startDate>18.01.1996</startDate> + <endDate>21.01.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Product Attachment</mediaType> <cost>9685</cost> - <start_date>01.02.1996</start_date> - <end_date>05.02.1996</end_date> + <startDate>01.02.1996</startDate> + <endDate>05.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>7228</cost> - <start_date>15.02.1996</start_date> - <end_date>17.02.1996</end_date> + <startDate>15.02.1996</startDate> + <endDate>17.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>12635</cost> - <start_date>27.02.1996</start_date> - <end_date>01.03.1996</end_date> + <startDate>27.02.1996</startDate> + <endDate>01.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Dimes Off</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Dimes Off</promotionName> + <mediaType>Daily Paper</mediaType> <cost>14959</cost> - <start_date>14.03.1996</start_date> - <end_date>18.03.1996</end_date> + <startDate>14.03.1996</startDate> + <endDate>18.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Sales Galore</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Sales Galore</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>14385</cost> - <start_date>26.03.1996</start_date> - <end_date>28.03.1996</end_date> + <startDate>26.03.1996</startDate> + <endDate>28.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>High Roller Savings</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>High Roller Savings</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>13637</cost> - <start_date>10.04.1996</start_date> - <end_date>13.04.1996</end_date> + <startDate>10.04.1996</startDate> + <endDate>13.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Coupon Spectacular</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Coupon Spectacular</promotionName> + <mediaType>Street Handout</mediaType> <cost>13917</cost> - <start_date>25.04.1996</start_date> - <end_date>26.04.1996</end_date> + <startDate>25.04.1996</startDate> + <endDate>26.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Dimes Off</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Dimes Off</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>14278</cost> - <start_date>07.05.1996</start_date> - <end_date>09.05.1996</end_date> + <startDate>07.05.1996</startDate> + <endDate>09.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Coupon Spectacular</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Coupon Spectacular</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>13658</cost> - <start_date>21.05.1996</start_date> - <end_date>23.05.1996</end_date> + <startDate>21.05.1996</startDate> + <endDate>23.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Three for One</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Three for One</promotionName> + <mediaType>Product Attachment</mediaType> <cost>14619</cost> - <start_date>07.06.1996</start_date> - <end_date>09.06.1996</end_date> + <startDate>07.06.1996</startDate> + <endDate>09.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Price Slashers</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Price Slashers</promotionName> + <mediaType>Daily Paper</mediaType> <cost>7116</cost> - <start_date>20.06.1996</start_date> - <end_date>23.06.1996</end_date> + <startDate>20.06.1996</startDate> + <endDate>23.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Super Savers</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Super Savers</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>5514</cost> - <start_date>02.07.1996</start_date> - <end_date>03.07.1996</end_date> + <startDate>02.07.1996</startDate> + <endDate>03.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Two for One</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Two for One</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>14686</cost> - <start_date>16.07.1996</start_date> - <end_date>18.07.1996</end_date> + <startDate>16.07.1996</startDate> + <endDate>18.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Money Savers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Money Savers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>7356</cost> - <start_date>30.07.1996</start_date> - <end_date>31.07.1996</end_date> + <startDate>30.07.1996</startDate> + <endDate>31.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Money Savers</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Money Savers</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>14726</cost> - <start_date>15.08.1996</start_date> - <end_date>18.08.1996</end_date> + <startDate>15.08.1996</startDate> + <endDate>18.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Big Promo</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Big Promo</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>8505</cost> - <start_date>27.08.1996</start_date> - <end_date>31.08.1996</end_date> + <startDate>27.08.1996</startDate> + <endDate>31.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>6221</cost> - <start_date>10.09.1996</start_date> - <end_date>14.09.1996</end_date> + <startDate>10.09.1996</startDate> + <endDate>14.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>High Roller Savings</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>High Roller Savings</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>10601</cost> - <start_date>26.09.1996</start_date> - <end_date>28.09.1996</end_date> + <startDate>26.09.1996</startDate> + <endDate>28.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Price Smashers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Price Smashers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>6746</cost> - <start_date>10.10.1996</start_date> - <end_date>13.10.1996</end_date> + <startDate>10.10.1996</startDate> + <endDate>13.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Super Savers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Super Savers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>8562</cost> - <start_date>24.10.1996</start_date> - <end_date>27.10.1996</end_date> + <startDate>24.10.1996</startDate> + <endDate>27.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Shelf Emptiers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Shelf Emptiers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>14823</cost> - <start_date>05.11.1996</start_date> - <end_date>06.11.1996</end_date> + <startDate>05.11.1996</startDate> + <endDate>06.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Radio</mediaType> <cost>10912</cost> - <start_date>19.11.1996</start_date> - <end_date>20.11.1996</end_date> + <startDate>19.11.1996</startDate> + <endDate>20.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Dollar Days</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Dollar Days</promotionName> + <mediaType>Street Handout</mediaType> <cost>8028</cost> - <start_date>06.12.1996</start_date> - <end_date>08.12.1996</end_date> + <startDate>06.12.1996</startDate> + <endDate>08.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Dimes Off</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Dimes Off</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>7881</cost> - <start_date>18.12.1996</start_date> - <end_date>20.12.1996</end_date> + <startDate>18.12.1996</startDate> + <endDate>20.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Wallet Savers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Wallet Savers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>12687</cost> - <start_date>02.01.1997</start_date> - <end_date>05.01.1997</end_date> + <startDate>02.01.1997</startDate> + <endDate>05.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>10485</cost> - <start_date>14.01.1997</start_date> - <end_date>17.01.1997</end_date> + <startDate>14.01.1997</startDate> + <endDate>17.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>Street Handout</mediaType> <cost>12474</cost> - <start_date>30.01.1997</start_date> - <end_date>02.02.1997</end_date> + <startDate>30.01.1997</startDate> + <endDate>02.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Two for One</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Two for One</promotionName> + <mediaType>Street Handout</mediaType> <cost>7707</cost> - <start_date>14.02.1997</start_date> - <end_date>18.02.1997</end_date> + <startDate>14.02.1997</startDate> + <endDate>18.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Daily Paper</mediaType> <cost>7617</cost> - <start_date>25.02.1997</start_date> - <end_date>27.02.1997</end_date> + <startDate>25.02.1997</startDate> + <endDate>27.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>7123</cost> - <start_date>14.03.1997</start_date> - <end_date>17.03.1997</end_date> + <startDate>14.03.1997</startDate> + <endDate>17.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Street Handout</mediaType> <cost>13985</cost> - <start_date>26.03.1997</start_date> - <end_date>29.03.1997</end_date> + <startDate>26.03.1997</startDate> + <endDate>29.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Double Down Sale</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Double Down Sale</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>14600</cost> - <start_date>09.04.1997</start_date> - <end_date>11.04.1997</end_date> + <startDate>09.04.1997</startDate> + <endDate>11.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Big Promo</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Big Promo</promotionName> + <mediaType>Daily Paper</mediaType> <cost>9153</cost> - <start_date>23.04.1997</start_date> - <end_date>26.04.1997</end_date> + <startDate>23.04.1997</startDate> + <endDate>26.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Street Handout</mediaType> <cost>13024</cost> - <start_date>08.05.1997</start_date> - <end_date>12.05.1997</end_date> + <startDate>08.05.1997</startDate> + <endDate>12.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>12103</cost> - <start_date>22.05.1997</start_date> - <end_date>26.05.1997</end_date> + <startDate>22.05.1997</startDate> + <endDate>26.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Two Day Sale</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Two Day Sale</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>10755</cost> - <start_date>06.06.1997</start_date> - <end_date>08.06.1997</end_date> + <startDate>06.06.1997</startDate> + <endDate>08.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>TV</mediaType> <cost>13853</cost> - <start_date>19.06.1997</start_date> - <end_date>21.06.1997</end_date> + <startDate>19.06.1997</startDate> + <endDate>21.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Price Slashers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Price Slashers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>9433</cost> - <start_date>03.07.1997</start_date> - <end_date>05.07.1997</end_date> + <startDate>03.07.1997</startDate> + <endDate>05.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Two for One</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Two for One</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>7316</cost> - <start_date>16.07.1997</start_date> - <end_date>18.07.1997</end_date> + <startDate>16.07.1997</startDate> + <endDate>18.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>14005</cost> - <start_date>31.07.1997</start_date> - <end_date>02.08.1997</end_date> + <startDate>31.07.1997</startDate> + <endDate>02.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Price Destroyers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Price Destroyers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>5648</cost> - <start_date>14.08.1997</start_date> - <end_date>17.08.1997</end_date> + <startDate>14.08.1997</startDate> + <endDate>17.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Coupon Spectacular</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Coupon Spectacular</promotionName> + <mediaType>Street Handout</mediaType> <cost>12937</cost> - <start_date>26.08.1997</start_date> - <end_date>28.08.1997</end_date> + <startDate>26.08.1997</startDate> + <endDate>28.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>11762</cost> - <start_date>10.09.1997</start_date> - <end_date>14.09.1997</end_date> + <startDate>10.09.1997</startDate> + <endDate>14.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>13832</cost> - <start_date>25.09.1997</start_date> - <end_date>29.09.1997</end_date> + <startDate>25.09.1997</startDate> + <endDate>29.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>Street Handout</mediaType> <cost>6675</cost> - <start_date>09.10.1997</start_date> - <end_date>13.10.1997</end_date> + <startDate>09.10.1997</startDate> + <endDate>13.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>Daily Paper</mediaType> <cost>5674</cost> - <start_date>23.10.1997</start_date> - <end_date>27.10.1997</end_date> + <startDate>23.10.1997</startDate> + <endDate>27.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Sales Galore</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Sales Galore</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>6716</cost> - <start_date>05.11.1997</start_date> - <end_date>08.11.1997</end_date> + <startDate>05.11.1997</startDate> + <endDate>08.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Fantastic Discounts</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Fantastic Discounts</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>6823</cost> - <start_date>19.11.1997</start_date> - <end_date>22.11.1997</end_date> + <startDate>19.11.1997</startDate> + <endDate>22.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Price Smashers</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Price Smashers</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>8211</cost> - <start_date>05.12.1997</start_date> - <end_date>07.12.1997</end_date> + <startDate>05.12.1997</startDate> + <endDate>07.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Two Day Sale</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Two Day Sale</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>5476</cost> - <start_date>18.12.1997</start_date> - <end_date>21.12.1997</end_date> + <startDate>18.12.1997</startDate> + <endDate>21.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Super Wallet Savers</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Super Wallet Savers</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>14047</cost> - <start_date>31.12.1997</start_date> - <end_date>02.01.1998</end_date> + <startDate>31.12.1997</startDate> + <endDate>02.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>You Save Days</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>You Save Days</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>9535</cost> - <start_date>14.01.1998</start_date> - <end_date>17.01.1998</end_date> + <startDate>14.01.1998</startDate> + <endDate>17.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>12125</cost> - <start_date>28.01.1998</start_date> - <end_date>30.01.1998</end_date> + <startDate>28.01.1998</startDate> + <endDate>30.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>11885</cost> - <start_date>12.02.1998</start_date> - <end_date>13.02.1998</end_date> + <startDate>12.02.1998</startDate> + <endDate>13.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Shelf Clearing Days</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Shelf Clearing Days</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>5329</cost> - <start_date>27.02.1998</start_date> - <end_date>02.03.1998</end_date> + <startDate>27.02.1998</startDate> + <endDate>02.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>8854</cost> - <start_date>13.03.1998</start_date> - <end_date>14.03.1998</end_date> + <startDate>13.03.1998</startDate> + <endDate>14.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Green Light Days</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Green Light Days</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>7333</cost> - <start_date>27.03.1998</start_date> - <end_date>29.03.1998</end_date> + <startDate>27.03.1998</startDate> + <endDate>29.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>11458</cost> - <start_date>10.04.1998</start_date> - <end_date>13.04.1998</end_date> + <startDate>10.04.1998</startDate> + <endDate>13.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Two Day Sale</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Two Day Sale</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>7119</cost> - <start_date>24.04.1998</start_date> - <end_date>25.04.1998</end_date> + <startDate>24.04.1998</startDate> + <endDate>25.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>9927</cost> - <start_date>07.05.1998</start_date> - <end_date>08.05.1998</end_date> + <startDate>07.05.1998</startDate> + <endDate>08.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>9607</cost> - <start_date>22.05.1998</start_date> - <end_date>25.05.1998</end_date> + <startDate>22.05.1998</startDate> + <endDate>25.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>5441</cost> - <start_date>02.06.1998</start_date> - <end_date>05.06.1998</end_date> + <startDate>02.06.1998</startDate> + <endDate>05.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Product Attachment</mediaType> <cost>5975</cost> - <start_date>16.06.1998</start_date> - <end_date>17.06.1998</end_date> + <startDate>16.06.1998</startDate> + <endDate>17.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Price Savers</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Price Savers</promotionName> + <mediaType>Daily Paper</mediaType> <cost>12918</cost> - <start_date>03.07.1998</start_date> - <end_date>04.07.1998</end_date> + <startDate>03.07.1998</startDate> + <endDate>04.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>13798</cost> - <start_date>15.07.1998</start_date> - <end_date>19.07.1998</end_date> + <startDate>15.07.1998</startDate> + <endDate>19.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>8686</cost> - <start_date>31.07.1998</start_date> - <end_date>03.08.1998</end_date> + <startDate>31.07.1998</startDate> + <endDate>03.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Price Slashers</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Price Slashers</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>14093</cost> - <start_date>12.08.1998</start_date> - <end_date>13.08.1998</end_date> + <startDate>12.08.1998</startDate> + <endDate>13.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Money Savers</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Money Savers</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>9073</cost> - <start_date>25.08.1998</start_date> - <end_date>26.08.1998</end_date> + <startDate>25.08.1998</startDate> + <endDate>26.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>8498</cost> - <start_date>10.09.1998</start_date> - <end_date>13.09.1998</end_date> + <startDate>10.09.1998</startDate> + <endDate>13.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Green Light Days</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Green Light Days</promotionName> + <mediaType>Street Handout</mediaType> <cost>7750</cost> - <start_date>24.09.1998</start_date> - <end_date>27.09.1998</end_date> + <startDate>24.09.1998</startDate> + <endDate>27.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Price Savers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Price Savers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>11933</cost> - <start_date>08.10.1998</start_date> - <end_date>12.10.1998</end_date> + <startDate>08.10.1998</startDate> + <endDate>12.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>High Roller Savings</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>High Roller Savings</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>14949</cost> - <start_date>21.10.1998</start_date> - <end_date>23.10.1998</end_date> + <startDate>21.10.1998</startDate> + <endDate>23.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Product Attachment</mediaType> <cost>12920</cost> - <start_date>05.11.1998</start_date> - <end_date>07.11.1998</end_date> + <startDate>05.11.1998</startDate> + <endDate>07.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>13881</cost> - <start_date>19.11.1998</start_date> - <end_date>20.11.1998</end_date> + <startDate>19.11.1998</startDate> + <endDate>20.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>6378</cost> - <start_date>03.12.1998</start_date> - <end_date>06.12.1998</end_date> + <startDate>03.12.1998</startDate> + <endDate>06.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>130</promotion_district_id> - <promotion_name>Price Slashers</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>130</promotionDistrictId> + <promotionName>Price Slashers</promotionName> + <mediaType>Daily Paper</mediaType> <cost>14776</cost> - <start_date>18.12.1998</start_date> - <end_date>22.12.1998</end_date> + <startDate>18.12.1998</startDate> + <endDate>22.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Wallet Savers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Wallet Savers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>13988</cost> - <start_date>17.01.1996</start_date> - <end_date>19.01.1996</end_date> + <startDate>17.01.1996</startDate> + <endDate>19.01.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Two Day Sale</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Two Day Sale</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>7767</cost> - <start_date>30.01.1996</start_date> - <end_date>31.01.1996</end_date> + <startDate>30.01.1996</startDate> + <endDate>31.01.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Green Light Days</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Green Light Days</promotionName> + <mediaType>Product Attachment</mediaType> <cost>6700</cost> - <start_date>13.02.1996</start_date> - <end_date>17.02.1996</end_date> + <startDate>13.02.1996</startDate> + <endDate>17.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>11080</cost> - <start_date>01.03.1996</start_date> - <end_date>02.03.1996</end_date> + <startDate>01.03.1996</startDate> + <endDate>02.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>Daily Paper</mediaType> <cost>13323</cost> - <start_date>15.03.1996</start_date> - <end_date>17.03.1996</end_date> + <startDate>15.03.1996</startDate> + <endDate>17.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Big Promo</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Big Promo</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>5139</cost> - <start_date>27.03.1996</start_date> - <end_date>29.03.1996</end_date> + <startDate>27.03.1996</startDate> + <endDate>29.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>11400</cost> - <start_date>11.04.1996</start_date> - <end_date>14.04.1996</end_date> + <startDate>11.04.1996</startDate> + <endDate>14.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>TV</mediaType> <cost>7488</cost> - <start_date>25.04.1996</start_date> - <end_date>28.04.1996</end_date> + <startDate>25.04.1996</startDate> + <endDate>28.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>High Roller Savings</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>High Roller Savings</promotionName> + <mediaType>Daily Paper</mediaType> <cost>14605</cost> - <start_date>09.05.1996</start_date> - <end_date>12.05.1996</end_date> + <startDate>09.05.1996</startDate> + <endDate>12.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Big Promo</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Big Promo</promotionName> + <mediaType>Radio</mediaType> <cost>14457</cost> - <start_date>24.05.1996</start_date> - <end_date>27.05.1996</end_date> + <startDate>24.05.1996</startDate> + <endDate>27.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>9264</cost> - <start_date>05.06.1996</start_date> - <end_date>07.06.1996</end_date> + <startDate>05.06.1996</startDate> + <endDate>07.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Dollar Days</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Dollar Days</promotionName> + <mediaType>Daily Paper</mediaType> <cost>7061</cost> - <start_date>20.06.1996</start_date> - <end_date>21.06.1996</end_date> + <startDate>20.06.1996</startDate> + <endDate>21.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Savings Galore</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Savings Galore</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>13115</cost> - <start_date>05.07.1996</start_date> - <end_date>08.07.1996</end_date> + <startDate>05.07.1996</startDate> + <endDate>08.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Big Promo</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Big Promo</promotionName> + <mediaType>Product Attachment</mediaType> <cost>8349</cost> - <start_date>16.07.1996</start_date> - <end_date>19.07.1996</end_date> + <startDate>16.07.1996</startDate> + <endDate>19.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Pick Your Savings</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Pick Your Savings</promotionName> + <mediaType>Daily Paper</mediaType> <cost>11701</cost> - <start_date>01.08.1996</start_date> - <end_date>02.08.1996</end_date> + <startDate>01.08.1996</startDate> + <endDate>02.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Street Handout</mediaType> <cost>13863</cost> - <start_date>15.08.1996</start_date> - <end_date>17.08.1996</end_date> + <startDate>15.08.1996</startDate> + <endDate>17.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>8069</cost> - <start_date>30.08.1996</start_date> - <end_date>01.09.1996</end_date> + <startDate>30.08.1996</startDate> + <endDate>01.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Radio</mediaType> <cost>11340</cost> - <start_date>10.09.1996</start_date> - <end_date>13.09.1996</end_date> + <startDate>10.09.1996</startDate> + <endDate>13.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Wallet Savers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Wallet Savers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>5893</cost> - <start_date>24.09.1996</start_date> - <end_date>26.09.1996</end_date> + <startDate>24.09.1996</startDate> + <endDate>26.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>7108</cost> - <start_date>08.10.1996</start_date> - <end_date>10.10.1996</end_date> + <startDate>08.10.1996</startDate> + <endDate>10.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>TV</mediaType> <cost>8843</cost> - <start_date>22.10.1996</start_date> - <end_date>24.10.1996</end_date> + <startDate>22.10.1996</startDate> + <endDate>24.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>Street Handout</mediaType> <cost>7495</cost> - <start_date>06.11.1996</start_date> - <end_date>10.11.1996</end_date> + <startDate>06.11.1996</startDate> + <endDate>10.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Green Light Days</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Green Light Days</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>10592</cost> - <start_date>20.11.1996</start_date> - <end_date>21.11.1996</end_date> + <startDate>20.11.1996</startDate> + <endDate>21.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>7419</cost> - <start_date>04.12.1996</start_date> - <end_date>07.12.1996</end_date> + <startDate>04.12.1996</startDate> + <endDate>07.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Best Savings</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Best Savings</promotionName> + <mediaType>Daily Paper</mediaType> <cost>11371</cost> - <start_date>20.12.1996</start_date> - <end_date>24.12.1996</end_date> + <startDate>20.12.1996</startDate> + <endDate>24.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Big Promo</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Big Promo</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>8060</cost> - <start_date>31.12.1996</start_date> - <end_date>03.01.1997</end_date> + <startDate>31.12.1996</startDate> + <endDate>03.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Best Savings</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Best Savings</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>9702</cost> - <start_date>14.01.1997</start_date> - <end_date>16.01.1997</end_date> + <startDate>14.01.1997</startDate> + <endDate>16.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Go For It</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Go For It</promotionName> + <mediaType>Daily Paper</mediaType> <cost>6992</cost> - <start_date>29.01.1997</start_date> - <end_date>31.01.1997</end_date> + <startDate>29.01.1997</startDate> + <endDate>31.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>13161</cost> - <start_date>13.02.1997</start_date> - <end_date>15.02.1997</end_date> + <startDate>13.02.1997</startDate> + <endDate>15.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Price Destroyers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Price Destroyers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>7887</cost> - <start_date>27.02.1997</start_date> - <end_date>01.03.1997</end_date> + <startDate>27.02.1997</startDate> + <endDate>01.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Pick Your Savings</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Pick Your Savings</promotionName> + <mediaType>Daily Paper</mediaType> <cost>10730</cost> - <start_date>11.03.1997</start_date> - <end_date>13.03.1997</end_date> + <startDate>11.03.1997</startDate> + <endDate>13.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Big Promo</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Big Promo</promotionName> + <mediaType>Product Attachment</mediaType> <cost>7073</cost> - <start_date>27.03.1997</start_date> - <end_date>29.03.1997</end_date> + <startDate>27.03.1997</startDate> + <endDate>29.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Super Savers</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Super Savers</promotionName> + <mediaType>Street Handout</mediaType> <cost>10771</cost> - <start_date>09.04.1997</start_date> - <end_date>12.04.1997</end_date> + <startDate>09.04.1997</startDate> + <endDate>12.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>7435</cost> - <start_date>23.04.1997</start_date> - <end_date>27.04.1997</end_date> + <startDate>23.04.1997</startDate> + <endDate>27.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>8824</cost> - <start_date>06.05.1997</start_date> - <end_date>07.05.1997</end_date> + <startDate>06.05.1997</startDate> + <endDate>07.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Price Cutters</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Price Cutters</promotionName> + <mediaType>Street Handout</mediaType> <cost>9531</cost> - <start_date>20.05.1997</start_date> - <end_date>24.05.1997</end_date> + <startDate>20.05.1997</startDate> + <endDate>24.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Price Savers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Price Savers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>5446</cost> - <start_date>05.06.1997</start_date> - <end_date>09.06.1997</end_date> + <startDate>05.06.1997</startDate> + <endDate>09.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>13590</cost> - <start_date>20.06.1997</start_date> - <end_date>21.06.1997</end_date> + <startDate>20.06.1997</startDate> + <endDate>21.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>13524</cost> - <start_date>02.07.1997</start_date> - <end_date>06.07.1997</end_date> + <startDate>02.07.1997</startDate> + <endDate>06.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Price Cutters</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Price Cutters</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>5940</cost> - <start_date>18.07.1997</start_date> - <end_date>20.07.1997</end_date> + <startDate>18.07.1997</startDate> + <endDate>20.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Shelf Emptiers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Shelf Emptiers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>6728</cost> - <start_date>30.07.1997</start_date> - <end_date>31.07.1997</end_date> + <startDate>30.07.1997</startDate> + <endDate>31.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>12909</cost> - <start_date>13.08.1997</start_date> - <end_date>15.08.1997</end_date> + <startDate>13.08.1997</startDate> + <endDate>15.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Price Smashers</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Price Smashers</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>11387</cost> - <start_date>27.08.1997</start_date> - <end_date>30.08.1997</end_date> + <startDate>27.08.1997</startDate> + <endDate>30.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>6759</cost> - <start_date>09.09.1997</start_date> - <end_date>10.09.1997</end_date> + <startDate>09.09.1997</startDate> + <endDate>10.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>12420</cost> - <start_date>24.09.1997</start_date> - <end_date>27.09.1997</end_date> + <startDate>24.09.1997</startDate> + <endDate>27.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>Street Handout</mediaType> <cost>13982</cost> - <start_date>08.10.1997</start_date> - <end_date>10.10.1997</end_date> + <startDate>08.10.1997</startDate> + <endDate>10.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Street Handout</mediaType> <cost>13661</cost> - <start_date>22.10.1997</start_date> - <end_date>26.10.1997</end_date> + <startDate>22.10.1997</startDate> + <endDate>26.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Super Savers</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Super Savers</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>9496</cost> - <start_date>06.11.1997</start_date> - <end_date>10.11.1997</end_date> + <startDate>06.11.1997</startDate> + <endDate>10.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Two Day Sale</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Two Day Sale</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>10030</cost> - <start_date>19.11.1997</start_date> - <end_date>21.11.1997</end_date> + <startDate>19.11.1997</startDate> + <endDate>21.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Product Attachment</mediaType> <cost>6973</cost> - <start_date>02.12.1997</start_date> - <end_date>04.12.1997</end_date> + <startDate>02.12.1997</startDate> + <endDate>04.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>5197</cost> - <start_date>17.12.1997</start_date> - <end_date>19.12.1997</end_date> + <startDate>17.12.1997</startDate> + <endDate>19.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>12741</cost> - <start_date>31.12.1997</start_date> - <end_date>04.01.1998</end_date> + <startDate>31.12.1997</startDate> + <endDate>04.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>You Save Days</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>You Save Days</promotionName> + <mediaType>Product Attachment</mediaType> <cost>8148</cost> - <start_date>15.01.1998</start_date> - <end_date>19.01.1998</end_date> + <startDate>15.01.1998</startDate> + <endDate>19.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Pick Your Savings</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Pick Your Savings</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>7059</cost> - <start_date>30.01.1998</start_date> - <end_date>03.02.1998</end_date> + <startDate>30.01.1998</startDate> + <endDate>03.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>13829</cost> - <start_date>11.02.1998</start_date> - <end_date>14.02.1998</end_date> + <startDate>11.02.1998</startDate> + <endDate>14.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Super Wallet Savers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Super Wallet Savers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>13081</cost> - <start_date>26.02.1998</start_date> - <end_date>01.03.1998</end_date> + <startDate>26.02.1998</startDate> + <endDate>01.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Two for One</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Two for One</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>13361</cost> - <start_date>12.03.1998</start_date> - <end_date>13.03.1998</end_date> + <startDate>12.03.1998</startDate> + <endDate>13.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>13722</cost> - <start_date>25.03.1998</start_date> - <end_date>27.03.1998</end_date> + <startDate>25.03.1998</startDate> + <endDate>27.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Radio</mediaType> <cost>11692</cost> - <start_date>10.04.1998</start_date> - <end_date>12.04.1998</end_date> + <startDate>10.04.1998</startDate> + <endDate>12.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Radio</mediaType> <cost>12654</cost> - <start_date>23.04.1998</start_date> - <end_date>25.04.1998</end_date> + <startDate>23.04.1998</startDate> + <endDate>25.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Super Savers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Super Savers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>7807</cost> - <start_date>07.05.1998</start_date> - <end_date>10.05.1998</end_date> + <startDate>07.05.1998</startDate> + <endDate>10.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>6204</cost> - <start_date>19.05.1998</start_date> - <end_date>20.05.1998</end_date> + <startDate>19.05.1998</startDate> + <endDate>20.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Dollar Days</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Dollar Days</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>12720</cost> - <start_date>05.06.1998</start_date> - <end_date>07.06.1998</end_date> + <startDate>05.06.1998</startDate> + <endDate>07.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Pick Your Savings</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Pick Your Savings</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>9292</cost> - <start_date>17.06.1998</start_date> - <end_date>20.06.1998</end_date> + <startDate>17.06.1998</startDate> + <endDate>20.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>6663</cost> - <start_date>30.06.1998</start_date> - <end_date>03.07.1998</end_date> + <startDate>30.06.1998</startDate> + <endDate>03.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>13097</cost> - <start_date>15.07.1998</start_date> - <end_date>17.07.1998</end_date> + <startDate>15.07.1998</startDate> + <endDate>17.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Price Smashers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Price Smashers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>8158</cost> - <start_date>30.07.1998</start_date> - <end_date>01.08.1998</end_date> + <startDate>30.07.1998</startDate> + <endDate>01.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>Radio</mediaType> <cost>5193</cost> - <start_date>14.08.1998</start_date> - <end_date>17.08.1998</end_date> + <startDate>14.08.1998</startDate> + <endDate>17.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Big Promo</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Big Promo</promotionName> + <mediaType>Product Attachment</mediaType> <cost>7436</cost> - <start_date>26.08.1998</start_date> - <end_date>29.08.1998</end_date> + <startDate>26.08.1998</startDate> + <endDate>29.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Three for One</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Three for One</promotionName> + <mediaType>Radio</mediaType> <cost>9252</cost> - <start_date>10.09.1998</start_date> - <end_date>13.09.1998</end_date> + <startDate>10.09.1998</startDate> + <endDate>13.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Coupon Spectacular</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Coupon Spectacular</promotionName> + <mediaType>Radio</mediaType> <cost>5513</cost> - <start_date>25.09.1998</start_date> - <end_date>28.09.1998</end_date> + <startDate>25.09.1998</startDate> + <endDate>28.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>11602</cost> - <start_date>06.10.1998</start_date> - <end_date>10.10.1998</end_date> + <startDate>06.10.1998</startDate> + <endDate>10.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>Product Attachment</mediaType> <cost>8718</cost> - <start_date>23.10.1998</start_date> - <end_date>27.10.1998</end_date> + <startDate>23.10.1998</startDate> + <endDate>27.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>TV</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>TV</mediaType> <cost>5915</cost> - <start_date>05.11.1998</start_date> - <end_date>07.11.1998</end_date> + <startDate>05.11.1998</startDate> + <endDate>07.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>One Day Sale</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>One Day Sale</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>7279</cost> - <start_date>18.11.1998</start_date> - <end_date>20.11.1998</end_date> + <startDate>18.11.1998</startDate> + <endDate>20.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Pick Your Savings</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Pick Your Savings</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>5077</cost> - <start_date>03.12.1998</start_date> - <end_date>07.12.1998</end_date> + <startDate>03.12.1998</startDate> + <endDate>07.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>7066</cost> - <start_date>16.12.1998</start_date> - <end_date>17.12.1998</end_date> + <startDate>16.12.1998</startDate> + <endDate>17.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>131</promotion_district_id> - <promotion_name>Go For It</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>131</promotionDistrictId> + <promotionName>Go For It</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>12300</cost> - <start_date>30.12.1998</start_date> - <end_date>31.12.1998</end_date> + <startDate>30.12.1998</startDate> + <endDate>31.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>Bulk Mail</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>Bulk Mail</mediaType> <cost>7813</cost> - <start_date>18.01.1996</start_date> - <end_date>21.01.1996</end_date> + <startDate>18.01.1996</startDate> + <endDate>21.01.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Green Light Days</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Green Light Days</promotionName> + <mediaType>Product Attachment</mediaType> <cost>12020</cost> - <start_date>31.01.1996</start_date> - <end_date>03.02.1996</end_date> + <startDate>31.01.1996</startDate> + <endDate>03.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Street Handout</mediaType> <cost>5290</cost> - <start_date>15.02.1996</start_date> - <end_date>16.02.1996</end_date> + <startDate>15.02.1996</startDate> + <endDate>16.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>9843</cost> - <start_date>27.02.1996</start_date> - <end_date>01.03.1996</end_date> + <startDate>27.02.1996</startDate> + <endDate>01.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Green Light Special</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Green Light Special</promotionName> + <mediaType>Product Attachment</mediaType> <cost>11058</cost> - <start_date>14.03.1996</start_date> - <end_date>17.03.1996</end_date> + <startDate>14.03.1996</startDate> + <endDate>17.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Price Slashers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Price Slashers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>14040</cost> - <start_date>29.03.1996</start_date> - <end_date>30.03.1996</end_date> + <startDate>29.03.1996</startDate> + <endDate>30.03.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Go For It</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Go For It</promotionName> + <mediaType>Product Attachment</mediaType> <cost>5347</cost> - <start_date>09.04.1996</start_date> - <end_date>12.04.1996</end_date> + <startDate>09.04.1996</startDate> + <endDate>12.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>8445</cost> - <start_date>23.04.1996</start_date> - <end_date>26.04.1996</end_date> + <startDate>23.04.1996</startDate> + <endDate>26.04.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Street Handout</mediaType> <cost>11369</cost> - <start_date>09.05.1996</start_date> - <end_date>11.05.1996</end_date> + <startDate>09.05.1996</startDate> + <endDate>11.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Go For It</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Go For It</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>5321</cost> - <start_date>23.05.1996</start_date> - <end_date>26.05.1996</end_date> + <startDate>23.05.1996</startDate> + <endDate>26.05.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Super Wallet Savers</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Super Wallet Savers</promotionName> + <mediaType>Street Handout</mediaType> <cost>12010</cost> - <start_date>06.06.1996</start_date> - <end_date>07.06.1996</end_date> + <startDate>06.06.1996</startDate> + <endDate>07.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Go For It</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Go For It</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>6309</cost> - <start_date>20.06.1996</start_date> - <end_date>23.06.1996</end_date> + <startDate>20.06.1996</startDate> + <endDate>23.06.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>10942</cost> - <start_date>05.07.1996</start_date> - <end_date>06.07.1996</end_date> + <startDate>05.07.1996</startDate> + <endDate>06.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Pick Your Savings</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Pick Your Savings</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>9767</cost> - <start_date>17.07.1996</start_date> - <end_date>18.07.1996</end_date> + <startDate>17.07.1996</startDate> + <endDate>18.07.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Coupon Spectacular</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Coupon Spectacular</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>14493</cost> - <start_date>31.07.1996</start_date> - <end_date>04.08.1996</end_date> + <startDate>31.07.1996</startDate> + <endDate>04.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>6090</cost> - <start_date>16.08.1996</start_date> - <end_date>19.08.1996</end_date> + <startDate>16.08.1996</startDate> + <endDate>19.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Price Smashers</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Price Smashers</promotionName> + <mediaType>Daily Paper</mediaType> <cost>5088</cost> - <start_date>28.08.1996</start_date> - <end_date>29.08.1996</end_date> + <startDate>28.08.1996</startDate> + <endDate>29.08.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>8786</cost> - <start_date>12.09.1996</start_date> - <end_date>16.09.1996</end_date> + <startDate>12.09.1996</startDate> + <endDate>16.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Money Savers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Money Savers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>8893</cost> - <start_date>26.09.1996</start_date> - <end_date>27.09.1996</end_date> + <startDate>26.09.1996</startDate> + <endDate>27.09.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>10281</cost> - <start_date>08.10.1996</start_date> - <end_date>10.10.1996</end_date> + <startDate>08.10.1996</startDate> + <endDate>10.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Saving Days</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Saving Days</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>10989</cost> - <start_date>23.10.1996</start_date> - <end_date>24.10.1996</end_date> + <startDate>23.10.1996</startDate> + <endDate>24.10.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Two for One</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Two for One</promotionName> + <mediaType>Daily Paper</mediaType> <cost>6904</cost> - <start_date>08.11.1996</start_date> - <end_date>11.11.1996</end_date> + <startDate>08.11.1996</startDate> + <endDate>11.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>5048</cost> - <start_date>21.11.1996</start_date> - <end_date>22.11.1996</end_date> + <startDate>21.11.1996</startDate> + <endDate>22.11.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Two Day Sale</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Two Day Sale</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>14981</cost> - <start_date>04.12.1996</start_date> - <end_date>05.12.1996</end_date> + <startDate>04.12.1996</startDate> + <endDate>05.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>7398</cost> - <start_date>17.12.1996</start_date> - <end_date>19.12.1996</end_date> + <startDate>17.12.1996</startDate> + <endDate>19.12.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>Daily Paper</mediaType> <cost>8186</cost> - <start_date>02.01.1997</start_date> - <end_date>04.01.1997</end_date> + <startDate>02.01.1997</startDate> + <endDate>04.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Big Time Savings</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Big Time Savings</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>13826</cost> - <start_date>15.01.1997</start_date> - <end_date>19.01.1997</end_date> + <startDate>15.01.1997</startDate> + <endDate>19.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Shelf Emptiers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Shelf Emptiers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>14960</cost> - <start_date>29.01.1997</start_date> - <end_date>30.01.1997</end_date> + <startDate>29.01.1997</startDate> + <endDate>30.01.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Double Down Sale</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Double Down Sale</promotionName> + <mediaType>Street Handout</mediaType> <cost>9085</cost> - <start_date>12.02.1997</start_date> - <end_date>14.02.1997</end_date> + <startDate>12.02.1997</startDate> + <endDate>14.02.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>Product Attachment</mediaType> <cost>14746</cost> - <start_date>26.02.1997</start_date> - <end_date>02.03.1997</end_date> + <startDate>26.02.1997</startDate> + <endDate>02.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Price Savers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Price Savers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>6308</cost> - <start_date>12.03.1997</start_date> - <end_date>14.03.1997</end_date> + <startDate>12.03.1997</startDate> + <endDate>14.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Unbeatable Price Savers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Unbeatable Price Savers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>5988</cost> - <start_date>26.03.1997</start_date> - <end_date>28.03.1997</end_date> + <startDate>26.03.1997</startDate> + <endDate>28.03.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Sales Days</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Sales Days</promotionName> + <mediaType>Daily Paper</mediaType> <cost>9166</cost> - <start_date>10.04.1997</start_date> - <end_date>12.04.1997</end_date> + <startDate>10.04.1997</startDate> + <endDate>12.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>9700</cost> - <start_date>24.04.1997</start_date> - <end_date>27.04.1997</end_date> + <startDate>24.04.1997</startDate> + <endDate>27.04.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>You Save Days</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>You Save Days</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>9299</cost> - <start_date>07.05.1997</start_date> - <end_date>09.05.1997</end_date> + <startDate>07.05.1997</startDate> + <endDate>09.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>7524</cost> - <start_date>22.05.1997</start_date> - <end_date>25.05.1997</end_date> + <startDate>22.05.1997</startDate> + <endDate>25.05.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Shelf Emptiers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Shelf Emptiers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>8969</cost> - <start_date>05.06.1997</start_date> - <end_date>08.06.1997</end_date> + <startDate>05.06.1997</startDate> + <endDate>08.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>14376</cost> - <start_date>18.06.1997</start_date> - <end_date>22.06.1997</end_date> + <startDate>18.06.1997</startDate> + <endDate>22.06.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Price Savers</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Price Savers</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>9356</cost> - <start_date>04.07.1997</start_date> - <end_date>05.07.1997</end_date> + <startDate>04.07.1997</startDate> + <endDate>05.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Wallet Savers</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Wallet Savers</promotionName> + <mediaType>Radio</mediaType> <cost>6125</cost> - <start_date>17.07.1997</start_date> - <end_date>20.07.1997</end_date> + <startDate>17.07.1997</startDate> + <endDate>20.07.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>Street Handout</mediaType> <cost>5378</cost> - <start_date>31.07.1997</start_date> - <end_date>04.08.1997</end_date> + <startDate>31.07.1997</startDate> + <endDate>04.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>5658</cost> - <start_date>15.08.1997</start_date> - <end_date>17.08.1997</end_date> + <startDate>15.08.1997</startDate> + <endDate>17.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Free For All</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Free For All</promotionName> + <mediaType>Street Handout</mediaType> <cost>6019</cost> - <start_date>28.08.1997</start_date> - <end_date>30.08.1997</end_date> + <startDate>28.08.1997</startDate> + <endDate>30.08.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>Radio</mediaType> <cost>13989</cost> - <start_date>10.09.1997</start_date> - <end_date>13.09.1997</end_date> + <startDate>10.09.1997</startDate> + <endDate>13.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>14951</cost> - <start_date>26.09.1997</start_date> - <end_date>28.09.1997</end_date> + <startDate>26.09.1997</startDate> + <endDate>28.09.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Price Cutters</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Price Cutters</promotionName> + <mediaType>Daily Paper</mediaType> <cost>10103</cost> - <start_date>09.10.1997</start_date> - <end_date>12.10.1997</end_date> + <startDate>09.10.1997</startDate> + <endDate>12.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Go For It</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Go For It</promotionName> + <mediaType>Radio</mediaType> <cost>12403</cost> - <start_date>23.10.1997</start_date> - <end_date>26.10.1997</end_date> + <startDate>23.10.1997</startDate> + <endDate>26.10.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>8919</cost> - <start_date>06.11.1997</start_date> - <end_date>07.11.1997</end_date> + <startDate>06.11.1997</startDate> + <endDate>07.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Bag Stuffers</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Bag Stuffers</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>11589</cost> - <start_date>20.11.1997</start_date> - <end_date>23.11.1997</end_date> + <startDate>20.11.1997</startDate> + <endDate>23.11.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Daily Paper</mediaType> <cost>8959</cost> - <start_date>03.12.1997</start_date> - <end_date>07.12.1997</end_date> + <startDate>03.12.1997</startDate> + <endDate>07.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>Street Handout</mediaType> <cost>5394</cost> - <start_date>18.12.1997</start_date> - <end_date>21.12.1997</end_date> + <startDate>18.12.1997</startDate> + <endDate>21.12.1997</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Money Savers</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Money Savers</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>10455</cost> - <start_date>01.01.1998</start_date> - <end_date>03.01.1998</end_date> + <startDate>01.01.1998</startDate> + <endDate>03.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Green Light Special</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Green Light Special</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>14834</cost> - <start_date>14.01.1998</start_date> - <end_date>17.01.1998</end_date> + <startDate>14.01.1998</startDate> + <endDate>17.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Double Down Sale</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Double Down Sale</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>7077</cost> - <start_date>29.01.1998</start_date> - <end_date>30.01.1998</end_date> + <startDate>29.01.1998</startDate> + <endDate>30.01.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>11549</cost> - <start_date>10.02.1998</start_date> - <end_date>13.02.1998</end_date> + <startDate>10.02.1998</startDate> + <endDate>13.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Two for One</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Two for One</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>5155</cost> - <start_date>24.02.1998</start_date> - <end_date>25.02.1998</end_date> + <startDate>24.02.1998</startDate> + <endDate>25.02.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Green Light Special</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Green Light Special</promotionName> + <mediaType>Radio</mediaType> <cost>7801</cost> - <start_date>11.03.1998</start_date> - <end_date>13.03.1998</end_date> + <startDate>11.03.1998</startDate> + <endDate>13.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Daily Paper</mediaType> <cost>14917</cost> - <start_date>26.03.1998</start_date> - <end_date>29.03.1998</end_date> + <startDate>26.03.1998</startDate> + <endDate>29.03.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Big Time Discounts</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Big Time Discounts</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>12114</cost> - <start_date>10.04.1998</start_date> - <end_date>13.04.1998</end_date> + <startDate>10.04.1998</startDate> + <endDate>13.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Price Winners</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Price Winners</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>6921</cost> - <start_date>21.04.1998</start_date> - <end_date>23.04.1998</end_date> + <startDate>21.04.1998</startDate> + <endDate>23.04.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Save-It Sale</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Save-It Sale</promotionName> + <mediaType>Daily Paper</mediaType> <cost>7374</cost> - <start_date>07.05.1998</start_date> - <end_date>08.05.1998</end_date> + <startDate>07.05.1998</startDate> + <endDate>08.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Mystery Sale</promotion_name> - <media_type>In-Store Coupon</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Mystery Sale</promotionName> + <mediaType>In-Store Coupon</mediaType> <cost>6707</cost> - <start_date>20.05.1998</start_date> - <end_date>21.05.1998</end_date> + <startDate>20.05.1998</startDate> + <endDate>21.05.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Daily Paper</mediaType> <cost>11941</cost> - <start_date>04.06.1998</start_date> - <end_date>06.06.1998</end_date> + <startDate>04.06.1998</startDate> + <endDate>06.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Shelf Emptiers</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Shelf Emptiers</promotionName> + <mediaType>Product Attachment</mediaType> <cost>7948</cost> - <start_date>16.06.1998</start_date> - <end_date>18.06.1998</end_date> + <startDate>16.06.1998</startDate> + <endDate>18.06.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>I Cant Believe It Sale</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>I Cant Believe It Sale</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>7455</cost> - <start_date>03.07.1998</start_date> - <end_date>04.07.1998</end_date> + <startDate>03.07.1998</startDate> + <endDate>04.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Super Savers</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Super Savers</promotionName> + <mediaType>Street Handout</mediaType> <cost>14317</cost> - <start_date>15.07.1998</start_date> - <end_date>19.07.1998</end_date> + <startDate>15.07.1998</startDate> + <endDate>19.07.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>7587</cost> - <start_date>30.07.1998</start_date> - <end_date>01.08.1998</end_date> + <startDate>30.07.1998</startDate> + <endDate>01.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Double Your Savings</promotion_name> - <media_type>Daily Paper, Radio, TV</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Double Your Savings</promotionName> + <mediaType>Daily Paper, Radio, TV</mediaType> <cost>10760</cost> - <start_date>13.08.1998</start_date> - <end_date>17.08.1998</end_date> + <startDate>13.08.1998</startDate> + <endDate>17.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Sunday Paper, Radio</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Sunday Paper, Radio</mediaType> <cost>14631</cost> - <start_date>28.08.1998</start_date> - <end_date>29.08.1998</end_date> + <startDate>28.08.1998</startDate> + <endDate>29.08.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Bye Bye Baby</promotion_name> - <media_type>Product Attachment</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Bye Bye Baby</promotionName> + <mediaType>Product Attachment</mediaType> <cost>13710</cost> - <start_date>11.09.1998</start_date> - <end_date>12.09.1998</end_date> + <startDate>11.09.1998</startDate> + <endDate>12.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Super Savers</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Super Savers</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>12362</cost> - <start_date>22.09.1998</start_date> - <end_date>25.09.1998</end_date> + <startDate>22.09.1998</startDate> + <endDate>25.09.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Tip Top Savings</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Tip Top Savings</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>8115</cost> - <start_date>06.10.1998</start_date> - <end_date>09.10.1998</end_date> + <startDate>06.10.1998</startDate> + <endDate>09.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Sale Winners</promotion_name> - <media_type>Street Handout</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Sale Winners</promotionName> + <mediaType>Street Handout</mediaType> <cost>11040</cost> - <start_date>22.10.1998</start_date> - <end_date>24.10.1998</end_date> + <startDate>22.10.1998</startDate> + <endDate>24.10.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Green Light Special</promotion_name> - <media_type>Cash Register Handout</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Green Light Special</promotionName> + <mediaType>Cash Register Handout</mediaType> <cost>14992</cost> - <start_date>05.11.1998</start_date> - <end_date>07.11.1998</end_date> + <startDate>05.11.1998</startDate> + <endDate>07.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Radio</mediaType> <cost>11681</cost> - <start_date>19.11.1998</start_date> - <end_date>23.11.1998</end_date> + <startDate>19.11.1998</startDate> + <endDate>23.11.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Super Duper Savers</promotion_name> - <media_type>Daily Paper, Radio</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Super Duper Savers</promotionName> + <mediaType>Daily Paper, Radio</mediaType> <cost>13323</cost> - <start_date>03.12.1998</start_date> - <end_date>06.12.1998</end_date> + <startDate>03.12.1998</startDate> + <endDate>06.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>132</promotion_district_id> - <promotion_name>Best Savings</promotion_name> - <media_type>Sunday Paper</media_type> + <promotionDistrictId>132</promotionDistrictId> + <promotionName>Best Savings</promotionName> + <mediaType>Sunday Paper</mediaType> <cost>10612</cost> - <start_date>17.12.1998</start_date> - <end_date>20.12.1998</end_date> + <startDate>17.12.1998</startDate> + <endDate>20.12.1998</endDate> </Promotion> <Promotion> - <promotion_district_id>133</promotion_district_id> - <promotion_name>Weekend Markdown</promotion_name> - <media_type>Daily Paper</media_type> + <promotionDistrictId>133</promotionDistrictId> + <promotionName>Weekend Markdown</promotionName> + <mediaType>Daily Paper</mediaType> <cost>10909</cost> - <start_date>17.01.1996</start_date> - <end_date>19.01.1996</end_date> + <startDate>17.01.1996</startDate> + <endDate>19.01.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>133</promotion_district_id> - <promotion_name>Dollar Days</promotion_name> - <media_type>Radio</media_type> + <promotionDistrictId>133</promotionDistrictId> + <promotionName>Dollar Days</promotionName> + <mediaType>Radio</mediaType> <cost>9907</cost> - <start_date>02.02.1996</start_date> - <end_date>04.02.1996</end_date> + <startDate>02.02.1996</startDate> + <endDate>04.02.1996</endDate> </Promotion> <Promotion> - <promotion_district_id>133</promotion_district_id> - <promotion_name>Dollar Cutters</promotion_name> - <media_type>Sunday Paper, Radio, TV</media_type> + <promotionDistrictId>133</promotionDistrictId> + <promotionName>Dollar Cutters</promotionName> + <mediaType>Sunday Paper, Radio, TV</mediaType> <cost>13605</cost> - <start_date>13.02.1996</start_date> - <end_date>14.02.1996</end_date> + <startDate>13.02.1996</startDate> + <endDate>14.02.1996</endDate> </Promotion> -</vector> \ No newline at end of file +</vector>
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/stores.xml b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/stores.xml index ef3dcff..ab3eeba 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/stores.xml +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/stores.xml
@@ -1,1794 +1,1794 @@ <vector> - <Region> - <sales_city>None</sales_city> - <sales_state_province>None</sales_state_province> - <sales_district>No District</sales_district> - <sales_region>No Region</sales_region> - <sales_country>No Country</sales_country> - <sales_district_id>0</sales_district_id> + <Region> + <salesCity>None</salesCity> + <salesStateProvince>None</salesStateProvince> + <salesDistrict>No District</salesDistrict> + <salesRegion>No Region</salesRegion> + <salesCountry>No Country</salesCountry> + <salesDistrictId>0</salesDistrictId> </Region> <Region> - <sales_city>San Francisco</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Francisco</sales_district> - <sales_region>Central West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>123</sales_district_id> + <salesCity>San Francisco</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Francisco</salesDistrict> + <salesRegion>Central West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>123</salesDistrictId> <Store> - <store_type>Small Grocery</store_type> - <store_name>Store 14</store_name> - <store_number>14</store_number> - <store_street_address>4365 Indigo Ct</store_street_address> - <store_city>San Francisco</store_city> - <store_state>CA</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>USA</store_country> - <store_manager>Strehlo</store_manager> - <store_phone>135-555-4888</store_phone> - <store_fax>135-555-4881</store_fax> - <first_opened_date>24.11.1957</first_opened_date> - <last_remodel_date>07.01.1958</last_remodel_date> - <store_sqft>22478</store_sqft> - <grocery_sqft>15321</grocery_sqft> - <frozen_sqft>4294</frozen_sqft> - <meat_sqft>2863</meat_sqft> - <coffee_bar>true</coffee_bar> - <video_store>false</video_store> - <salad_bar>false</salad_bar> - <prepared_food>false</prepared_food> + <storeType>Small Grocery</storeType> + <storeName>Store 14</storeName> + <storeNumber>14</storeNumber> + <storeStreetAddress>4365 Indigo Ct</storeStreetAddress> + <storeCity>San Francisco</storeCity> + <storeState>CA</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>USA</storeCountry> + <storeManager>Strehlo</storeManager> + <storePhone>135-555-4888</storePhone> + <storeFax>135-555-4881</storeFax> + <firstOpenedDate>24.11.1957</firstOpenedDate> + <lastRemodelDate>07.01.1958</lastRemodelDate> + <storeSqft>22478</storeSqft> + <grocerySqft>15321</grocerySqft> + <frozenSqft>4294</frozenSqft> + <meatSqft>2863</meatSqft> + <coffeeBar>true</coffeeBar> + <videoStore>false</videoStore> + <saladBar>false</saladBar> + <preparedFood>false</preparedFood> <florist>false</florist> <Warehouse> - <warehouse_name>Food Service Storage, Inc.</warehouse_name> - <wa_address1>5259 Mildred Ln</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>San Francisco</warehouse_city> - <warehouse_state_province>CA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>471-555-2456</warehouse_phone> - <warehouse_fax>552-555-3249</warehouse_fax> + <warehouseName>Food Service Storage, Inc.</warehouseName> + <waAddress1>5259 Mildred Ln</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>San Francisco</warehouseCity> + <warehouseStateProvince>CA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>471-555-2456</warehousePhone> + <warehouseFax>552-555-3249</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>Mexico City</sales_city> - <sales_state_province>DF</sales_state_province> - <sales_district>Mexico City</sales_district> - <sales_region>Mexico Central</sales_region> - <sales_country>Mexico</sales_country> - <sales_district_id>118</sales_district_id> + <salesCity>Mexico City</salesCity> + <salesStateProvince>DF</salesStateProvince> + <salesDistrict>Mexico City</salesDistrict> + <salesRegion>Mexico Central</salesRegion> + <salesCountry>Mexico</salesCountry> + <salesDistrictId>118</salesDistrictId> <Store> - <store_type>Mid-Size Grocery</store_type> - <store_name>Store 9</store_name> - <store_number>9</store_number> - <store_street_address>1872 El Pintado Road</store_street_address> - <store_city>Mexico City</store_city> - <store_state>DF</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>Mexico</store_country> - <store_manager>Stuber</store_manager> - <store_phone>439-555-3524</store_phone> - <store_fax>439-555-3521</store_fax> - <first_opened_date>18.03.1955</first_opened_date> - <last_remodel_date>07.06.1959</last_remodel_date> - <store_sqft>36509</store_sqft> - <grocery_sqft>22450</grocery_sqft> - <frozen_sqft>8435</frozen_sqft> - <meat_sqft>5624</meat_sqft> - <coffee_bar>false</coffee_bar> - <video_store>false</video_store> - <salad_bar>false</salad_bar> - <prepared_food>false</prepared_food> + <storeType>Mid-Size Grocery</storeType> + <storeName>Store 9</storeName> + <storeNumber>9</storeNumber> + <storeStreetAddress>1872 El Pintado Road</storeStreetAddress> + <storeCity>Mexico City</storeCity> + <storeState>DF</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>Mexico</storeCountry> + <storeManager>Stuber</storeManager> + <storePhone>439-555-3524</storePhone> + <storeFax>439-555-3521</storeFax> + <firstOpenedDate>18.03.1955</firstOpenedDate> + <lastRemodelDate>07.06.1959</lastRemodelDate> + <storeSqft>36509</storeSqft> + <grocerySqft>22450</grocerySqft> + <frozenSqft>8435</frozenSqft> + <meatSqft>5624</meatSqft> + <coffeeBar>false</coffeeBar> + <videoStore>false</videoStore> + <saladBar>false</saladBar> + <preparedFood>false</preparedFood> <florist>false</florist> <Warehouse> - <warehouse_name>Freeman And Co</warehouse_name> - <wa_address1>234 West Covina Pkwy</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Mexico City</warehouse_city> - <warehouse_state_province>DF</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Mexico</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone></warehouse_phone> - <warehouse_fax></warehouse_fax> + <warehouseName>Freeman And Co</warehouseName> + <waAddress1>234 West Covina Pkwy</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Mexico City</warehouseCity> + <warehouseStateProvince>DF</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Mexico</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone></warehousePhone> + <warehouseFax></warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>Los Angeles</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>Los Angeles</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>116</sales_district_id> + <salesCity>Los Angeles</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>Los Angeles</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>116</salesDistrictId> <Store> - <store_type>Supermarket</store_type> - <store_name>Store 7</store_name> - <store_number>7</store_number> - <store_street_address>1077 Wharf Drive</store_street_address> - <store_city>Los Angeles</store_city> - <store_state>CA</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>USA</store_country> - <store_manager>White</store_manager> - <store_phone>477-555-7967</store_phone> - <store_fax>477-555-7961</store_fax> - <first_opened_date>21.05.1971</first_opened_date> - <last_remodel_date>20.10.1981</last_remodel_date> - <store_sqft>23598</store_sqft> - <grocery_sqft>14210</grocery_sqft> - <frozen_sqft>5633</frozen_sqft> - <meat_sqft>3755</meat_sqft> - <coffee_bar>false</coffee_bar> - <video_store>false</video_store> - <salad_bar>false</salad_bar> - <prepared_food>false</prepared_food> + <storeType>Supermarket</storeType> + <storeName>Store 7</storeName> + <storeNumber>7</storeNumber> + <storeStreetAddress>1077 Wharf Drive</storeStreetAddress> + <storeCity>Los Angeles</storeCity> + <storeState>CA</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>USA</storeCountry> + <storeManager>White</storeManager> + <storePhone>477-555-7967</storePhone> + <storeFax>477-555-7961</storeFax> + <firstOpenedDate>21.05.1971</firstOpenedDate> + <lastRemodelDate>20.10.1981</lastRemodelDate> + <storeSqft>23598</storeSqft> + <grocerySqft>14210</grocerySqft> + <frozenSqft>5633</frozenSqft> + <meatSqft>3755</meatSqft> + <coffeeBar>false</coffeeBar> + <videoStore>false</videoStore> + <saladBar>false</saladBar> + <preparedFood>false</preparedFood> <florist>true</florist> <Warehouse> - <warehouse_name>Artesia Warehousing, Inc.</warehouse_name> - <wa_address1>9889 Matterhorn Court</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Los Angeles</warehouse_city> - <warehouse_state_province>CA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>859-555-2792</warehouse_phone> - <warehouse_fax>740-555-6556</warehouse_fax> + <warehouseName>Artesia Warehousing, Inc.</warehouseName> + <waAddress1>9889 Matterhorn Court</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Los Angeles</warehouseCity> + <warehouseStateProvince>CA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>859-555-2792</warehousePhone> + <warehouseFax>740-555-6556</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>Guadalajara</sales_city> - <sales_state_province>Jalisco</sales_state_province> - <sales_district>Guadalajara</sales_district> - <sales_region>Mexico West</sales_region> - <sales_country>Mexico</sales_country> - <sales_district_id>114</sales_district_id> + <salesCity>Guadalajara</salesCity> + <salesStateProvince>Jalisco</salesStateProvince> + <salesDistrict>Guadalajara</salesDistrict> + <salesRegion>Mexico West</salesRegion> + <salesCountry>Mexico</salesCountry> + <salesDistrictId>114</salesDistrictId> <Store> - <store_type>Small Grocery</store_type> - <store_name>Store 5</store_name> - <store_number>5</store_number> - <store_street_address>1250 Coggins Drive</store_street_address> - <store_city>Guadalajara</store_city> - <store_state>Jalisco</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>Mexico</store_country> - <store_manager>Green</store_manager> - <store_phone>801-555-4324</store_phone> - <store_fax>801-555-4321</store_fax> - <first_opened_date>18.09.1978</first_opened_date> - <last_remodel_date>29.06.1991</last_remodel_date> - <store_sqft>24597</store_sqft> - <grocery_sqft>15012</grocery_sqft> - <frozen_sqft>5751</frozen_sqft> - <meat_sqft>3834</meat_sqft> - <coffee_bar>true</coffee_bar> - <video_store>false</video_store> - <salad_bar>false</salad_bar> - <prepared_food>false</prepared_food> + <storeType>Small Grocery</storeType> + <storeName>Store 5</storeName> + <storeNumber>5</storeNumber> + <storeStreetAddress>1250 Coggins Drive</storeStreetAddress> + <storeCity>Guadalajara</storeCity> + <storeState>Jalisco</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>Mexico</storeCountry> + <storeManager>Green</storeManager> + <storePhone>801-555-4324</storePhone> + <storeFax>801-555-4321</storeFax> + <firstOpenedDate>18.09.1978</firstOpenedDate> + <lastRemodelDate>29.06.1991</lastRemodelDate> + <storeSqft>24597</storeSqft> + <grocerySqft>15012</grocerySqft> + <frozenSqft>5751</frozenSqft> + <meatSqft>3834</meatSqft> + <coffeeBar>true</coffeeBar> + <videoStore>false</videoStore> + <saladBar>false</saladBar> + <preparedFood>false</preparedFood> <florist>false</florist> <Warehouse> - <warehouse_name>Focus, Inc.</warehouse_name> - <wa_address1>9116 Tice Valley Blv.</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Guadalajara</warehouse_city> - <warehouse_state_province>Jalisco</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Mexico</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>344-555-5530</warehouse_phone> - <warehouse_fax>379-555-9065</warehouse_fax> + <warehouseName>Focus, Inc.</warehouseName> + <waAddress1>9116 Tice Valley Blv.</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Guadalajara</warehouseCity> + <warehouseStateProvince>Jalisco</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Mexico</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>344-555-5530</warehousePhone> + <warehouseFax>379-555-9065</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>Vancouver</sales_city> - <sales_state_province>BC</sales_state_province> - <sales_district>Vancouver</sales_district> - <sales_region>Canada West</sales_region> - <sales_country>Canada</sales_country> - <sales_district_id>128</sales_district_id> + <salesCity>Vancouver</salesCity> + <salesStateProvince>BC</salesStateProvince> + <salesDistrict>Vancouver</salesDistrict> + <salesRegion>Canada West</salesRegion> + <salesCountry>Canada</salesCountry> + <salesDistrictId>128</salesDistrictId> <Store> - <store_type>Deluxe Supermarket</store_type> - <store_name>Store 19</store_name> - <store_number>19</store_number> - <store_street_address>6644 Sudance Drive</store_street_address> - <store_city>Vancouver</store_city> - <store_state>BC</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>Canada</store_country> - <store_manager>Ruth</store_manager> - <store_phone>862-555-7395</store_phone> - <store_fax>862-555-7391</store_fax> - <first_opened_date>27.03.1977</first_opened_date> - <last_remodel_date>25.10.1990</last_remodel_date> - <store_sqft>23112</store_sqft> - <grocery_sqft>16418</grocery_sqft> - <frozen_sqft>4016</frozen_sqft> - <meat_sqft>2678</meat_sqft> - <coffee_bar>true</coffee_bar> - <video_store>true</video_store> - <salad_bar>true</salad_bar> - <prepared_food>true</prepared_food> + <storeType>Deluxe Supermarket</storeType> + <storeName>Store 19</storeName> + <storeNumber>19</storeNumber> + <storeStreetAddress>6644 Sudance Drive</storeStreetAddress> + <storeCity>Vancouver</storeCity> + <storeState>BC</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>Canada</storeCountry> + <storeManager>Ruth</storeManager> + <storePhone>862-555-7395</storePhone> + <storeFax>862-555-7391</storeFax> + <firstOpenedDate>27.03.1977</firstOpenedDate> + <lastRemodelDate>25.10.1990</lastRemodelDate> + <storeSqft>23112</storeSqft> + <grocerySqft>16418</grocerySqft> + <frozenSqft>4016</frozenSqft> + <meatSqft>2678</meatSqft> + <coffeeBar>true</coffeeBar> + <videoStore>true</videoStore> + <saladBar>true</saladBar> + <preparedFood>true</preparedFood> <florist>true</florist> <Warehouse> - <warehouse_name>Bellmont Distributing</warehouse_name> - <wa_address1>5900 May Rd</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Vancouver</warehouse_city> - <warehouse_state_province>BC</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Canada</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>226-555-5335</warehouse_phone> - <warehouse_fax>361-555-7385</warehouse_fax> + <warehouseName>Bellmont Distributing</warehouseName> + <waAddress1>5900 May Rd</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Vancouver</warehouseCity> + <warehouseStateProvince>BC</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Canada</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>226-555-5335</warehousePhone> + <warehouseFax>361-555-7385</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>Victoria</sales_city> - <sales_state_province>BC</sales_state_province> - <sales_district>Victoria</sales_district> - <sales_region>Canada West</sales_region> - <sales_country>Canada</sales_country> - <sales_district_id>129</sales_district_id> + <salesCity>Victoria</salesCity> + <salesStateProvince>BC</salesStateProvince> + <salesDistrict>Victoria</salesDistrict> + <salesRegion>Canada West</salesRegion> + <salesCountry>Canada</salesCountry> + <salesDistrictId>129</salesDistrictId> <Store> - <store_type>Mid-Size Grocery</store_type> - <store_name>Store 20</store_name> - <store_number>20</store_number> - <store_street_address>3706 Marvelle Ln</store_street_address> - <store_city>Victoria</store_city> - <store_state>BC</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>Canada</store_country> - <store_manager>Cobb</store_manager> - <store_phone>897-555-1931</store_phone> - <store_fax>897-555-1931</store_fax> - <first_opened_date>06.02.1980</first_opened_date> - <last_remodel_date>09.04.1987</last_remodel_date> - <store_sqft>34452</store_sqft> - <grocery_sqft>27463</grocery_sqft> - <frozen_sqft>4193</frozen_sqft> - <meat_sqft>2795</meat_sqft> - <coffee_bar>true</coffee_bar> - <video_store>false</video_store> - <salad_bar>false</salad_bar> - <prepared_food>false</prepared_food> + <storeType>Mid-Size Grocery</storeType> + <storeName>Store 20</storeName> + <storeNumber>20</storeNumber> + <storeStreetAddress>3706 Marvelle Ln</storeStreetAddress> + <storeCity>Victoria</storeCity> + <storeState>BC</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>Canada</storeCountry> + <storeManager>Cobb</storeManager> + <storePhone>897-555-1931</storePhone> + <storeFax>897-555-1931</storeFax> + <firstOpenedDate>06.02.1980</firstOpenedDate> + <lastRemodelDate>09.04.1987</lastRemodelDate> + <storeSqft>34452</storeSqft> + <grocerySqft>27463</grocerySqft> + <frozenSqft>4193</frozenSqft> + <meatSqft>2795</meatSqft> + <coffeeBar>true</coffeeBar> + <videoStore>false</videoStore> + <saladBar>false</saladBar> + <preparedFood>false</preparedFood> <florist>true</florist> <Warehouse> - <warehouse_name>Rose Food Warehousing</warehouse_name> - <wa_address1>9104 Jacobsen Street</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Victoria</warehouse_city> - <warehouse_state_province>BC</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Canada</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>143-555-7496</warehouse_phone> - <warehouse_fax>332-555-1803</warehouse_fax> + <warehouseName>Rose Food Warehousing</warehouseName> + <waAddress1>9104 Jacobsen Street</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Victoria</warehouseCity> + <warehouseStateProvince>BC</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Canada</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>143-555-7496</warehousePhone> + <warehouseFax>332-555-1803</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>San Diego</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Diego</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>133</sales_district_id> + <salesCity>San Diego</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Diego</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>133</salesDistrictId> <Store> - <store_type>Supermarket</store_type> - <store_name>Store 24</store_name> - <store_number>24</store_number> - <store_street_address>2342 Waltham St.</store_street_address> - <store_city>San Diego</store_city> - <store_state>CA</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>USA</store_country> - <store_manager>Byrd</store_manager> - <store_phone>111-555-0303</store_phone> - <store_fax>111-555-0304</store_fax> - <first_opened_date>22.05.1979</first_opened_date> - <last_remodel_date>20.04.1986</last_remodel_date> - <store_sqft>0</store_sqft> - <grocery_sqft>0</grocery_sqft> - <frozen_sqft>0</frozen_sqft> - <meat_sqft>0</meat_sqft> - <coffee_bar>true</coffee_bar> - <video_store>false</video_store> - <salad_bar>true</salad_bar> - <prepared_food>false</prepared_food> + <storeType>Supermarket</storeType> + <storeName>Store 24</storeName> + <storeNumber>24</storeNumber> + <storeStreetAddress>2342 Waltham St.</storeStreetAddress> + <storeCity>San Diego</storeCity> + <storeState>CA</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>USA</storeCountry> + <storeManager>Byrd</storeManager> + <storePhone>111-555-0303</storePhone> + <storeFax>111-555-0304</storeFax> + <firstOpenedDate>22.05.1979</firstOpenedDate> + <lastRemodelDate>20.04.1986</lastRemodelDate> + <storeSqft>0</storeSqft> + <grocerySqft>0</grocerySqft> + <frozenSqft>0</frozenSqft> + <meatSqft>0</meatSqft> + <coffeeBar>true</coffeeBar> + <videoStore>false</videoStore> + <saladBar>true</saladBar> + <preparedFood>false</preparedFood> <florist>true</florist> <Warehouse> - <warehouse_name>Jorgensen Service Storage</warehouse_name> - <wa_address1>4832 Park Glen Ct</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>San Diego</warehouse_city> - <warehouse_state_province>CA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>259-555-2824</warehouse_phone> - <warehouse_fax>470-555-4760</warehouse_fax> + <warehouseName>Jorgensen Service Storage</warehouseName> + <waAddress1>4832 Park Glen Ct</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>San Diego</warehouseCity> + <warehouseStateProvince>CA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>259-555-2824</warehousePhone> + <warehouseFax>470-555-4760</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>Coronado</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Diego</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>133</sales_district_id> + <salesCity>Coronado</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Diego</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>133</salesDistrictId> </Region> <Region> - <sales_city>National City</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Diego</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>133</sales_district_id> + <salesCity>National City</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Diego</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>133</salesDistrictId> </Region> <Region> - <sales_city>Lincoln Acres</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Diego</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>133</sales_district_id> + <salesCity>Lincoln Acres</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Diego</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>133</salesDistrictId> </Region> <Region> - <sales_city>La Mesa</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Diego</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>133</sales_district_id> + <salesCity>La Mesa</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Diego</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>133</salesDistrictId> </Region> <Region> - <sales_city>Lemon Grove</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Diego</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>133</sales_district_id> + <salesCity>Lemon Grove</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Diego</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>133</salesDistrictId> </Region> <Region> - <sales_city>Chula Vista</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Diego</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>133</sales_district_id> + <salesCity>Chula Vista</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Diego</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>133</salesDistrictId> </Region> <Region> - <sales_city>Imperial Beach</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Diego</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>133</sales_district_id> + <salesCity>Imperial Beach</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Diego</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>133</salesDistrictId> </Region> <Region> - <sales_city>Spring Valley</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Diego</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>133</sales_district_id> + <salesCity>Spring Valley</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Diego</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>133</salesDistrictId> </Region> <Region> - <sales_city>El Cajon</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Diego</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>133</sales_district_id> + <salesCity>El Cajon</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Diego</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>133</salesDistrictId> </Region> <Region> - <sales_city>Grossmont</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Diego</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>133</sales_district_id> + <salesCity>Grossmont</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Diego</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>133</salesDistrictId> </Region> <Region> - <sales_city>Seattle</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Seattle</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>124</sales_district_id> + <salesCity>Seattle</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Seattle</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>124</salesDistrictId> <Store> - <store_type>Supermarket</store_type> - <store_name>Store 15</store_name> - <store_number>15</store_number> - <store_street_address>5006 Highland Drive</store_street_address> - <store_city>Seattle</store_city> - <store_state>WA</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>USA</store_country> - <store_manager>Ollom</store_manager> - <store_phone>893-555-1024</store_phone> - <store_fax>893-555-1021</store_fax> - <first_opened_date>24.07.1969</first_opened_date> - <last_remodel_date>19.10.1973</last_remodel_date> - <store_sqft>21215</store_sqft> - <grocery_sqft>13305</grocery_sqft> - <frozen_sqft>4746</frozen_sqft> - <meat_sqft>3164</meat_sqft> - <coffee_bar>true</coffee_bar> - <video_store>false</video_store> - <salad_bar>false</salad_bar> - <prepared_food>false</prepared_food> + <storeType>Supermarket</storeType> + <storeName>Store 15</storeName> + <storeNumber>15</storeNumber> + <storeStreetAddress>5006 Highland Drive</storeStreetAddress> + <storeCity>Seattle</storeCity> + <storeState>WA</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>USA</storeCountry> + <storeManager>Ollom</storeManager> + <storePhone>893-555-1024</storePhone> + <storeFax>893-555-1021</storeFax> + <firstOpenedDate>24.07.1969</firstOpenedDate> + <lastRemodelDate>19.10.1973</lastRemodelDate> + <storeSqft>21215</storeSqft> + <grocerySqft>13305</grocerySqft> + <frozenSqft>4746</frozenSqft> + <meatSqft>3164</meatSqft> + <coffeeBar>true</coffeeBar> + <videoStore>false</videoStore> + <saladBar>false</saladBar> + <preparedFood>false</preparedFood> <florist>false</florist> <Warehouse> - <warehouse_name>Quality Warehousing and Trucking</warehouse_name> - <wa_address1>3337 Northpoint Ct</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Seattle</warehouse_city> - <warehouse_state_province>WA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>427-555-9060</warehouse_phone> - <warehouse_fax>869-555-1652</warehouse_fax> + <warehouseName>Quality Warehousing and Trucking</warehouseName> + <waAddress1>3337 Northpoint Ct</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Seattle</warehouseCity> + <warehouseStateProvince>WA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>427-555-9060</warehousePhone> + <warehouseFax>869-555-1652</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>Redmond</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Seattle</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>124</sales_district_id> + <salesCity>Redmond</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Seattle</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>124</salesDistrictId> </Region> <Region> - <sales_city>Ballard</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Seattle</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>124</sales_district_id> + <salesCity>Ballard</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Seattle</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>124</salesDistrictId> </Region> <Region> - <sales_city>Issaquah</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Seattle</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>124</sales_district_id> + <salesCity>Issaquah</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Seattle</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>124</salesDistrictId> </Region> <Region> - <sales_city>Portland</sales_city> - <sales_state_province>OR</sales_state_province> - <sales_district>Portland</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>120</sales_district_id> + <salesCity>Portland</salesCity> + <salesStateProvince>OR</salesStateProvince> + <salesDistrict>Portland</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>120</salesDistrictId> <Store> - <store_type>Supermarket</store_type> - <store_name>Store 11</store_name> - <store_number>11</store_number> - <store_street_address>5371 Holland Circle</store_street_address> - <store_city>Portland</store_city> - <store_state>OR</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>USA</store_country> - <store_manager>Erickson</store_manager> - <store_phone>685-555-8995</store_phone> - <store_fax>685-555-8991</store_fax> - <first_opened_date>17.09.1976</first_opened_date> - <last_remodel_date>15.05.1982</last_remodel_date> - <store_sqft>20319</store_sqft> - <grocery_sqft>16232</grocery_sqft> - <frozen_sqft>2452</frozen_sqft> - <meat_sqft>1635</meat_sqft> - <coffee_bar>false</coffee_bar> - <video_store>false</video_store> - <salad_bar>false</salad_bar> - <prepared_food>false</prepared_food> + <storeType>Supermarket</storeType> + <storeName>Store 11</storeName> + <storeNumber>11</storeNumber> + <storeStreetAddress>5371 Holland Circle</storeStreetAddress> + <storeCity>Portland</storeCity> + <storeState>OR</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>USA</storeCountry> + <storeManager>Erickson</storeManager> + <storePhone>685-555-8995</storePhone> + <storeFax>685-555-8991</storeFax> + <firstOpenedDate>17.09.1976</firstOpenedDate> + <lastRemodelDate>15.05.1982</lastRemodelDate> + <storeSqft>20319</storeSqft> + <grocerySqft>16232</grocerySqft> + <frozenSqft>2452</frozenSqft> + <meatSqft>1635</meatSqft> + <coffeeBar>false</coffeeBar> + <videoStore>false</videoStore> + <saladBar>false</saladBar> + <preparedFood>false</preparedFood> <florist>false</florist> <Warehouse> - <warehouse_name>Quality Distribution, Inc.</warehouse_name> - <wa_address1>6085 Darlene Drive</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Portland</warehouse_city> - <warehouse_state_province>OR</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>181-555-3588</warehouse_phone> - <warehouse_fax>269-555-8381</warehouse_fax> + <warehouseName>Quality Distribution, Inc.</warehouseName> + <waAddress1>6085 Darlene Drive</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Portland</warehouseCity> + <warehouseStateProvince>OR</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>181-555-3588</warehousePhone> + <warehouseFax>269-555-8381</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>Salem</sales_city> - <sales_state_province>OR</sales_state_province> - <sales_district>Salem</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>122</sales_district_id> + <salesCity>Salem</salesCity> + <salesStateProvince>OR</salesStateProvince> + <salesDistrict>Salem</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>122</salesDistrictId> <Store> - <store_type>Deluxe Supermarket</store_type> - <store_name>Store 13</store_name> - <store_number>13</store_number> - <store_street_address>5179 Valley Ave</store_street_address> - <store_city>Salem</store_city> - <store_state>OR</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>USA</store_country> - <store_manager>Inmon</store_manager> - <store_phone>977-555-2724</store_phone> - <store_fax>977-555-2721</store_fax> - <first_opened_date>13.04.1957</first_opened_date> - <last_remodel_date>10.11.1997</last_remodel_date> - <store_sqft>27694</store_sqft> - <grocery_sqft>18670</grocery_sqft> - <frozen_sqft>5415</frozen_sqft> - <meat_sqft>3610</meat_sqft> - <coffee_bar>true</coffee_bar> - <video_store>true</video_store> - <salad_bar>true</salad_bar> - <prepared_food>true</prepared_food> + <storeType>Deluxe Supermarket</storeType> + <storeName>Store 13</storeName> + <storeNumber>13</storeNumber> + <storeStreetAddress>5179 Valley Ave</storeStreetAddress> + <storeCity>Salem</storeCity> + <storeState>OR</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>USA</storeCountry> + <storeManager>Inmon</storeManager> + <storePhone>977-555-2724</storePhone> + <storeFax>977-555-2721</storeFax> + <firstOpenedDate>13.04.1957</firstOpenedDate> + <lastRemodelDate>10.11.1997</lastRemodelDate> + <storeSqft>27694</storeSqft> + <grocerySqft>18670</grocerySqft> + <frozenSqft>5415</frozenSqft> + <meatSqft>3610</meatSqft> + <coffeeBar>true</coffeeBar> + <videoStore>true</videoStore> + <saladBar>true</saladBar> + <preparedFood>true</preparedFood> <florist>true</florist> <Warehouse> - <warehouse_name>Treehouse Distribution</warehouse_name> - <wa_address1>5473 Olive Hill</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Salem</warehouse_city> - <warehouse_state_province>OR</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>831-555-6210</warehouse_phone> - <warehouse_fax>481-555-1317</warehouse_fax> + <warehouseName>Treehouse Distribution</warehouseName> + <waAddress1>5473 Olive Hill</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Salem</warehouseCity> + <warehouseStateProvince>OR</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>831-555-6210</warehousePhone> + <warehouseFax>481-555-1317</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>Orizaba</sales_city> - <sales_state_province>Veracruz</sales_state_province> - <sales_district>Orizaba</sales_district> - <sales_region>Mexico Central</sales_region> - <sales_country>Mexico</sales_country> - <sales_district_id>119</sales_district_id> + <salesCity>Orizaba</salesCity> + <salesStateProvince>Veracruz</salesStateProvince> + <salesDistrict>Orizaba</salesDistrict> + <salesRegion>Mexico Central</salesRegion> + <salesCountry>Mexico</salesCountry> + <salesDistrictId>119</salesDistrictId> <Store> - <store_type>Supermarket</store_type> - <store_name>Store 10</store_name> - <store_number>10</store_number> - <store_street_address>7894 Rotherham Dr</store_street_address> - <store_city>Orizaba</store_city> - <store_state>Veracruz</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>Mexico</store_country> - <store_manager>Merz</store_manager> - <store_phone>212-555-4774</store_phone> - <store_fax>212-555-4771</store_fax> - <first_opened_date>13.04.1979</first_opened_date> - <last_remodel_date>30.01.1982</last_remodel_date> - <store_sqft>34791</store_sqft> - <grocery_sqft>26354</grocery_sqft> - <frozen_sqft>5062</frozen_sqft> - <meat_sqft>3375</meat_sqft> - <coffee_bar>false</coffee_bar> - <video_store>false</video_store> - <salad_bar>true</salad_bar> - <prepared_food>true</prepared_food> + <storeType>Supermarket</storeType> + <storeName>Store 10</storeName> + <storeNumber>10</storeNumber> + <storeStreetAddress>7894 Rotherham Dr</storeStreetAddress> + <storeCity>Orizaba</storeCity> + <storeState>Veracruz</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>Mexico</storeCountry> + <storeManager>Merz</storeManager> + <storePhone>212-555-4774</storePhone> + <storeFax>212-555-4771</storeFax> + <firstOpenedDate>13.04.1979</firstOpenedDate> + <lastRemodelDate>30.01.1982</lastRemodelDate> + <storeSqft>34791</storeSqft> + <grocerySqft>26354</grocerySqft> + <frozenSqft>5062</frozenSqft> + <meatSqft>3375</meatSqft> + <coffeeBar>false</coffeeBar> + <videoStore>false</videoStore> + <saladBar>true</saladBar> + <preparedFood>true</preparedFood> <florist>false</florist> <Warehouse> - <warehouse_name>Jamison, Inc.</warehouse_name> - <wa_address1>1172 Liana Lane</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Orizaba</warehouse_city> - <warehouse_state_province>Veracruz</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Mexico</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>379-555-5756</warehouse_phone> - <warehouse_fax>436-555-7920</warehouse_fax> + <warehouseName>Jamison, Inc.</warehouseName> + <waAddress1>1172 Liana Lane</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Orizaba</warehouseCity> + <warehouseStateProvince>Veracruz</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Mexico</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>379-555-5756</warehousePhone> + <warehouseFax>436-555-7920</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>Hidalgo</sales_city> - <sales_state_province>Zacatecas</sales_state_province> - <sales_district>Hidalgo</sales_district> - <sales_region>Mexico Central</sales_region> - <sales_country>Mexico</sales_country> - <sales_district_id>115</sales_district_id> + <salesCity>Hidalgo</salesCity> + <salesStateProvince>Zacatecas</salesStateProvince> + <salesDistrict>Hidalgo</salesDistrict> + <salesRegion>Mexico Central</salesRegion> + <salesCountry>Mexico</salesCountry> + <salesDistrictId>115</salesDistrictId> <Store> - <store_type>Deluxe Supermarket</store_type> - <store_name>Store 12</store_name> - <store_number>12</store_number> - <store_street_address>1120 Westchester Pl</store_street_address> - <store_city>Hidalgo</store_city> - <store_state>Zacatecas</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>Mexico</store_country> - <store_manager>Kalman</store_manager> - <store_phone>151-555-1702</store_phone> - <store_fax>151-555-1701</store_fax> - <first_opened_date>25.03.1968</first_opened_date> - <last_remodel_date>18.12.1993</last_remodel_date> - <store_sqft>30584</store_sqft> - <grocery_sqft>21938</grocery_sqft> - <frozen_sqft>5188</frozen_sqft> - <meat_sqft>3458</meat_sqft> - <coffee_bar>true</coffee_bar> - <video_store>true</video_store> - <salad_bar>true</salad_bar> - <prepared_food>true</prepared_food> + <storeType>Deluxe Supermarket</storeType> + <storeName>Store 12</storeName> + <storeNumber>12</storeNumber> + <storeStreetAddress>1120 Westchester Pl</storeStreetAddress> + <storeCity>Hidalgo</storeCity> + <storeState>Zacatecas</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>Mexico</storeCountry> + <storeManager>Kalman</storeManager> + <storePhone>151-555-1702</storePhone> + <storeFax>151-555-1701</storeFax> + <firstOpenedDate>25.03.1968</firstOpenedDate> + <lastRemodelDate>18.12.1993</lastRemodelDate> + <storeSqft>30584</storeSqft> + <grocerySqft>21938</grocerySqft> + <frozenSqft>5188</frozenSqft> + <meatSqft>3458</meatSqft> + <coffeeBar>true</coffeeBar> + <videoStore>true</videoStore> + <saladBar>true</saladBar> + <preparedFood>true</preparedFood> <florist>true</florist> <Warehouse> - <warehouse_name>Arnold and Sons</warehouse_name> - <wa_address1>5617 Saclan Terrace</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Hidalgo</warehouse_city> - <warehouse_state_province>Zacatecas</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Mexico</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>360-555-8035</warehouse_phone> - <warehouse_fax>263-555-1427</warehouse_fax> + <warehouseName>Arnold and Sons</warehouseName> + <waAddress1>5617 Saclan Terrace</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Hidalgo</warehouseCity> + <warehouseStateProvince>Zacatecas</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Mexico</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>360-555-8035</warehousePhone> + <warehouseFax>263-555-1427</warehouseFax> </Warehouse> </Store> <Store> - <store_type>Mid-Size Grocery</store_type> - <store_name>Store 18</store_name> - <store_number>18</store_number> - <store_street_address>6764 Glen Road</store_street_address> - <store_city>Hidalgo</store_city> - <store_state>Zacatecas</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>Mexico</store_country> - <store_manager>Brown</store_manager> - <store_phone>528-555-8317</store_phone> - <store_fax>528-555-8311</store_fax> - <first_opened_date>28.06.1969</first_opened_date> - <last_remodel_date>30.08.1975</last_remodel_date> - <store_sqft>38382</store_sqft> - <grocery_sqft>30351</grocery_sqft> - <frozen_sqft>4819</frozen_sqft> - <meat_sqft>3213</meat_sqft> - <coffee_bar>false</coffee_bar> - <video_store>false</video_store> - <salad_bar>false</salad_bar> - <prepared_food>false</prepared_food> + <storeType>Mid-Size Grocery</storeType> + <storeName>Store 18</storeName> + <storeNumber>18</storeNumber> + <storeStreetAddress>6764 Glen Road</storeStreetAddress> + <storeCity>Hidalgo</storeCity> + <storeState>Zacatecas</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>Mexico</storeCountry> + <storeManager>Brown</storeManager> + <storePhone>528-555-8317</storePhone> + <storeFax>528-555-8311</storeFax> + <firstOpenedDate>28.06.1969</firstOpenedDate> + <lastRemodelDate>30.08.1975</lastRemodelDate> + <storeSqft>38382</storeSqft> + <grocerySqft>30351</grocerySqft> + <frozenSqft>4819</frozenSqft> + <meatSqft>3213</meatSqft> + <coffeeBar>false</coffeeBar> + <videoStore>false</videoStore> + <saladBar>false</saladBar> + <preparedFood>false</preparedFood> <florist>false</florist> <Warehouse> - <warehouse_name>Worthington Food Products</warehouse_name> - <wa_address1>4659 Cape Cod Way</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Hidalgo</warehouse_city> - <warehouse_state_province>Zacatecas</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Mexico</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>609-555-5413</warehouse_phone> - <warehouse_fax>952-555-8492</warehouse_fax> + <warehouseName>Worthington Food Products</warehouseName> + <waAddress1>4659 Cape Cod Way</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Hidalgo</warehouseCity> + <warehouseStateProvince>Zacatecas</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Mexico</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>609-555-5413</warehousePhone> + <warehouseFax>952-555-8492</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>Merida</sales_city> - <sales_state_province>Yucatan</sales_state_province> - <sales_district>Marida</sales_district> - <sales_region>Mexico South</sales_region> - <sales_country>Mexico</sales_country> - <sales_district_id>117</sales_district_id> + <salesCity>Merida</salesCity> + <salesStateProvince>Yucatan</salesStateProvince> + <salesDistrict>Marida</salesDistrict> + <salesRegion>Mexico South</salesRegion> + <salesCountry>Mexico</salesCountry> + <salesDistrictId>117</salesDistrictId> <Store> - <store_type>Deluxe Supermarket</store_type> - <store_name>Store 8</store_name> - <store_number>8</store_number> - <store_street_address>3173 Buena Vista Ave</store_street_address> - <store_city>Merida</store_city> - <store_state>Yucatan</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>Mexico</store_country> - <store_manager>Williams</store_manager> - <store_phone>797-555-3417</store_phone> - <store_fax>797-555-3411</store_fax> - <first_opened_date>23.09.1958</first_opened_date> - <last_remodel_date>18.11.1967</last_remodel_date> - <store_sqft>30797</store_sqft> - <grocery_sqft>20141</grocery_sqft> - <frozen_sqft>6393</frozen_sqft> - <meat_sqft>4262</meat_sqft> - <coffee_bar>true</coffee_bar> - <video_store>true</video_store> - <salad_bar>true</salad_bar> - <prepared_food>true</prepared_food> + <storeType>Deluxe Supermarket</storeType> + <storeName>Store 8</storeName> + <storeNumber>8</storeNumber> + <storeStreetAddress>3173 Buena Vista Ave</storeStreetAddress> + <storeCity>Merida</storeCity> + <storeState>Yucatan</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>Mexico</storeCountry> + <storeManager>Williams</storeManager> + <storePhone>797-555-3417</storePhone> + <storeFax>797-555-3411</storeFax> + <firstOpenedDate>23.09.1958</firstOpenedDate> + <lastRemodelDate>18.11.1967</lastRemodelDate> + <storeSqft>30797</storeSqft> + <grocerySqft>20141</grocerySqft> + <frozenSqft>6393</frozenSqft> + <meatSqft>4262</meatSqft> + <coffeeBar>true</coffeeBar> + <videoStore>true</videoStore> + <saladBar>true</saladBar> + <preparedFood>true</preparedFood> <florist>true</florist> <Warehouse> - <warehouse_name>Bastani and Sons</warehouse_name> - <wa_address1>1893 Northridge Drive</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Marida</warehouse_city> - <warehouse_state_province>Yucatan</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Mexico</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>846-555-3024</warehouse_phone> - <warehouse_fax>804-555-6674</warehouse_fax> + <warehouseName>Bastani and Sons</warehouseName> + <waAddress1>1893 Northridge Drive</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Marida</warehouseCity> + <warehouseStateProvince>Yucatan</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Mexico</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>846-555-3024</warehousePhone> + <warehouseFax>804-555-6674</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>Camacho</sales_city> - <sales_state_province>Zacatecas</sales_state_province> - <sales_district>Camacho</sales_district> - <sales_region>Mexico Central</sales_region> - <sales_country>Mexico</sales_country> - <sales_district_id>113</sales_district_id> + <salesCity>Camacho</salesCity> + <salesStateProvince>Zacatecas</salesStateProvince> + <salesDistrict>Camacho</salesDistrict> + <salesRegion>Mexico Central</salesRegion> + <salesCountry>Mexico</salesCountry> + <salesDistrictId>113</salesDistrictId> <Store> - <store_type>Gourmet Supermarket</store_type> - <store_name>Store 4</store_name> - <store_number>4</store_number> - <store_street_address>433 St George Dr</store_street_address> - <store_city>Camacho</store_city> - <store_state>Zacatecas</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>Mexico</store_country> - <store_manager>Johnson</store_manager> - <store_phone>304-555-1474</store_phone> - <store_fax>304-555-1471</store_fax> - <first_opened_date>27.09.1994</first_opened_date> - <last_remodel_date>01.12.1995</last_remodel_date> - <store_sqft>23759</store_sqft> - <grocery_sqft>16844</grocery_sqft> - <frozen_sqft>4149</frozen_sqft> - <meat_sqft>2766</meat_sqft> - <coffee_bar>true</coffee_bar> - <video_store>false</video_store> - <salad_bar>true</salad_bar> - <prepared_food>true</prepared_food> + <storeType>Gourmet Supermarket</storeType> + <storeName>Store 4</storeName> + <storeNumber>4</storeNumber> + <storeStreetAddress>433 St George Dr</storeStreetAddress> + <storeCity>Camacho</storeCity> + <storeState>Zacatecas</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>Mexico</storeCountry> + <storeManager>Johnson</storeManager> + <storePhone>304-555-1474</storePhone> + <storeFax>304-555-1471</storeFax> + <firstOpenedDate>27.09.1994</firstOpenedDate> + <lastRemodelDate>01.12.1995</lastRemodelDate> + <storeSqft>23759</storeSqft> + <grocerySqft>16844</grocerySqft> + <frozenSqft>4149</frozenSqft> + <meatSqft>2766</meatSqft> + <coffeeBar>true</coffeeBar> + <videoStore>false</videoStore> + <saladBar>true</saladBar> + <preparedFood>true</preparedFood> <florist>true</florist> <Warehouse> - <warehouse_name>Anderson Warehousing</warehouse_name> - <wa_address1>5657 Georgia Dr</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Camacho</warehouse_city> - <warehouse_state_province>Zacatecas</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Mexico</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>681-555-1655</warehouse_phone> - <warehouse_fax>946-555-4848</warehouse_fax> + <warehouseName>Anderson Warehousing</warehouseName> + <waAddress1>5657 Georgia Dr</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Camacho</warehouseCity> + <warehouseStateProvince>Zacatecas</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Mexico</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>681-555-1655</warehousePhone> + <warehouseFax>946-555-4848</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>Acapulco</sales_city> - <sales_state_province>Guerrero</sales_state_province> - <sales_district>Acapulco</sales_district> - <sales_region>Mexico West</sales_region> - <sales_country>Mexico</sales_country> - <sales_district_id>110</sales_district_id> + <salesCity>Acapulco</salesCity> + <salesStateProvince>Guerrero</salesStateProvince> + <salesDistrict>Acapulco</salesDistrict> + <salesRegion>Mexico West</salesRegion> + <salesCountry>Mexico</salesCountry> + <salesDistrictId>110</salesDistrictId> <Store> - <store_type>Supermarket</store_type> - <store_name>Store 1</store_name> - <store_number>1</store_number> - <store_street_address>2853 Bailey Rd</store_street_address> - <store_city>Acapulco</store_city> - <store_state>Guerrero</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>Mexico</store_country> - <store_manager>Jones</store_manager> - <store_phone>262-555-5124</store_phone> - <store_fax>262-555-5121</store_fax> - <first_opened_date>09.01.1982</first_opened_date> - <last_remodel_date>05.12.1990</last_remodel_date> - <store_sqft>23593</store_sqft> - <grocery_sqft>17475</grocery_sqft> - <frozen_sqft>3671</frozen_sqft> - <meat_sqft>2447</meat_sqft> - <coffee_bar>false</coffee_bar> - <video_store>false</video_store> - <salad_bar>false</salad_bar> - <prepared_food>false</prepared_food> + <storeType>Supermarket</storeType> + <storeName>Store 1</storeName> + <storeNumber>1</storeNumber> + <storeStreetAddress>2853 Bailey Rd</storeStreetAddress> + <storeCity>Acapulco</storeCity> + <storeState>Guerrero</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>Mexico</storeCountry> + <storeManager>Jones</storeManager> + <storePhone>262-555-5124</storePhone> + <storeFax>262-555-5121</storeFax> + <firstOpenedDate>09.01.1982</firstOpenedDate> + <lastRemodelDate>05.12.1990</lastRemodelDate> + <storeSqft>23593</storeSqft> + <grocerySqft>17475</grocerySqft> + <frozenSqft>3671</frozenSqft> + <meatSqft>2447</meatSqft> + <coffeeBar>false</coffeeBar> + <videoStore>false</videoStore> + <saladBar>false</saladBar> + <preparedFood>false</preparedFood> <florist>false</florist> <Warehouse> - <warehouse_name>Salka Warehousing</warehouse_name> - <wa_address1>9716 Alovera Road</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Acapulco</warehouse_city> - <warehouse_state_province>Guerrero</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Mexico</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>821-555-1658</warehouse_phone> - <warehouse_fax>594-555-2908</warehouse_fax> + <warehouseName>Salka Warehousing</warehouseName> + <waAddress1>9716 Alovera Road</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Acapulco</warehouseCity> + <warehouseStateProvince>Guerrero</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Mexico</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>821-555-1658</warehousePhone> + <warehouseFax>594-555-2908</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>La Cruz</sales_city> - <sales_state_province>Sinaloa</sales_state_province> - <sales_district>Acapulco</sales_district> - <sales_region>Mexico West</sales_region> - <sales_country>Mexico</sales_country> - <sales_district_id>110</sales_district_id> + <salesCity>La Cruz</salesCity> + <salesStateProvince>Sinaloa</salesStateProvince> + <salesDistrict>Acapulco</salesDistrict> + <salesRegion>Mexico West</salesRegion> + <salesCountry>Mexico</salesCountry> + <salesDistrictId>110</salesDistrictId> </Region> <Region> - <sales_city>Tlaxiaco</sales_city> - <sales_state_province>Oaxaca</sales_state_province> - <sales_district>Tlaxiaco</sales_district> - <sales_region>Mexico South</sales_region> - <sales_country>Mexico</sales_country> - <sales_district_id>127</sales_district_id> + <salesCity>Tlaxiaco</salesCity> + <salesStateProvince>Oaxaca</salesStateProvince> + <salesDistrict>Tlaxiaco</salesDistrict> + <salesRegion>Mexico South</salesRegion> + <salesCountry>Mexico</salesCountry> + <salesDistrictId>127</salesDistrictId> </Region> <Region> - <sales_city>Daly City</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Francisco</sales_district> - <sales_region>Central West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>123</sales_district_id> + <salesCity>Daly City</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Francisco</salesDistrict> + <salesRegion>Central West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>123</salesDistrictId> </Region> <Region> - <sales_city>Colma</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Francisco</sales_district> - <sales_region>Central West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>123</sales_district_id> + <salesCity>Colma</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Francisco</salesDistrict> + <salesRegion>Central West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>123</salesDistrictId> </Region> <Region> - <sales_city>La Jolla</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Diego</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>133</sales_district_id> + <salesCity>La Jolla</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Diego</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>133</salesDistrictId> </Region> <Region> - <sales_city>Fremont</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Francisco</sales_district> - <sales_region>Central West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>123</sales_district_id> + <salesCity>Fremont</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Francisco</salesDistrict> + <salesRegion>Central West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>123</salesDistrictId> </Region> <Region> - <sales_city>Richmond</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Francisco</sales_district> - <sales_region>Central West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>123</sales_district_id> + <salesCity>Richmond</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Francisco</salesDistrict> + <salesRegion>Central West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>123</salesDistrictId> </Region> <Region> - <sales_city>Berkeley</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Francisco</sales_district> - <sales_region>Central West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>123</sales_district_id> + <salesCity>Berkeley</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Francisco</salesDistrict> + <salesRegion>Central West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>123</salesDistrictId> </Region> <Region> - <sales_city>Oakland</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Francisco</sales_district> - <sales_region>Central West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>123</sales_district_id> + <salesCity>Oakland</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Francisco</salesDistrict> + <salesRegion>Central West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>123</salesDistrictId> </Region> <Region> - <sales_city>Mill Valley</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Francisco</sales_district> - <sales_region>Central West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>123</sales_district_id> + <salesCity>Mill Valley</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Francisco</salesDistrict> + <salesRegion>Central West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>123</salesDistrictId> </Region> <Region> - <sales_city>San Jose</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Francisco</sales_district> - <sales_region>Central West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>123</sales_district_id> + <salesCity>San Jose</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Francisco</salesDistrict> + <salesRegion>Central West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>123</salesDistrictId> </Region> <Region> - <sales_city>Santa Cruz</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Francisco</sales_district> - <sales_region>Central West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>123</sales_district_id> + <salesCity>Santa Cruz</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Francisco</salesDistrict> + <salesRegion>Central West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>123</salesDistrictId> </Region> <Region> - <sales_city>Palo Alto</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Francisco</sales_district> - <sales_region>Central West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>123</sales_district_id> + <salesCity>Palo Alto</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Francisco</salesDistrict> + <salesRegion>Central West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>123</salesDistrictId> </Region> <Region> - <sales_city>Novato</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Francisco</sales_district> - <sales_region>Central West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>123</sales_district_id> + <salesCity>Novato</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Francisco</salesDistrict> + <salesRegion>Central West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>123</salesDistrictId> </Region> <Region> - <sales_city>Burlingame</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Francisco</sales_district> - <sales_region>Central West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>123</sales_district_id> + <salesCity>Burlingame</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Francisco</salesDistrict> + <salesRegion>Central West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>123</salesDistrictId> </Region> <Region> - <sales_city>San Carlos</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Francisco</sales_district> - <sales_region>Central West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>123</sales_district_id> + <salesCity>San Carlos</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Francisco</salesDistrict> + <salesRegion>Central West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>123</salesDistrictId> </Region> <Region> - <sales_city>Redwood City</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Francisco</sales_district> - <sales_region>Central West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>123</sales_district_id> + <salesCity>Redwood City</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Francisco</salesDistrict> + <salesRegion>Central West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>123</salesDistrictId> </Region> <Region> - <sales_city>Concord</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>San Francisco</sales_district> - <sales_region>Central West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>123</sales_district_id> + <salesCity>Concord</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>San Francisco</salesDistrict> + <salesRegion>Central West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>123</salesDistrictId> </Region> <Region> - <sales_city>Beverly Hills</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>Los Angeles</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>116</sales_district_id> + <salesCity>Beverly Hills</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>Los Angeles</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>116</salesDistrictId> <Store> - <store_type>Gourmet Supermarket</store_type> - <store_name>Store 6</store_name> - <store_number>6</store_number> - <store_street_address>5495 Mitchell Canyon Road</store_street_address> - <store_city>Beverly Hills</store_city> - <store_state>CA</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>USA</store_country> - <store_manager>Maris</store_manager> - <store_phone>958-555-5002</store_phone> - <store_fax>958-555-5001</store_fax> - <first_opened_date>03.01.1981</first_opened_date> - <last_remodel_date>13.03.1991</last_remodel_date> - <store_sqft>23688</store_sqft> - <grocery_sqft>15337</grocery_sqft> - <frozen_sqft>5011</frozen_sqft> - <meat_sqft>3340</meat_sqft> - <coffee_bar>true</coffee_bar> - <video_store>true</video_store> - <salad_bar>true</salad_bar> - <prepared_food>true</prepared_food> + <storeType>Gourmet Supermarket</storeType> + <storeName>Store 6</storeName> + <storeNumber>6</storeNumber> + <storeStreetAddress>5495 Mitchell Canyon Road</storeStreetAddress> + <storeCity>Beverly Hills</storeCity> + <storeState>CA</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>USA</storeCountry> + <storeManager>Maris</storeManager> + <storePhone>958-555-5002</storePhone> + <storeFax>958-555-5001</storeFax> + <firstOpenedDate>03.01.1981</firstOpenedDate> + <lastRemodelDate>13.03.1991</lastRemodelDate> + <storeSqft>23688</storeSqft> + <grocerySqft>15337</grocerySqft> + <frozenSqft>5011</frozenSqft> + <meatSqft>3340</meatSqft> + <coffeeBar>true</coffeeBar> + <videoStore>true</videoStore> + <saladBar>true</saladBar> + <preparedFood>true</preparedFood> <florist>true</florist> <Warehouse> - <warehouse_name>Big Quality Warehouse</warehouse_name> - <wa_address1>3521 Fourth Stret</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Beverly Hills</warehouse_city> - <warehouse_state_province>CA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>892-555-3590</warehouse_phone> - <warehouse_fax>388-555-7926</warehouse_fax> + <warehouseName>Big Quality Warehouse</warehouseName> + <waAddress1>3521 Fourth Stret</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Beverly Hills</warehouseCity> + <warehouseStateProvince>CA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>892-555-3590</warehousePhone> + <warehouseFax>388-555-7926</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>Long Beach</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>Los Angeles</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>116</sales_district_id> + <salesCity>Long Beach</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>Los Angeles</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>116</salesDistrictId> </Region> <Region> - <sales_city>Santa Monica</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>Los Angeles</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>116</sales_district_id> + <salesCity>Santa Monica</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>Los Angeles</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>116</salesDistrictId> </Region> <Region> - <sales_city>Altadena</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>Los Angeles</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>116</sales_district_id> + <salesCity>Altadena</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>Los Angeles</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>116</salesDistrictId> </Region> <Region> - <sales_city>Arcadia</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>Los Angeles</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>116</sales_district_id> + <salesCity>Arcadia</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>Los Angeles</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>116</salesDistrictId> </Region> <Region> - <sales_city>San Gabriel</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>Los Angeles</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>116</sales_district_id> + <salesCity>San Gabriel</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>Los Angeles</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>116</salesDistrictId> </Region> <Region> - <sales_city>Burbank</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>Los Angeles</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>116</sales_district_id> + <salesCity>Burbank</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>Los Angeles</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>116</salesDistrictId> </Region> <Region> - <sales_city>Glendale</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>Los Angeles</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>116</sales_district_id> + <salesCity>Glendale</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>Los Angeles</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>116</salesDistrictId> </Region> <Region> - <sales_city>Bellflower</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>Los Angeles</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>116</sales_district_id> + <salesCity>Bellflower</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>Los Angeles</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>116</salesDistrictId> </Region> <Region> - <sales_city>Lakewood</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>Los Angeles</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>116</sales_district_id> + <salesCity>Lakewood</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>Los Angeles</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>116</salesDistrictId> </Region> <Region> - <sales_city>Torrance</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>Los Angeles</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>116</sales_district_id> + <salesCity>Torrance</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>Los Angeles</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>116</salesDistrictId> </Region> <Region> - <sales_city>Downey</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>Los Angeles</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>116</sales_district_id> + <salesCity>Downey</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>Los Angeles</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>116</salesDistrictId> </Region> <Region> - <sales_city>Newport Beach</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>Los Angeles</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>116</sales_district_id> + <salesCity>Newport Beach</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>Los Angeles</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>116</salesDistrictId> </Region> <Region> - <sales_city>West Covina</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>Los Angeles</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>116</sales_district_id> + <salesCity>West Covina</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>Los Angeles</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>116</salesDistrictId> </Region> <Region> - <sales_city>Pomona</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>Los Angeles</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>116</sales_district_id> + <salesCity>Pomona</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>Los Angeles</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>116</salesDistrictId> </Region> <Region> - <sales_city>Woodland Hills</sales_city> - <sales_state_province>CA</sales_state_province> - <sales_district>Los Angeles</sales_district> - <sales_region>South West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>116</sales_district_id> + <salesCity>Woodland Hills</salesCity> + <salesStateProvince>CA</salesStateProvince> + <salesDistrict>Los Angeles</salesDistrict> + <salesRegion>South West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>116</salesDistrictId> </Region> <Region> - <sales_city>Kirkland</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Seattle</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>124</sales_district_id> + <salesCity>Kirkland</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Seattle</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>124</salesDistrictId> </Region> <Region> - <sales_city>Lake Oswego</sales_city> - <sales_state_province>OR</sales_state_province> - <sales_district>Portland</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>120</sales_district_id> + <salesCity>Lake Oswego</salesCity> + <salesStateProvince>OR</salesStateProvince> + <salesDistrict>Portland</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>120</salesDistrictId> </Region> <Region> - <sales_city>Milwaukie</sales_city> - <sales_state_province>OR</sales_state_province> - <sales_district>Portland</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>120</sales_district_id> + <salesCity>Milwaukie</salesCity> + <salesStateProvince>OR</salesStateProvince> + <salesDistrict>Portland</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>120</salesDistrictId> </Region> <Region> - <sales_city>W. Linn</sales_city> - <sales_state_province>OR</sales_state_province> - <sales_district>Portland</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>120</sales_district_id> + <salesCity>W. Linn</salesCity> + <salesStateProvince>OR</salesStateProvince> + <salesDistrict>Portland</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>120</salesDistrictId> </Region> <Region> - <sales_city>Beaverton</sales_city> - <sales_state_province>OR</sales_state_province> - <sales_district>Portland</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>120</sales_district_id> + <salesCity>Beaverton</salesCity> + <salesStateProvince>OR</salesStateProvince> + <salesDistrict>Portland</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>120</salesDistrictId> </Region> <Region> - <sales_city>Oregon City</sales_city> - <sales_state_province>OR</sales_state_province> - <sales_district>Portland</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>120</sales_district_id> + <salesCity>Oregon City</salesCity> + <salesStateProvince>OR</salesStateProvince> + <salesDistrict>Portland</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>120</salesDistrictId> </Region> <Region> - <sales_city>Woodburn</sales_city> - <sales_state_province>OR</sales_state_province> - <sales_district>Salem</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>122</sales_district_id> + <salesCity>Woodburn</salesCity> + <salesStateProvince>OR</salesStateProvince> + <salesDistrict>Salem</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>122</salesDistrictId> </Region> <Region> - <sales_city>Corvallis</sales_city> - <sales_state_province>OR</sales_state_province> - <sales_district>Salem</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>122</sales_district_id> + <salesCity>Corvallis</salesCity> + <salesStateProvince>OR</salesStateProvince> + <salesDistrict>Salem</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>122</salesDistrictId> </Region> <Region> - <sales_city>Albany</sales_city> - <sales_state_province>OR</sales_state_province> - <sales_district>Salem</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>122</sales_district_id> + <salesCity>Albany</salesCity> + <salesStateProvince>OR</salesStateProvince> + <salesDistrict>Salem</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>122</salesDistrictId> </Region> <Region> - <sales_city>Lebanon</sales_city> - <sales_state_province>OR</sales_state_province> - <sales_district>Salem</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>122</sales_district_id> + <salesCity>Lebanon</salesCity> + <salesStateProvince>OR</salesStateProvince> + <salesDistrict>Salem</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>122</salesDistrictId> </Region> <Region> - <sales_city>Renton</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Seattle</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>124</sales_district_id> + <salesCity>Renton</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Seattle</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>124</salesDistrictId> </Region> <Region> - <sales_city>Burien</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Seattle</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>124</sales_district_id> + <salesCity>Burien</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Seattle</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>124</salesDistrictId> </Region> <Region> - <sales_city>Lynnwood</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Seattle</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>124</sales_district_id> + <salesCity>Lynnwood</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Seattle</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>124</salesDistrictId> </Region> <Region> - <sales_city>Bremerton</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Bremerton</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>112</sales_district_id> + <salesCity>Bremerton</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Bremerton</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>112</salesDistrictId> <Store> - <store_type>Supermarket</store_type> - <store_name>Store 3</store_name> - <store_number>3</store_number> - <store_street_address>1501 Ramsey Circle</store_street_address> - <store_city>Bremerton</store_city> - <store_state>WA</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>USA</store_country> - <store_manager>Davis</store_manager> - <store_phone>509-555-1596</store_phone> - <store_fax>509-555-1591</store_fax> - <first_opened_date>14.06.1959</first_opened_date> - <last_remodel_date>19.11.1967</last_remodel_date> - <store_sqft>39696</store_sqft> - <grocery_sqft>24390</grocery_sqft> - <frozen_sqft>9184</frozen_sqft> - <meat_sqft>6122</meat_sqft> - <coffee_bar>false</coffee_bar> - <video_store>false</video_store> - <salad_bar>true</salad_bar> - <prepared_food>true</prepared_food> + <storeType>Supermarket</storeType> + <storeName>Store 3</storeName> + <storeNumber>3</storeNumber> + <storeStreetAddress>1501 Ramsey Circle</storeStreetAddress> + <storeCity>Bremerton</storeCity> + <storeState>WA</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>USA</storeCountry> + <storeManager>Davis</storeManager> + <storePhone>509-555-1596</storePhone> + <storeFax>509-555-1591</storeFax> + <firstOpenedDate>14.06.1959</firstOpenedDate> + <lastRemodelDate>19.11.1967</lastRemodelDate> + <storeSqft>39696</storeSqft> + <grocerySqft>24390</grocerySqft> + <frozenSqft>9184</frozenSqft> + <meatSqft>6122</meatSqft> + <coffeeBar>false</coffeeBar> + <videoStore>false</videoStore> + <saladBar>true</saladBar> + <preparedFood>true</preparedFood> <florist>false</florist> <Warehouse> - <warehouse_name>Destination, Inc.</warehouse_name> - <wa_address1>4162 Euclid Ave</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Bremerton</warehouse_city> - <warehouse_state_province>WA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>517-555-3022</warehouse_phone> - <warehouse_fax>136-555-4501</warehouse_fax> + <warehouseName>Destination, Inc.</warehouseName> + <waAddress1>4162 Euclid Ave</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Bremerton</warehouseCity> + <warehouseStateProvince>WA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>517-555-3022</warehousePhone> + <warehouseFax>136-555-4501</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>Port Orchard</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Bremerton</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>112</sales_district_id> + <salesCity>Port Orchard</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Bremerton</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>112</salesDistrictId> </Region> <Region> - <sales_city>Bellingham</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Bellingham</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>111</sales_district_id> + <salesCity>Bellingham</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Bellingham</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>111</salesDistrictId> <Store> - <store_type>Small Grocery</store_type> - <store_name>Store 2</store_name> - <store_number>2</store_number> - <store_street_address>5203 Catanzaro Way</store_street_address> - <store_city>Bellingham</store_city> - <store_state>WA</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>USA</store_country> - <store_manager>Smith</store_manager> - <store_phone>605-555-8203</store_phone> - <store_fax>605-555-8201</store_fax> - <first_opened_date>02.04.1970</first_opened_date> - <last_remodel_date>04.06.1973</last_remodel_date> - <store_sqft>28206</store_sqft> - <grocery_sqft>22271</grocery_sqft> - <frozen_sqft>3561</frozen_sqft> - <meat_sqft>2374</meat_sqft> - <coffee_bar>true</coffee_bar> - <video_store>false</video_store> - <salad_bar>false</salad_bar> - <prepared_food>false</prepared_food> + <storeType>Small Grocery</storeType> + <storeName>Store 2</storeName> + <storeNumber>2</storeNumber> + <storeStreetAddress>5203 Catanzaro Way</storeStreetAddress> + <storeCity>Bellingham</storeCity> + <storeState>WA</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>USA</storeCountry> + <storeManager>Smith</storeManager> + <storePhone>605-555-8203</storePhone> + <storeFax>605-555-8201</storeFax> + <firstOpenedDate>02.04.1970</firstOpenedDate> + <lastRemodelDate>04.06.1973</lastRemodelDate> + <storeSqft>28206</storeSqft> + <grocerySqft>22271</grocerySqft> + <frozenSqft>3561</frozenSqft> + <meatSqft>2374</meatSqft> + <coffeeBar>true</coffeeBar> + <videoStore>false</videoStore> + <saladBar>false</saladBar> + <preparedFood>false</preparedFood> <florist>false</florist> <Warehouse> - <warehouse_name>Foster Products</warehouse_name> - <wa_address1>958 Hilltop Dr</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Bellingham</warehouse_city> - <warehouse_state_province>WA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>315-555-8947</warehouse_phone> - <warehouse_fax>119-555-3826</warehouse_fax> + <warehouseName>Foster Products</warehouseName> + <waAddress1>958 Hilltop Dr</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Bellingham</warehouseCity> + <warehouseStateProvince>WA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>315-555-8947</warehousePhone> + <warehouseFax>119-555-3826</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>Anacortes</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Bellingham</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>111</sales_district_id> + <salesCity>Anacortes</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Bellingham</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>111</salesDistrictId> </Region> <Region> - <sales_city>Sedro Woolley</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Bellingham</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>111</sales_district_id> + <salesCity>Sedro Woolley</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Bellingham</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>111</salesDistrictId> </Region> <Region> - <sales_city>Everett</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Seattle</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>124</sales_district_id> + <salesCity>Everett</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Seattle</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>124</salesDistrictId> </Region> <Region> - <sales_city>Marysville</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Seattle</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>124</sales_district_id> + <salesCity>Marysville</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Seattle</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>124</salesDistrictId> </Region> <Region> - <sales_city>Edmonds</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Seattle</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>124</sales_district_id> + <salesCity>Edmonds</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Seattle</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>124</salesDistrictId> </Region> <Region> - <sales_city>Tacoma</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Tacoma</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>126</sales_district_id> + <salesCity>Tacoma</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Tacoma</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>126</salesDistrictId> <Store> - <store_type>Deluxe Supermarket</store_type> - <store_name>Store 17</store_name> - <store_number>17</store_number> - <store_street_address>490 Risdon Road</store_street_address> - <store_city>Tacoma</store_city> - <store_state>WA</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>USA</store_country> - <store_manager>Mays</store_manager> - <store_phone>855-555-5581</store_phone> - <store_fax>855-555-5581</store_fax> - <first_opened_date>30.05.1970</first_opened_date> - <last_remodel_date>23.06.1976</last_remodel_date> - <store_sqft>33858</store_sqft> - <grocery_sqft>22123</grocery_sqft> - <frozen_sqft>7041</frozen_sqft> - <meat_sqft>4694</meat_sqft> - <coffee_bar>true</coffee_bar> - <video_store>false</video_store> - <salad_bar>true</salad_bar> - <prepared_food>true</prepared_food> + <storeType>Deluxe Supermarket</storeType> + <storeName>Store 17</storeName> + <storeNumber>17</storeNumber> + <storeStreetAddress>490 Risdon Road</storeStreetAddress> + <storeCity>Tacoma</storeCity> + <storeState>WA</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>USA</storeCountry> + <storeManager>Mays</storeManager> + <storePhone>855-555-5581</storePhone> + <storeFax>855-555-5581</storeFax> + <firstOpenedDate>30.05.1970</firstOpenedDate> + <lastRemodelDate>23.06.1976</lastRemodelDate> + <storeSqft>33858</storeSqft> + <grocerySqft>22123</grocerySqft> + <frozenSqft>7041</frozenSqft> + <meatSqft>4694</meatSqft> + <coffeeBar>true</coffeeBar> + <videoStore>false</videoStore> + <saladBar>true</saladBar> + <preparedFood>true</preparedFood> <florist>true</florist> <Warehouse> - <warehouse_name>Jorge Garcia, Inc.</warehouse_name> - <wa_address1>4364 Viera Avenue</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Tacoma</warehouse_city> - <warehouse_state_province>WA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>200-555-1310</warehouse_phone> - <warehouse_fax>442-555-5874</warehouse_fax> + <warehouseName>Jorge Garcia, Inc.</warehouseName> + <waAddress1>4364 Viera Avenue</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Tacoma</warehouseCity> + <warehouseStateProvince>WA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>200-555-1310</warehousePhone> + <warehouseFax>442-555-5874</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>Olympia</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Tacoma</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>126</sales_district_id> + <salesCity>Olympia</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Tacoma</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>126</salesDistrictId> </Region> <Region> - <sales_city>Puyallup</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Tacoma</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>126</sales_district_id> + <salesCity>Puyallup</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Tacoma</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>126</salesDistrictId> </Region> <Region> - <sales_city>Spokane</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Spokane</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>125</sales_district_id> + <salesCity>Spokane</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Spokane</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>125</salesDistrictId> <Store> - <store_type>Supermarket</store_type> - <store_name>Store 16</store_name> - <store_number>16</store_number> - <store_street_address>5922 La Salle Ct</store_street_address> - <store_city>Spokane</store_city> - <store_state>WA</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>USA</store_country> - <store_manager>Mantle</store_manager> - <store_phone>643-555-3645</store_phone> - <store_fax>643-555-3641</store_fax> - <first_opened_date>23.08.1974</first_opened_date> - <last_remodel_date>13.07.1977</last_remodel_date> - <store_sqft>30268</store_sqft> - <grocery_sqft>22063</grocery_sqft> - <frozen_sqft>4923</frozen_sqft> - <meat_sqft>3282</meat_sqft> - <coffee_bar>false</coffee_bar> - <video_store>false</video_store> - <salad_bar>false</salad_bar> - <prepared_food>false</prepared_food> + <storeType>Supermarket</storeType> + <storeName>Store 16</storeName> + <storeNumber>16</storeNumber> + <storeStreetAddress>5922 La Salle Ct</storeStreetAddress> + <storeCity>Spokane</storeCity> + <storeState>WA</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>USA</storeCountry> + <storeManager>Mantle</storeManager> + <storePhone>643-555-3645</storePhone> + <storeFax>643-555-3641</storeFax> + <firstOpenedDate>23.08.1974</firstOpenedDate> + <lastRemodelDate>13.07.1977</lastRemodelDate> + <storeSqft>30268</storeSqft> + <grocerySqft>22063</grocerySqft> + <frozenSqft>4923</frozenSqft> + <meatSqft>3282</meatSqft> + <coffeeBar>false</coffeeBar> + <videoStore>false</videoStore> + <saladBar>false</saladBar> + <preparedFood>false</preparedFood> <florist>false</florist> <Warehouse> - <warehouse_name>Jones International</warehouse_name> - <wa_address1>3377 Coachman Place</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Spokane</warehouse_city> - <warehouse_state_province>WA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>144-555-5192</warehouse_phone> - <warehouse_fax>971-555-6213</warehouse_fax> + <warehouseName>Jones International</warehouseName> + <waAddress1>3377 Coachman Place</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Spokane</warehouseCity> + <warehouseStateProvince>WA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>144-555-5192</warehousePhone> + <warehouseFax>971-555-6213</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>Walla Walla</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Walla Walla</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>131</sales_district_id> + <salesCity>Walla Walla</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Walla Walla</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>131</salesDistrictId> <Store> - <store_type>Small Grocery</store_type> - <store_name>Store 22</store_name> - <store_number>22</store_number> - <store_street_address>9606 Julpum Loop</store_street_address> - <store_city>Walla Walla</store_city> - <store_state>WA</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>USA</store_country> - <store_manager>Byrg</store_manager> - <store_phone>881-555-5117</store_phone> - <store_fax>881-555-5111</store_fax> - <first_opened_date>24.01.1951</first_opened_date> - <last_remodel_date>17.10.1969</last_remodel_date> - <store_sqft>0</store_sqft> - <grocery_sqft>0</grocery_sqft> - <frozen_sqft>0</frozen_sqft> - <meat_sqft>0</meat_sqft> - <coffee_bar>false</coffee_bar> - <video_store>false</video_store> - <salad_bar>false</salad_bar> - <prepared_food>false</prepared_food> + <storeType>Small Grocery</storeType> + <storeName>Store 22</storeName> + <storeNumber>22</storeNumber> + <storeStreetAddress>9606 Julpum Loop</storeStreetAddress> + <storeCity>Walla Walla</storeCity> + <storeState>WA</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>USA</storeCountry> + <storeManager>Byrg</storeManager> + <storePhone>881-555-5117</storePhone> + <storeFax>881-555-5111</storeFax> + <firstOpenedDate>24.01.1951</firstOpenedDate> + <lastRemodelDate>17.10.1969</lastRemodelDate> + <storeSqft>0</storeSqft> + <grocerySqft>0</grocerySqft> + <frozenSqft>0</frozenSqft> + <meatSqft>0</meatSqft> + <coffeeBar>false</coffeeBar> + <videoStore>false</videoStore> + <saladBar>false</saladBar> + <preparedFood>false</preparedFood> <florist>false</florist> <Warehouse> - <warehouse_name>Valdez Warehousing</warehouse_name> - <wa_address1>6714 Roundtree Court</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Walla Walla</warehouse_city> - <warehouse_state_province>WA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>301-555-8174</warehouse_phone> - <warehouse_fax>666-555-9881</warehouse_fax> + <warehouseName>Valdez Warehousing</warehouseName> + <waAddress1>6714 Roundtree Court</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Walla Walla</warehouseCity> + <warehouseStateProvince>WA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>301-555-8174</warehousePhone> + <warehouseFax>666-555-9881</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>Yakima</sales_city> - <sales_state_province>WA</sales_state_province> - <sales_district>Yakima</sales_district> - <sales_region>North West</sales_region> - <sales_country>USA</sales_country> - <sales_district_id>132</sales_district_id> + <salesCity>Yakima</salesCity> + <salesStateProvince>WA</salesStateProvince> + <salesDistrict>Yakima</salesDistrict> + <salesRegion>North West</salesRegion> + <salesCountry>USA</salesCountry> + <salesDistrictId>132</salesDistrictId> <Store> - <store_type>Mid-Size Grocery</store_type> - <store_name>Store 23</store_name> - <store_number>23</store_number> - <store_street_address>3920 Noah Court</store_street_address> - <store_city>Yakima</store_city> - <store_state>WA</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>USA</store_country> - <store_manager>Johnson</store_manager> - <store_phone>170-555-8424</store_phone> - <store_fax>170-555-8421</store_fax> - <first_opened_date>16.07.1977</first_opened_date> - <last_remodel_date>24.07.1987</last_remodel_date> - <store_sqft>0</store_sqft> - <grocery_sqft>0</grocery_sqft> - <frozen_sqft>0</frozen_sqft> - <meat_sqft>0</meat_sqft> - <coffee_bar>false</coffee_bar> - <video_store>false</video_store> - <salad_bar>false</salad_bar> - <prepared_food>false</prepared_food> + <storeType>Mid-Size Grocery</storeType> + <storeName>Store 23</storeName> + <storeNumber>23</storeNumber> + <storeStreetAddress>3920 Noah Court</storeStreetAddress> + <storeCity>Yakima</storeCity> + <storeState>WA</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>USA</storeCountry> + <storeManager>Johnson</storeManager> + <storePhone>170-555-8424</storePhone> + <storeFax>170-555-8421</storeFax> + <firstOpenedDate>16.07.1977</firstOpenedDate> + <lastRemodelDate>24.07.1987</lastRemodelDate> + <storeSqft>0</storeSqft> + <grocerySqft>0</grocerySqft> + <frozenSqft>0</frozenSqft> + <meatSqft>0</meatSqft> + <coffeeBar>false</coffeeBar> + <videoStore>false</videoStore> + <saladBar>false</saladBar> + <preparedFood>false</preparedFood> <florist>false</florist> <Warehouse> - <warehouse_name>Maddock Stored Foods</warehouse_name> - <wa_address1>8463 Kim Court</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Yakima</warehouse_city> - <warehouse_state_province>WA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>803-555-8978</warehouse_phone> - <warehouse_fax>630-555-2485</warehouse_fax> + <warehouseName>Maddock Stored Foods</warehouseName> + <waAddress1>8463 Kim Court</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Yakima</warehouseCity> + <warehouseStateProvince>WA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>803-555-8978</warehousePhone> + <warehouseFax>630-555-2485</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>Richmond</sales_city> - <sales_state_province>BC</sales_state_province> - <sales_district>Vancouver</sales_district> - <sales_region>Canada West</sales_region> - <sales_country>Canada</sales_country> - <sales_district_id>128</sales_district_id> + <salesCity>Richmond</salesCity> + <salesStateProvince>BC</salesStateProvince> + <salesDistrict>Vancouver</salesDistrict> + <salesRegion>Canada West</salesRegion> + <salesCountry>Canada</salesCountry> + <salesDistrictId>128</salesDistrictId> </Region> <Region> - <sales_city>Westminster</sales_city> - <sales_state_province>BC</sales_state_province> - <sales_district>Vancouver</sales_district> - <sales_region>Canada West</sales_region> - <sales_country>Canada</sales_country> - <sales_district_id>128</sales_district_id> + <salesCity>Westminster</salesCity> + <salesStateProvince>BC</salesStateProvince> + <salesDistrict>Vancouver</salesDistrict> + <salesRegion>Canada West</salesRegion> + <salesCountry>Canada</salesCountry> + <salesDistrictId>128</salesDistrictId> </Region> <Region> - <sales_city>Burnaby</sales_city> - <sales_state_province>BC</sales_state_province> - <sales_district>Vancouver</sales_district> - <sales_region>Canada West</sales_region> - <sales_country>Canada</sales_country> - <sales_district_id>128</sales_district_id> + <salesCity>Burnaby</salesCity> + <salesStateProvince>BC</salesStateProvince> + <salesDistrict>Vancouver</salesDistrict> + <salesRegion>Canada West</salesRegion> + <salesCountry>Canada</salesCountry> + <salesDistrictId>128</salesDistrictId> </Region> <Region> - <sales_city>Haney</sales_city> - <sales_state_province>BC</sales_state_province> - <sales_district>Vancouver</sales_district> - <sales_region>Canada West</sales_region> - <sales_country>Canada</sales_country> - <sales_district_id>128</sales_district_id> + <salesCity>Haney</salesCity> + <salesStateProvince>BC</salesStateProvince> + <salesDistrict>Vancouver</salesDistrict> + <salesRegion>Canada West</salesRegion> + <salesCountry>Canada</salesCountry> + <salesDistrictId>128</salesDistrictId> </Region> <Region> - <sales_city>Langley</sales_city> - <sales_state_province>BC</sales_state_province> - <sales_district>Vancouver</sales_district> - <sales_region>Canada West</sales_region> - <sales_country>Canada</sales_country> - <sales_district_id>128</sales_district_id> + <salesCity>Langley</salesCity> + <salesStateProvince>BC</salesStateProvince> + <salesDistrict>Vancouver</salesDistrict> + <salesRegion>Canada West</salesRegion> + <salesCountry>Canada</salesCountry> + <salesDistrictId>128</salesDistrictId> </Region> <Region> - <sales_city>Newton</sales_city> - <sales_state_province>BC</sales_state_province> - <sales_district>Vancouver</sales_district> - <sales_region>Canada West</sales_region> - <sales_country>Canada</sales_country> - <sales_district_id>128</sales_district_id> + <salesCity>Newton</salesCity> + <salesStateProvince>BC</salesStateProvince> + <salesDistrict>Vancouver</salesDistrict> + <salesRegion>Canada West</salesRegion> + <salesCountry>Canada</salesCountry> + <salesDistrictId>128</salesDistrictId> </Region> <Region> - <sales_city>Ladner</sales_city> - <sales_state_province>BC</sales_state_province> - <sales_district>Vancouver</sales_district> - <sales_region>Canada West</sales_region> - <sales_country>Canada</sales_country> - <sales_district_id>128</sales_district_id> + <salesCity>Ladner</salesCity> + <salesStateProvince>BC</salesStateProvince> + <salesDistrict>Vancouver</salesDistrict> + <salesRegion>Canada West</salesRegion> + <salesCountry>Canada</salesCountry> + <salesDistrictId>128</salesDistrictId> </Region> <Region> - <sales_city>N. Vancouver</sales_city> - <sales_state_province>BC</sales_state_province> - <sales_district>Vancouver</sales_district> - <sales_region>Canada West</sales_region> - <sales_country>Canada</sales_country> - <sales_district_id>128</sales_district_id> + <salesCity>N. Vancouver</salesCity> + <salesStateProvince>BC</salesStateProvince> + <salesDistrict>Vancouver</salesDistrict> + <salesRegion>Canada West</salesRegion> + <salesCountry>Canada</salesCountry> + <salesDistrictId>128</salesDistrictId> </Region> <Region> - <sales_city>Port Hammond</sales_city> - <sales_state_province>BC</sales_state_province> - <sales_district>Vancouver</sales_district> - <sales_region>Canada West</sales_region> - <sales_country>Canada</sales_country> - <sales_district_id>128</sales_district_id> + <salesCity>Port Hammond</salesCity> + <salesStateProvince>BC</salesStateProvince> + <salesDistrict>Vancouver</salesDistrict> + <salesRegion>Canada West</salesRegion> + <salesCountry>Canada</salesCountry> + <salesDistrictId>128</salesDistrictId> </Region> <Region> - <sales_city>Oak Bay</sales_city> - <sales_state_province>BC</sales_state_province> - <sales_district>Victoria</sales_district> - <sales_region>Canada West</sales_region> - <sales_country>Canada</sales_country> - <sales_district_id>129</sales_district_id> + <salesCity>Oak Bay</salesCity> + <salesStateProvince>BC</salesStateProvince> + <salesDistrict>Victoria</salesDistrict> + <salesRegion>Canada West</salesRegion> + <salesCountry>Canada</salesCountry> + <salesDistrictId>129</salesDistrictId> </Region> <Region> - <sales_city>Royal Oak</sales_city> - <sales_state_province>BC</sales_state_province> - <sales_district>Victoria</sales_district> - <sales_region>Canada West</sales_region> - <sales_country>Canada</sales_country> - <sales_district_id>129</sales_district_id> + <salesCity>Royal Oak</salesCity> + <salesStateProvince>BC</salesStateProvince> + <salesDistrict>Victoria</salesDistrict> + <salesRegion>Canada West</salesRegion> + <salesCountry>Canada</salesCountry> + <salesDistrictId>129</salesDistrictId> </Region> <Region> - <sales_city>Sooke</sales_city> - <sales_state_province>BC</sales_state_province> - <sales_district>Victoria</sales_district> - <sales_region>Canada West</sales_region> - <sales_country>Canada</sales_country> - <sales_district_id>129</sales_district_id> + <salesCity>Sooke</salesCity> + <salesStateProvince>BC</salesStateProvince> + <salesDistrict>Victoria</salesDistrict> + <salesRegion>Canada West</salesRegion> + <salesCountry>Canada</salesCountry> + <salesDistrictId>129</salesDistrictId> </Region> <Region> - <sales_city>Langford</sales_city> - <sales_state_province>BC</sales_state_province> - <sales_district>Victoria</sales_district> - <sales_region>Canada West</sales_region> - <sales_country>Canada</sales_country> - <sales_district_id>129</sales_district_id> + <salesCity>Langford</salesCity> + <salesStateProvince>BC</salesStateProvince> + <salesDistrict>Victoria</salesDistrict> + <salesRegion>Canada West</salesRegion> + <salesCountry>Canada</salesCountry> + <salesDistrictId>129</salesDistrictId> </Region> <Region> - <sales_city>Cliffside</sales_city> - <sales_state_province>BC</sales_state_province> - <sales_district>Victoria</sales_district> - <sales_region>Canada West</sales_region> - <sales_country>Canada</sales_country> - <sales_district_id>129</sales_district_id> + <salesCity>Cliffside</salesCity> + <salesStateProvince>BC</salesStateProvince> + <salesDistrict>Victoria</salesDistrict> + <salesRegion>Canada West</salesRegion> + <salesCountry>Canada</salesCountry> + <salesDistrictId>129</salesDistrictId> </Region> <Region> - <sales_city>Metchosin</sales_city> - <sales_state_province>BC</sales_state_province> - <sales_district>Victoria</sales_district> - <sales_region>Canada West</sales_region> - <sales_country>Canada</sales_country> - <sales_district_id>129</sales_district_id> + <salesCity>Metchosin</salesCity> + <salesStateProvince>BC</salesStateProvince> + <salesDistrict>Victoria</salesDistrict> + <salesRegion>Canada West</salesRegion> + <salesCountry>Canada</salesCountry> + <salesDistrictId>129</salesDistrictId> </Region> <Region> - <sales_city>Shawnee</sales_city> - <sales_state_province>BC</sales_state_province> - <sales_district>Victoria</sales_district> - <sales_region>Canada West</sales_region> - <sales_country>Canada</sales_country> - <sales_district_id>129</sales_district_id> + <salesCity>Shawnee</salesCity> + <salesStateProvince>BC</salesStateProvince> + <salesDistrict>Victoria</salesDistrict> + <salesRegion>Canada West</salesRegion> + <salesCountry>Canada</salesCountry> + <salesDistrictId>129</salesDistrictId> </Region> <Region> - <sales_city>San Andres</sales_city> - <sales_state_province>DF</sales_state_province> - <sales_district>Mexico City</sales_district> - <sales_region>Mexico Central</sales_region> - <sales_country>Mexico</sales_country> - <sales_district_id>118</sales_district_id> + <salesCity>San Andres</salesCity> + <salesStateProvince>DF</salesStateProvince> + <salesDistrict>Mexico City</salesDistrict> + <salesRegion>Mexico Central</salesRegion> + <salesCountry>Mexico</salesCountry> + <salesDistrictId>118</salesDistrictId> <Store> - <store_type>Deluxe Supermarket</store_type> - <store_name>Store 21</store_name> - <store_number>21</store_number> - <store_street_address>4093 Steven Circle</store_street_address> - <store_city>San Andres</store_city> - <store_state>DF</store_state> - <store_postal_code>55555</store_postal_code> - <store_country>Mexico</store_country> - <store_manager>Jones</store_manager> - <store_phone>493-555-4781</store_phone> - <store_fax>493-555-4781</store_fax> - <first_opened_date>07.02.1986</first_opened_date> - <last_remodel_date>16.04.1990</last_remodel_date> - <store_sqft>0</store_sqft> - <grocery_sqft>0</grocery_sqft> - <frozen_sqft>0</frozen_sqft> - <meat_sqft>0</meat_sqft> - <coffee_bar>true</coffee_bar> - <video_store>false</video_store> - <salad_bar>true</salad_bar> - <prepared_food>true</prepared_food> + <storeType>Deluxe Supermarket</storeType> + <storeName>Store 21</storeName> + <storeNumber>21</storeNumber> + <storeStreetAddress>4093 Steven Circle</storeStreetAddress> + <storeCity>San Andres</storeCity> + <storeState>DF</storeState> + <storePostalCode>55555</storePostalCode> + <storeCountry>Mexico</storeCountry> + <storeManager>Jones</storeManager> + <storePhone>493-555-4781</storePhone> + <storeFax>493-555-4781</storeFax> + <firstOpenedDate>07.02.1986</firstOpenedDate> + <lastRemodelDate>16.04.1990</lastRemodelDate> + <storeSqft>0</storeSqft> + <grocerySqft>0</grocerySqft> + <frozenSqft>0</frozenSqft> + <meatSqft>0</meatSqft> + <coffeeBar>true</coffeeBar> + <videoStore>false</videoStore> + <saladBar>true</saladBar> + <preparedFood>true</preparedFood> <florist>true</florist> <Warehouse> - <warehouse_name>Derby and Hunt</warehouse_name> - <wa_address1>600 Lake Nadine Place</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>San Andres</warehouse_city> - <warehouse_state_province>DF</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Mexico</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>922-555-5214</warehouse_phone> - <warehouse_fax>618-555-6578</warehouse_fax> + <warehouseName>Derby and Hunt</warehouseName> + <waAddress1>600 Lake Nadine Place</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>San Andres</warehouseCity> + <warehouseStateProvince>DF</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Mexico</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>922-555-5214</warehousePhone> + <warehouseFax>618-555-6578</warehouseFax> </Warehouse> </Store> </Region> <Region> - <sales_city>Tixapan</sales_city> - <sales_state_province>DF</sales_state_province> - <sales_district>Mexico City</sales_district> - <sales_region>Mexico Central</sales_region> - <sales_country>Mexico</sales_country> - <sales_district_id>118</sales_district_id> + <salesCity>Tixapan</salesCity> + <salesStateProvince>DF</salesStateProvince> + <salesDistrict>Mexico City</salesDistrict> + <salesRegion>Mexico Central</salesRegion> + <salesCountry>Mexico</salesCountry> + <salesDistrictId>118</salesDistrictId> </Region> <Region> - <sales_city>Santa Anita</sales_city> - <sales_state_province>DF</sales_state_province> - <sales_district>Mexico City</sales_district> - <sales_region>Mexico Central</sales_region> - <sales_country>Mexico</sales_country> - <sales_district_id>118</sales_district_id> + <salesCity>Santa Anita</salesCity> + <salesStateProvince>DF</salesStateProvince> + <salesDistrict>Mexico City</salesDistrict> + <salesRegion>Mexico Central</salesRegion> + <salesCountry>Mexico</salesCountry> + <salesDistrictId>118</salesDistrictId> </Region> <Region> - <sales_city>Santa Fe</sales_city> - <sales_state_province>DF</sales_state_province> - <sales_district>Mexico City</sales_district> - <sales_region>Mexico Central</sales_region> - <sales_country>Mexico</sales_country> - <sales_district_id>118</sales_district_id> + <salesCity>Santa Fe</salesCity> + <salesStateProvince>DF</salesStateProvince> + <salesDistrict>Mexico City</salesDistrict> + <salesRegion>Mexico Central</salesRegion> + <salesCountry>Mexico</salesCountry> + <salesDistrictId>118</salesDistrictId> </Region> -</vector> \ No newline at end of file +</vector>
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/suppliers.xml b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/suppliers.xml index cdcccd0..a283c29 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/suppliers.xml +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/suppliers.xml
@@ -1,15002 +1,15002 @@ <vector> <Supplier> <company>Company1</company> - <headquarter_city>A Jupiters beDescending</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>A Jupiters beDescending</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-2124843341362608853</gln> <lastOrder>2014-10-16</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>63951</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company2</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-8412866357386477340</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>149581</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company3</company> - <headquarter_city>Moon Helios</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon Helios</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-1077962721092150525</gln> <lastOrder>2014-10-08</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>75543</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company4</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-3071026855594117173</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>135821</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company5</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-3444246327165780719</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>120546</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract>2015-02-20</firstContract> <rating>5</rating> </Supplier> <Supplier> <company>Company7</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>6468938133139477201</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>72414</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract>2015-01-26</firstContract> <rating>3</rating> </Supplier> <Supplier> <company>Company8</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-8599311701869844176</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>123366</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company9</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-9106920235202632666</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>198728</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company10</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>3301650279135673876</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>86435</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company11</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-3177694989379770952</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>156851</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company12</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>8640283114045794156</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>132533</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company13</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>7851218839028454402</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>67133</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company14</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>6324618425368130096</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>121966</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company15</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-4331856302759098254</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>64691</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company16</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>4234256626632882716</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>1476</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company17</company> - <headquarter_city>Moon or Sun</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon or Sun</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>5342070944956933606</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>189211</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company18</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-7563452724288906323</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>19110</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company19</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>4388460055715983531</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>117136</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company20</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>9019683909535394048</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>143759</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company21</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>1437820832094065421</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>195788</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company22</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>6707446355170296858</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>144816</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company23</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-3000589400053983121</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>167903</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company24</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-3030399962412679315</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>184645</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company25</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-4572767528518093155</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>133847</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company26</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-6169615201294750905</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>157270</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract>2016-07-19</firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company27</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>8138414140802465419</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>50471</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company28</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>4448921323792806133</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>151303</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company29</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>923913921744191235</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>6884</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company30</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-192313436210219017</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>154175</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company31</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-3950348651648017666</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>122819</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company32</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8052330410814913514</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>144538</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company33</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>5446073353849651114</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>79328</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company34</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>5297825428923965404</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>116515</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company35</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>2546071104030545591</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>169067</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company36</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-1295864684003839945</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>30931</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company37</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-3120077179149837830</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>10046</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company38</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-2151418307995872514</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>26623</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company39</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>2460589750446761064</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>72753</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company40</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>190045513009673516</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>143043</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company41</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>8338550031873764510</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>10432</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company42</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-4582131419084506049</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>105815</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company43</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-3789424229237781345</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>90968</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company44</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-6324908291059340809</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>30949</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company45</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-3799602907638096025</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>152551</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company46</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-5426775850217290588</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>83290</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company47</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-8020708796610747786</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>132431</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company48</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>1100053105925485316</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>60723</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company49</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-5060445913234947592</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>54946</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company50</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-8607559195998230106</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>135654</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company51</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>5223111276477362596</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>144852</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company52</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>8741132311548033903</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>110873</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company53</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-7177876003668119546</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>194155</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company54</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>9090752097180599429</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>65040</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company55</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-4336814591591179797</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>26092</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company56</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>5697630985839519134</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>110979</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company57</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-8524025208036737329</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>171930</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company58</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>4026890139537266893</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>9731</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company59</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-7857716105790681095</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>40443</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company60</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>2238674553883092496</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>17466</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company61</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>4337084496559860135</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>42837</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company62</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>8640496767628796191</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>31952</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company63</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>2150973345421006016</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>30757</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company64</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-653049448699642269</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>151603</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company65</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-3534682896062999982</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>8491</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company66</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>2095365959971736078</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>43256</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company67</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-8443069656764074146</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>160642</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company68</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>4654735673913276493</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>160967</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company69</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>6942480786795805587</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>19171</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company70</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-2306126171297651404</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>108359</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company71</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-1385101003754843974</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>133414</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company72</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-1760520998342151693</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>189110</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company73</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>7237940492601196868</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>31101</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company74</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-7315564299444799976</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>199037</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company75</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-7155446692941884562</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>46003</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company76</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-3588576946943023909</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>101852</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company77</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-2370141017608891405</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>191816</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company78</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>3968934341399479519</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>193231</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company79</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>3770756645386816636</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>157188</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company80</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>3040777705432125908</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>31712</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company81</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>6074210146749209143</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>144296</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company82</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-1350748875224525962</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>128695</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company83</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8603047149063460887</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>93150</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company84</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>7343875156538486679</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>136686</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company85</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-8654090137645533376</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>89072</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company86</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>2269569773570610882</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>134190</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company87</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>2130972869135595350</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>9295</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company88</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>6060987252108296846</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>156273</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company89</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>3239525933063810200</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>42697</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company90</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-6827824740405482508</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>287</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company91</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-4239869437447582343</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>82726</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company92</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-7312347209907469289</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>6148</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company93</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>7294112354011079637</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>63269</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company94</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>309615561359676672</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>149477</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company95</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-4312887453557364187</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>124289</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company96</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>3705756732734009842</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>62327</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company97</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-4661720982433188604</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>193994</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company98</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>2611205726378483085</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>10881</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company99</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>2495555349615099771</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>22980</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company100</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>807836249282353732</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>29891</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company101</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>299926166185400774</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>40478</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company102</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>5558562973486674179</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>116561</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company103</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-3680902741541110846</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>99081</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company104</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-6845604776939339136</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>59822</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company105</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>777341357096257593</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>192297</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company106</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8485421845406408780</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>115160</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company107</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-1546928807870616232</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>181934</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company108</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-5233996339109544276</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>90972</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company109</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-6978724833210171617</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>109855</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company110</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>1007502141869670665</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>130242</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company111</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>4184996806329096967</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>127448</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company112</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>7936686204055658521</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>112580</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company113</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>1580774153732107899</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>181006</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company114</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>8262250194710768813</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>29120</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company115</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>5536692364676791095</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>70326</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company116</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-6194150531354995346</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>113395</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company117</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-8444670494721117531</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>95258</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company118</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>5361744382525292963</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>48318</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company119</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>3985174770614579827</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>126218</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company120</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>2189471737748487502</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>122235</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company121</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>1072806629771847005</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>190301</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company122</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-2675445186686345353</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>3689</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company123</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-189696127783936014</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>137647</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company124</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>2304242610798466699</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>44015</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company125</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-4227917067838879901</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>142600</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company126</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>2616624970550183201</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>186853</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company127</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>3533286922337362548</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>78089</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company128</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>5050720340501398293</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>46351</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company129</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-1472592871045911470</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>101267</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company130</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-6020266307743760288</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>191247</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company131</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-1788205440672707987</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>99024</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company132</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-2398803476313671535</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>114770</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company133</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>8616025627321130805</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>131763</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company134</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-7470289102094869539</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>143045</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company135</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-2586449328632519500</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>16713</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company136</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-3787044036349767053</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>69828</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company137</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>5068514357301049846</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>71133</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company138</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-7453231762407112286</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>52085</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company139</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-6753359599777972747</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>191184</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company140</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>2482751517559190564</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>190188</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company141</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>7904881657738847721</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>4184</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company142</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-5043894044626618029</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>173453</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company143</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-6263864541464154401</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>24940</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company144</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-7669067648274443418</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>162497</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company145</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>4250554044351479087</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>147652</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company146</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>108852737625610484</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>134701</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company147</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8359209200688690628</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>102813</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company148</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>5111750666705093257</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>30944</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company149</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>4142032639655278982</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>77040</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company150</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>1616618152703489315</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>47357</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company151</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>2459114510114222754</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>86939</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company152</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-1406033530459740114</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>167885</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company153</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-2577416649397079617</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>3765</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company154</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>4466495883148568075</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>130232</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company155</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-1658032824828225377</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>88914</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company156</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-8923444378610812891</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>104696</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company157</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>2558561199816823496</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>197388</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company158</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-5212374815988547626</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>6891</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company159</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-3609518084112563537</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>63488</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company160</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>8012025129327915521</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>97818</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company161</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>7792241226295896176</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>84506</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company162</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>3756590711573115748</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>190134</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company163</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-7426605103539518503</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>16777</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company164</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>2557512508751442909</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>52254</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company165</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-6438872248270605738</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>134152</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company166</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>825920271896591025</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>169036</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company167</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>6073916422960627501</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>176420</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company168</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-6595635192924815194</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>172107</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company169</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>3037914247274872107</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>183101</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company170</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-8071583093096681618</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>142643</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company171</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-3673585188249369520</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>152208</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company172</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-2928975148282470931</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>134541</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company173</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>4413676436692983269</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>159138</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company174</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-935401785317986413</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>165959</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company175</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>8014961536581174160</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>172416</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company176</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-8556457613321523482</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>113566</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company177</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-8313965562291529397</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>114536</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company178</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>8585448581043627091</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>82014</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company179</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-1033940739628619277</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>3669</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company180</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-14400953374975081</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>140891</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company181</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-5598686260403458564</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>195969</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company182</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-1297405046694905499</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>171221</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company183</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>6581874073995897966</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>57722</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company184</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-727311455990652641</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>169165</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company185</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>9216189173079238795</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>151022</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company186</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>6900558071138757416</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>178809</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company187</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-5093038827895141645</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>176620</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company188</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>6866372794362666694</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>55193</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company189</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>1561285804634114944</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>5493</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company190</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-8309007403753811297</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>103796</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company191</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-5336103630591399852</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>25566</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company192</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>6774047114305690646</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>102636</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company193</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-9125528320762599642</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>172443</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company194</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>6634929432936978793</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>14064</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company195</company> - <headquarter_city>Munich2</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich2</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8168326888577574641</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>80067</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 79</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 79</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company196</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>946643819667780989</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>50783</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company197</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-5517513306246215896</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>109140</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company198</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-498753940666086720</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>190552</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company199</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-8243564648221441486</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>120000</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company200</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-6406094698935923939</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>68372</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company201</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-6465899830575390412</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>50089</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company202</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-3884255246101737474</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>78126</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company203</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>2932354549368395764</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>2248</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company204</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-3416866856358539058</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>63566</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company205</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>2424324284966234845</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>166225</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company206</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-1786966350847604788</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>11892</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company207</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-86703530161518033</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>181881</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company208</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-3506205405602240084</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>182919</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company209</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8049774261499875565</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>103681</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company210</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>8729894503028847997</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>129506</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company211</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-5924666758404046835</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>14453</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company212</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>4924702929492785731</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>135706</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company213</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-6436621406967675023</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>113410</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company214</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-3749445242885556184</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>134005</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company215</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-2866484853487557241</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>90090</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company216</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>3939922594655617890</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>166775</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company217</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-7295949943921916709</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>29433</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company218</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>5990280907263121355</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>159733</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company219</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-8715667244082184826</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>33314</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company220</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>9004093767529754678</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>167323</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company221</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-6856916481985132314</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>130162</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company222</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>7170506767683052966</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>110496</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company223</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>9148841866221640310</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>73601</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company224</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>3848190867287261317</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>73937</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company225</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>8801374646572241910</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>7894</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company226</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>8567333298321520732</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>10353</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company227</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>52159166183696558</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>186649</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company228</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>9031533631653515177</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>156846</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company229</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>1327600597558144633</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>87696</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company230</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8365982331940420921</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>132011</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company231</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>6617360791733681843</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>144979</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company232</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-7510889897341953989</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>11577</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company233</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>5931343444203057834</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>109217</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company234</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-7404380361099692273</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>63695</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company235</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>8736966425056313794</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>199742</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company236</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>5240496795279843694</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>63014</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company237</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>2487569584725705826</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>194344</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company238</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>3507739875032403887</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>5904</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company239</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>1042640637978702919</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>33460</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company240</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>1054927936118382081</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>97152</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company241</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-4043183592540593811</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>155626</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company242</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>5117228854228776235</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>182403</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company243</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-7752266121492473089</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>148802</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company244</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-9138737372692230905</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>59785</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company245</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-7288627781369527236</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>3501</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company246</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>3437124974762387437</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>111616</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company247</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>8497741210133882332</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>30850</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company248</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>7446836399173303346</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>14718</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company249</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-1413652665699523622</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>77093</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company250</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>3889291359496440883</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>58951</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company251</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8102613365091480316</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>42457</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company252</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>3493347651776850165</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>147871</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company253</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>3976060089600938233</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>175936</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company254</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>3978493785834585916</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>26010</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company255</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-4499651691138421950</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>3182</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company256</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-4661534344487008014</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>30779</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company257</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-160734415699376238</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>55379</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company258</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-1227729214806853629</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>103903</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company259</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>8768552902564976885</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>166883</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company260</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>2549923653199167939</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>92571</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company261</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-8850706061676486679</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>19859</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company262</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-8655413718096580280</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>69763</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company263</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>6718730831527657355</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>20037</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company264</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>8348141207592066868</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>5386</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company265</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-342365016160503407</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>14750</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company266</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-1232625324232874679</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>192030</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company267</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>5271771784871696349</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>166425</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company268</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-217434328438934497</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>22389</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company269</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-4665359708843781648</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>169704</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company270</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>6884648806460634805</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>18718</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company271</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-6897488867789058920</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>96912</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company272</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-22253794081656632</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>20454</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company273</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-3024409668677751528</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>152542</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company274</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-2307776201334927500</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>34719</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company275</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>2990860055875202066</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>70070</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company276</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>683986597772830112</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>137947</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company277</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-3764116934470040193</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>96608</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company278</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-8469958002126037859</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>114547</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company279</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>4696699449492823803</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>27391</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company280</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-8902777012303259989</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>155257</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company281</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-1847255503985777613</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>194827</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company282</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-1603395828362924878</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>3387</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company283</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-6626193354925261816</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>22124</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company284</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>2628967240303277402</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>165462</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company285</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>9201316376807280782</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>7837</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company286</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>261318118562968680</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>111209</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company287</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-2800966612454164762</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>54961</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company288</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>1596623082584928271</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>93108</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company289</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>1470362966970513606</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>170484</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company290</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>8512750602633714042</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>163575</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company291</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-8354411857044823998</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>146966</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company292</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>375926910258714366</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>163583</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company293</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-7517819292073736427</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>182064</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company294</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-7641630407305411256</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>115124</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company295</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>5552474928986605889</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>156309</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company296</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-6788444614985284945</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>97105</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company297</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-1442409182300562560</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>74430</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company298</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>4573828264406564646</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>44186</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company299</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-20085424500996748</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>130319</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company300</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-6885330183413169702</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>52687</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company301</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-2526686782905152924</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>28051</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company302</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>1304997766396004693</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>128889</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company303</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-6520852138372033491</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>196491</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company304</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-401093942563898409</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>103445</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company305</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>970603682314556312</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>105622</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company306</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>3486558691003242934</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>81334</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company307</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-3751289082600373141</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>143928</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company308</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>6208412760109266881</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>197199</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company309</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>6151116483829003854</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>66316</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company310</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-6473420061417276198</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>101766</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company311</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>1005763594965057122</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>87074</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company312</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>2903939098389468020</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>82360</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company313</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>3469622164431253166</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>26708</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company314</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-5449644026172683708</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>185003</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company315</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>4636142512357840321</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>171675</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company316</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>8115358358663283296</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>29493</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company317</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>7885688725160265489</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>150007</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company318</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>4447241872484526585</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>155796</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company319</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>1035852444224923700</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>181044</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company320</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>2396539735963154305</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>21116</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company321</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-1599624205952847441</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>3828</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company322</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-4616634401136247907</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>145399</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company323</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>1088043236062707046</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>20025</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company324</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-6871444365863878617</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>128241</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company325</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>3781909292932584819</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>46028</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company326</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-116948787218911928</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>111507</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company327</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-507377934526548642</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>116044</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company328</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>8005604933733580161</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>4473</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company329</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>4387665884376566933</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>25537</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company330</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-3273144275608743052</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>146277</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company331</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>5167680070043083140</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>137786</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company332</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>9175670221744484715</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>343</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company333</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-4421820773220900025</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>54470</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company334</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>3561046322124337769</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>364</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company335</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-1312229289770383457</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>87293</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company336</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>2595232165733130392</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>38793</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company337</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-6116972516414328928</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>100457</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company338</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>1210599154492330050</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>36486</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company339</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-6898004806170520620</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>111847</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company340</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-8954514950963546831</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>132489</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company341</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-6343545907894308208</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>13258</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company342</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-9144386394334797706</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>10278</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company343</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>4806640556220376952</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>163867</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company344</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-5848118208598631513</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>7791</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company345</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-494870269377797829</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>17373</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company346</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-6845604776939339136</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>59822</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company347</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>3486558691003242934</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>81334</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company348</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>3239525933063810200</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>42697</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company349</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-7426605103539518503</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>16777</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company350</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>3978953203804592709</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>193557</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company351</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>7140556515794785029</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>122916</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company352</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-2977406148380105084</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>169330</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company353</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-8962531479213591701</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>69893</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company354</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-6139346187331068110</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>172280</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company355</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-169326354295144247</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>69481</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company356</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>3110018122261169156</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>5970</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company357</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-4248490893199019529</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>57385</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company358</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>8800174920198155726</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>27032</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company359</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8802246784027196783</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>116257</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company360</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>8357563626384836116</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>89124</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company361</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>1698485762670221830</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>149990</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company362</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-2063246993056504656</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>155498</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company363</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>2597671582788751014</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>195335</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company364</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-3507340947732275481</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>148066</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company365</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-137066222549749612</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>114598</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company366</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>8152300648905505549</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>49079</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company367</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-7059258387662052150</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>58952</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company368</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-3945909062480193393</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>190055</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company369</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8809336540064408311</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>89176</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company370</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-8640772541785868824</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>143838</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company371</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-5309703264890644512</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>127890</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company372</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>9214778780189621374</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>8783</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company373</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-3372620596995903839</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>137409</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company374</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-5297087035664159161</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>105819</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company375</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>8529239045332683049</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>146589</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company376</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>8012850584202101987</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>88437</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company377</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-4086126881880900044</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>147414</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company378</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-1723724324820889055</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>5042</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company379</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>5516812939157019494</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>20639</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company380</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>5441243702643212107</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>119485</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company381</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-5495842774778821884</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>190429</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company382</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>1072034861338629995</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>101210</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company383</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-5483071918424130960</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>32792</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company384</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8784018666637120195</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>16413</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company385</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-3307056434426204364</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>189085</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company386</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>8851325698639019807</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>7004</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company387</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-2078550121664702028</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>76755</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company388</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-2135769925125587397</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>166953</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company389</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-774348605753358758</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>30735</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company390</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-1041534857457246388</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>198418</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company391</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-494870269377797829</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>17373</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company392</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-3977301587204413735</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>5148</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company393</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>3975959139360323986</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>100919</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company394</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-4867218589285945940</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>27064</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company395</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>6240891158163115105</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>189372</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company396</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>1002361816542054079</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>87585</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company397</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>132551781563803585</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>146754</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company398</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>8721537069055237687</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>87366</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company399</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-8232666893757350271</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>144681</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company400</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-7471771900427731811</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>179851</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company401</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-6800932032387449426</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>118935</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company402</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-6444209624500496609</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>198603</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company403</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-607661608805169146</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>5056</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company404</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-6257950304220252704</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>45240</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company405</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-5915020003655406782</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>145520</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company406</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>4978616762122944177</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>97207</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company407</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-3374836814341208008</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>86135</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company408</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>4567164043100616939</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>71784</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company409</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-2904282840226047618</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>31933</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company410</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>4571571320493852415</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>186884</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company411</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>8683464988119271360</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>105780</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company412</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>4853838014099804590</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>44750</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company413</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-3785762364091063440</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>75865</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company414</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-6419896547325315770</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>53993</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company415</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>1787879219785582610</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>100916</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company416</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-5232136106080700379</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>196992</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company417</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>5256342395996348116</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>174202</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company418</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>9191081442685045101</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>108720</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company419</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-6352357161869394680</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>80834</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company420</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>3686767831106683964</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>25949</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company421</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-9111175403922758456</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>71548</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company422</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>2830541153830752856</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>12897</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company423</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-3366393689791127007</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>59241</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company424</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-4519485568765669191</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>108185</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company425</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-7611703799309405040</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>80975</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company426</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>5113984845424534813</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>123019</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company427</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-7507206699170109577</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>118507</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company428</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-4412453948919342511</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>145166</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company429</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-5052217959876283234</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>121731</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company430</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-2095421347592128442</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>59471</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company431</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>258291669036112465</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>25456</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company432</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>4442065412552268612</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>93323</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company433</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>8669784037082085762</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>187111</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company434</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-819618639232903786</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>76973</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company435</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-4508499954607479840</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>189186</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company436</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-3413138679121021801</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>874</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company437</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>2843084919015130646</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>189276</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company438</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>5129929695762116844</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>186948</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company439</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-6409436365166908358</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>15288</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company440</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-4871536460834732103</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>134224</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company441</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>1766518390581207674</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>145153</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company442</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>8165245102349815265</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>133341</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company443</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-140735975062281650</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>33758</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company444</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-767235981870600270</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>117192</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company445</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-3646592032708659298</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>32190</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company446</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>6317063599635876145</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>127526</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company447</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-7233069264652503285</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>69932</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company448</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>4589716868648243084</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>43513</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company449</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>1796388326519677063</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>10093</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company450</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>3080327515251438335</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>191693</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company451</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-4025664209440784540</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>78612</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company452</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-4934210814281459616</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>192977</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company453</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>6668178494813286380</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>100645</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company454</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>9075423446660259557</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>85311</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company455</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>2513026347481282683</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>155840</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company456</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>7746671551527808000</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>18289</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company457</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>508991720517105307</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>17757</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company458</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-9139407650142653138</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>127451</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company459</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>2434400614978614958</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>142887</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company460</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-8001444138417285171</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>92186</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company461</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-3965847749783211416</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>23054</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company462</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>9159740440971002346</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>109513</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company463</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-2593298848406922689</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>14184</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company464</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>8259966732853027152</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>149587</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company465</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-7028322129840643962</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>113682</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company466</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-505513798125943415</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>131259</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company467</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-7024321069787375691</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>130011</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company468</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>642131966544272873</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>51222</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company469</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-7169663366950021315</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>195548</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company470</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-1888249356559216758</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>66849</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company471</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>4573313655661104432</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>115378</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company472</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-2730612906922725848</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>71761</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company473</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>6787697029189571449</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>180438</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company474</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>6658010851547943548</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>142081</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company475</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-7711309056297879609</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>176499</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company476</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-4971030886054769832</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>114506</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company477</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-681690965211597723</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>174257</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company478</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>7741774190394926579</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>93246</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company479</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-7787422632360449643</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>25436</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company480</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>12918432817450469</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>114804</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company481</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-5108778837978101326</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>173539</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company482</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>409627219547812659</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>68655</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company483</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>3870871045240467495</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>148408</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company484</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-2189377441941558658</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>3736</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company485</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>2814699704440781347</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>170827</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company486</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>6762074037118488879</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>93868</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company487</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>1038679066085645187</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>118196</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company488</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>4815635799241671244</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>180072</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company489</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>2966308974148258069</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>27592</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company490</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-4631020073743123924</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>126384</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company491</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>5237594611015591083</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>75131</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company492</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-8785947023424382972</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>14</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company493</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>4255039651060656516</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>30565</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company494</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-845698338468841802</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>96770</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company495</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-7937692791743194206</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>14559</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company496</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>5350029024389507507</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>80546</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company497</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-318728138664025103</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>67657</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company498</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>2755206755897787004</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>5148</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company499</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-8345120245594331151</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>161654</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company500</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>8100688162399263427</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>147701</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company501</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>5515746208256543836</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>127034</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company502</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>1227605154308707083</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>60401</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company503</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>5742910035126861863</gln> <lastOrder>2014-10-31</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>102181</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company504</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>8812675624399600731</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>5772</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company505</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>6490627816140045501</gln> <lastOrder>2014-10-31</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>157316</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company506</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>4142032639655278982</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>77040</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company507</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>3561046322124337769</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>364</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company508</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-4227917067838879901</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>142600</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company509</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>9201316376807280782</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>7837</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company510</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-4421820773220900025</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>54470</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company511</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-5915020003655406782</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>145520</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company512</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>1787879219785582610</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>100916</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company513</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>8736966425056313794</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>199742</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company514</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-8902777012303259989</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>155257</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company515</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>3756590711573115748</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>190134</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company516</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>2304242610798466699</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>44015</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company517</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>9031533631653515177</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>156846</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company518</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>8012850584202101987</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>88437</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company519</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-7155446692941884562</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>46003</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company520</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>5361744382525292963</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>48318</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company521</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>3848190867287261317</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>73937</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company522</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>5237594611015591083</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>75131</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company523</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-4086126881880900044</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>147414</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company524</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-653049448699642269</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>151603</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company525</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-4934210814281459616</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>192977</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company526</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-22253794081656632</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>20454</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company527</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-9144386394334797706</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>10278</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company528</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>6707446355170296858</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>144816</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company529</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-2928975148282470931</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>134541</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company530</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-3588576946943023909</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>101852</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company531</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-318728138664025103</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>67657</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company532</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>8729894503028847997</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>129506</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company533</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-1760520998342151693</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>189110</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company534</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>1100053105925485316</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>60723</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company535</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>9214778780189621374</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>8783</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company536</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>9019683909535394048</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>143759</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company537</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-6419896547325315770</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>53993</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company538</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>108852737625610484</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>134701</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company539</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-5449644026172683708</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>185003</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company540</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-3120077179149837830</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>10046</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company541</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-4572767528518093155</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>133847</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company542</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-4025664209440784540</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>78612</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company543</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-5232136106080700379</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>196992</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company544</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>777341357096257593</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>192297</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company545</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>2990860055875202066</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>70070</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company546</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-8655413718096580280</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>69763</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company547</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-4871536460834732103</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>134224</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company548</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-3030399962412679315</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>184645</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company549</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-3945909062480193393</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>190055</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company550</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>1616618152703489315</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>47357</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company551</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-2078550121664702028</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>76755</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company552</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>8100688162399263427</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>147701</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company553</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-401093942563898409</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>103445</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company554</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-7028322129840643962</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>113682</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company555</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>190045513009673516</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>143043</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company556</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-4616634401136247907</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>145399</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company557</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>2482751517559190564</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>190188</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company558</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>4589716868648243084</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>43513</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company559</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-14400953374975081</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>140891</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company560</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>8512750602633714042</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>163575</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company561</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>3080327515251438335</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>191693</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company562</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-1472592871045911470</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>101267</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company563</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-5060445913234947592</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>54946</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company564</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8809336540064408311</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>89176</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company565</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-116948787218911928</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>111507</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company566</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-6897488867789058920</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>96912</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company567</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-9111175403922758456</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>71548</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company568</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>2269569773570610882</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>134190</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company569</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-2095421347592128442</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>59471</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company570</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>6317063599635876145</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>127526</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company571</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>1002361816542054079</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>87585</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company572</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-140735975062281650</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>33758</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company573</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-2151418307995872514</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>26623</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company574</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-2124843341362608853</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>63951</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company575</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-4665359708843781648</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>169704</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company576</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>8259966732853027152</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>149587</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company577</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>8741132311548033903</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>110873</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company578</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-8001444138417285171</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>92186</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company579</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-3506205405602240084</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>182919</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company580</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>8812675624399600731</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>5772</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company581</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-3071026855594117173</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>135821</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company582</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-8715667244082184826</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>33314</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company583</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>5111750666705093257</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>30944</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company584</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>5068514357301049846</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>71133</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company585</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-4412453948919342511</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>145166</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company586</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-1406033530459740114</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>167885</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company587</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>4388460055715983531</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>117136</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company588</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-3646592032708659298</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>32190</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company589</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>1437820832094065421</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>195788</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company590</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>4924702929492785731</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>135706</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company591</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-819618639232903786</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>76973</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company592</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>8005604933733580161</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>4473</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company593</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-1442409182300562560</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>74430</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company594</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-6406094698935923939</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>68372</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company595</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-6885330183413169702</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>52687</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company596</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>2150973345421006016</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>30757</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company597</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>8357563626384836116</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>89124</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company598</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8365982331940420921</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>132011</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company599</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>6073916422960627501</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>176420</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company600</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-4661534344487008014</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>30779</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company601</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>1766518390581207674</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>145153</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company602</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-2977406148380105084</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>169330</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company603</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-8556457613321523482</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>113566</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company604</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>2460589750446761064</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>72753</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company605</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>3469622164431253166</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>26708</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company606</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8168326888577574641</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>80067</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company607</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>3705756732734009842</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>62327</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company608</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>3507739875032403887</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>5904</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company609</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-342365016160503407</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>14750</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company610</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-217434328438934497</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>22389</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company611</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>1072034861338629995</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>101210</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company612</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-2398803476313671535</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>114770</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company613</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-498753940666086720</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>190552</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company614</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-5108778837978101326</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>173539</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company615</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-3977301587204413735</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>5148</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company616</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>825920271896591025</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>169036</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company617</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>1054927936118382081</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>97152</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company618</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-505513798125943415</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>131259</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company619</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-1077962721092150525</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>75543</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company620</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>6668178494813286380</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>100645</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company621</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>2932354549368395764</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>2248</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company622</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-4582131419084506049</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>105815</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company623</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-6520852138372033491</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>196491</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company624</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-20085424500996748</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>130319</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company625</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-4499651691138421950</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>3182</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company626</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>2558561199816823496</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>197388</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company627</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-192313436210219017</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>154175</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company628</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>8640283114045794156</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>132533</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company629</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>6581874073995897966</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>57722</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company630</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>1796388326519677063</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>10093</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company631</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>3686767831106683964</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>25949</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company632</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-8654090137645533376</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>89072</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company633</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>2966308974148258069</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>27592</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company634</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>3533286922337362548</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>78089</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company635</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-7937692791743194206</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>14559</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company636</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-7169663366950021315</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>195548</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company637</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-6626193354925261816</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>22124</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company638</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>4571571320493852415</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>186884</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company639</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>3437124974762387437</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>111616</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company640</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-8640772541785868824</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>143838</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company641</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>6942480786795805587</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>19171</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company642</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-7507206699170109577</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>118507</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company643</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-7669067648274443418</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>162497</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company644</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>6634929432936978793</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>14064</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company645</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>5256342395996348116</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>174202</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company646</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-3507340947732275481</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>148066</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company647</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>5558562973486674179</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>116561</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company648</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-8071583093096681618</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>142643</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company649</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>4573313655661104432</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>115378</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company650</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>8768552902564976885</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>166883</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company651</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>7741774190394926579</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>93246</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company652</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>3939922594655617890</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>166775</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company653</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>2189471737748487502</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>122235</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company654</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-7563452724288906323</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>19110</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company655</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-3416866856358539058</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>63566</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company656</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>7446836399173303346</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>14718</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company657</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-8313965562291529397</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>114536</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company658</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>7294112354011079637</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>63269</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company659</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-5043894044626618029</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>173453</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company660</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>6490627816140045501</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>157316</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company661</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>8138414140802465419</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>50471</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company662</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-681690965211597723</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>174257</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company663</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-5495842774778821884</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>190429</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company664</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8603047149063460887</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>93150</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company665</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-8785947023424382972</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>14</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company666</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-1599624205952847441</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>3828</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company667</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>8338550031873764510</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>10432</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company668</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>7237940492601196868</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>31101</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company669</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-507377934526548642</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>116044</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company670</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-6263864541464154401</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>24940</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company671</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-5924666758404046835</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>14453</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company672</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-6352357161869394680</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>80834</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company673</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-2586449328632519500</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>16713</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company674</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-1786966350847604788</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>11892</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company675</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>9075423446660259557</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>85311</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company676</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-6856916481985132314</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>130162</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company677</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>2611205726378483085</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>10881</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company678</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>3968934341399479519</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>193231</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company679</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-7510889897341953989</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>11577</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company680</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-8444670494721117531</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>95258</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company681</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>5536692364676791095</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>70326</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company682</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>6151116483829003854</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>66316</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company683</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>9175670221744484715</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>343</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company684</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8052330410814913514</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>144538</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company685</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-7233069264652503285</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>69932</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company686</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>4255039651060656516</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>30565</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company687</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>3985174770614579827</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>126218</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company688</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>1580774153732107899</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>181006</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company689</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>1470362966970513606</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>170484</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company690</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8049774261499875565</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>103681</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company691</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-4631020073743123924</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>126384</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company692</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-4331856302759098254</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>64691</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company693</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>3110018122261169156</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>5970</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company694</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-4312887453557364187</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>124289</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company695</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>309615561359676672</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>149477</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company696</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>5167680070043083140</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>137786</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company697</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-8607559195998230106</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>135654</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company698</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-5052217959876283234</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>121731</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company699</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-1413652665699523622</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>77093</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company700</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-8962531479213591701</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>69893</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company701</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-1350748875224525962</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>128695</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company702</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-8345120245594331151</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>161654</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company703</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-6194150531354995346</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>113395</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company704</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>1005763594965057122</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>87074</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company705</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-7857716105790681095</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>40443</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company706</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>4815635799241671244</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>180072</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company707</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-6465899830575390412</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>50089</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company708</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>7792241226295896176</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>84506</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company709</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-8232666893757350271</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>144681</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company710</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-2577416649397079617</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>3765</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company711</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-5426775850217290588</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>83290</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company712</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-6753359599777972747</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>191184</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company713</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>5446073353849651114</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>79328</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company714</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>683986597772830112</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>137947</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company715</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>5223111276477362596</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>144852</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company716</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>6617360791733681843</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>144979</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company717</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-3950348651648017666</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>122819</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company718</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>6718730831527657355</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>20037</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company719</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8802246784027196783</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>116257</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company720</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>6884648806460634805</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>18718</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company721</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>2396539735963154305</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>21116</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company722</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>1210599154492330050</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>36486</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company723</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-4336814591591179797</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>26092</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company724</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-3884255246101737474</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>78126</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company725</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>9004093767529754678</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>167323</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company726</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>1561285804634114944</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>5493</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company727</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-3307056434426204364</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>189085</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company728</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-7404380361099692273</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>63695</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company729</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-9106920235202632666</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>198728</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company730</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-6788444614985284945</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>97105</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company731</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-9139407650142653138</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>127451</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company732</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>6074210146749209143</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>144296</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company733</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-5212374815988547626</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>6891</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company734</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>2487569584725705826</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>194344</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company735</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-8020708796610747786</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>132431</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company736</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>1007502141869670665</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>130242</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company737</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>375926910258714366</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>163583</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company738</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>2095365959971736078</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>43256</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company739</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-2135769925125587397</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>166953</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company740</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-3366393689791127007</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>59241</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company741</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-4661720982433188604</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>193994</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company742</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>5297825428923965404</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>116515</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company743</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-2189377441941558658</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>3736</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company744</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-8243564648221441486</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>120000</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company745</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>9159740440971002346</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>109513</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company746</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>5990280907263121355</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>159733</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company747</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>299926166185400774</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>40478</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company748</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-2866484853487557241</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>90090</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company749</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-6324908291059340809</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>30949</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company750</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>12918432817450469</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>114804</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company751</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-3785762364091063440</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>75865</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company752</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-3673585188249369520</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>152208</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company753</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>8567333298321520732</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>10353</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company754</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-4519485568765669191</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>108185</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company755</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-7787422632360449643</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>25436</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company756</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>4696699449492823803</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>27391</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company757</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-3024409668677751528</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>152542</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company758</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-6800932032387449426</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>118935</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company759</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-7641630407305411256</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>115124</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company760</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-3799602907638096025</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>152551</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company761</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-6139346187331068110</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>172280</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company762</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>8616025627321130805</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>131763</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company763</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>409627219547812659</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>68655</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company764</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-8850706061676486679</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>19859</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company765</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>4234256626632882716</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>1476</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company766</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>8012025129327915521</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>97818</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company767</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-7752266121492473089</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>148802</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company768</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>3040777705432125908</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>31712</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company769</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-5598686260403458564</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>195969</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company770</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-6343545907894308208</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>13258</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company771</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>9191081442685045101</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>108720</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company772</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>2830541153830752856</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>12897</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company773</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-169326354295144247</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>69481</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company774</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>5552474928986605889</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>156309</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company775</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>4442065412552268612</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>93323</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company776</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-5336103630591399852</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>25566</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company777</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>2755206755897787004</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>5148</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company778</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-86703530161518033</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>181881</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company779</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-5848118208598631513</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>7791</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company780</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>6866372794362666694</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>55193</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company781</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>4853838014099804590</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>44750</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company782</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8102613365091480316</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>42457</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company783</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-3751289082600373141</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>143928</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company784</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>4250554044351479087</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>147652</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company785</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>8669784037082085762</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>187111</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company786</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-4508499954607479840</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>189186</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company787</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-767235981870600270</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>117192</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company788</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-3177694989379770952</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>156851</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company789</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>132551781563803585</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>146754</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company790</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>6658010851547943548</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>142081</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company791</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-774348605753358758</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>30735</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company792</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-6871444365863878617</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>128241</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company793</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>7343875156538486679</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>136686</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company794</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>2513026347481282683</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>155840</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company795</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-4043183592540593811</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>155626</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company796</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>2628967240303277402</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>165462</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company797</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-8599311701869844176</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>123366</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company798</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>8152300648905505549</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>49079</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company799</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>1038679066085645187</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>118196</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company800</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>807836249282353732</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>29891</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company801</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>8497741210133882332</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>30850</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company802</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-1232625324232874679</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>192030</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company803</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>4806640556220376952</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>163867</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company804</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>2843084919015130646</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>189276</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company805</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-7059258387662052150</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>58952</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company806</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-7177876003668119546</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>194155</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company807</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-3374836814341208008</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>86135</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company808</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>4387665884376566933</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>25537</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company809</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-2904282840226047618</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>31933</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company810</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-2301233824001444335</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>36938</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company811</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>5515746208256543836</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>127034</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company812</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-6409436365166908358</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>15288</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company813</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>6774047114305690646</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>102636</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company814</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>2595232165733130392</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>38793</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company8157</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>5129929695762116844</gln> <lastOrder>2014-11-18</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>186948</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company816</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>4337084496559860135</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>42837</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company817</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-7315564299444799976</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>199037</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company818</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-1788205440672707987</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>99024</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company819</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>5113984845424534813</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>123019</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company820</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-137066222549749612</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>114598</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company821</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>4573828264406564646</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>44186</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company822</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-6116972516414328928</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>100457</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company823</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>5271771784871696349</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>166425</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company824</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-6827824740405482508</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>287</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company825</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-9138737372692230905</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>59785</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company826</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-8962531479213591701</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>69893</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company827</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-4519485568765669191</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>108185</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company828</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>5050720340501398293</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>46351</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company829</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-505513798125943415</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>131259</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company830</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-14400953374975081</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>140891</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company831</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-6419896547325315770</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>53993</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company832</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>5111750666705093257</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>30944</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company833</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>7170506767683052966</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>110496</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company834</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>8115358358663283296</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>29493</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company835</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-607661608805169146</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>5056</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company836</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>3080327515251438335</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>191693</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company837</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-8640772541785868824</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>143838</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company838</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-6885330183413169702</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>52687</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company839</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>8721537069055237687</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>87366</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company840</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>2304242610798466699</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>44015</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company841</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-6626193354925261816</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>22124</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company842</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-2189377441941558658</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>3736</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company843</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-5052217959876283234</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>121731</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company844</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>8338550031873764510</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>10432</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company845</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>2611205726378483085</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>10881</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company846</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-498753940666086720</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>190552</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company847</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>2616624970550183201</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>186853</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company848</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-7404380361099692273</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>63695</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company849</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-7028322129840643962</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>113682</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company850</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-9125528320762599642</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>172443</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company851</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>3110018122261169156</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>5970</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company852</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>2482751517559190564</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>190188</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company853</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-4046576409971810677</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>72456</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company854</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>8616025627321130805</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>131763</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company855</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-1888249356559216758</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>66849</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company856</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-3444246327165780719</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>120546</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company857</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>8640283114045794156</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>132533</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company858</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8365982331940420921</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>132011</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company859</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>2814699704440781347</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>170827</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company860</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-2124843341362608853</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>63951</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company861</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>8348141207592066868</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>5386</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company862</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>5990280907263121355</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>159733</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company863</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>9004093767529754678</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>167323</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company864</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>2434400614978614958</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>142887</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company865</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-8354411857044823998</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>146966</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company866</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-6444209624500496609</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>198603</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company867</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>5931343444203057834</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>109217</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company868</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-7453231762407112286</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>52085</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company869</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>4413676436692983269</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>159138</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company870</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-1603395828362924878</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>3387</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company871</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-4239869437447582343</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>82726</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company872</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-3965847749783211416</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>23054</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company873</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8784018666637120195</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>16413</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company874</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-3609518084112563537</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>63488</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company875</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>261318118562968680</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>111209</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company876</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>4567164043100616939</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>71784</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company877</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>2495555349615099771</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>22980</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company878</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-845698338468841802</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>96770</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company879</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-6978724833210171617</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>109855</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company880</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>2424324284966234845</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>166225</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company881</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>4466495883148568075</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>130232</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company882</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-3787044036349767053</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>69828</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company883</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>8115358358663283296</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>29493</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company884</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>5697630985839519134</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>110979</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company885</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>3870871045240467495</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>148408</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company886</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-7471771900427731811</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>179851</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company887</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>2814699704440781347</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>170827</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company888</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>4654735673913276493</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>160967</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company889</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>5516812939157019494</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>20639</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company890</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-189696127783936014</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>137647</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company891</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-8469958002126037859</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>114547</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company892</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-2730612906922725848</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>71761</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company893</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-6827824740405482508</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>287</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company894</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-7312347209907469289</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>6148</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company895</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-1295864684003839945</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>30931</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company896</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-3413138679121021801</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>874</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company897</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>3889291359496440883</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>58951</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company898</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-6169615201294750905</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>157270</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company899</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>1227605154308707083</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>60401</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company900</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>3770756645386816636</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>157188</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company901</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>1042640637978702919</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>33460</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company902</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-3789424229237781345</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>90968</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company903</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>7851218839028454402</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>67133</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company904</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>6324618425368130096</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>121966</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company905</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>1596623082584928271</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>93108</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company906</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>1035852444224923700</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>181044</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company907</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-6898004806170520620</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>111847</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company908</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-9125528320762599642</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>172443</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company909</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>508991720517105307</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>17757</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company910</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>6060987252108296846</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>156273</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company911</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>5441243702643212107</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>119485</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company912</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-7288627781369527236</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>3501</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company913</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-160734415699376238</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>55379</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company914</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-3764116934470040193</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>96608</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company915</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-1312229289770383457</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>87293</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company916</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-3273144275608743052</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>146277</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company917</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>946643819667780989</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>50783</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company918</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8485421845406408780</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>115160</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company919</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-2593298848406922689</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>14184</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company920</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>6240891158163115105</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>189372</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company921</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-2675445186686345353</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>3689</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company922</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>7936686204055658521</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>112580</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company923</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-8309007403753811297</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>103796</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company924</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>3976060089600938233</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>175936</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company925</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>8851325698639019807</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>7004</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company926</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-935401785317986413</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>165959</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company927</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-8954514950963546831</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>132489</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company928</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>8585448581043627091</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>82014</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company929</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-2306126171297651404</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>108359</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company930</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>1088043236062707046</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>20025</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company931</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>6468938133139477201</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>72414</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company932</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-6020266307743760288</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>191247</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company933</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>8348141207592066868</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>5386</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company934</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-7295949943921916709</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>29433</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company935</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>1698485762670221830</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>149990</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company936</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>3978493785834585916</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>26010</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company937</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-5309703264890644512</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>127890</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company938</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-1847255503985777613</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>194827</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company939</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-6473420061417276198</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>101766</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company940</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-1297405046694905499</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>171221</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company941</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-2800966612454164762</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>54961</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company942</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-4867218589285945940</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>27064</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company943</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-9138737372692230905</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>59785</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company944</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>8800174920198155726</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>27032</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company945</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8359209200688690628</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>102813</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company946</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-7611703799309405040</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>80975</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company947</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>4636142512357840321</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>171675</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company948</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-3000589400053983121</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>167903</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company949</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>9216189173079238795</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>151022</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company950</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>5742910035126861863</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>102181</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company951</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>7140556515794785029</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>122916</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company952</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-2307776201334927500</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>34719</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company953</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>5117228854228776235</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>182403</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company954</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>7746671551527808000</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>18289</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company955</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>52159166183696558</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>186649</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company956</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-5093038827895141645</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>176620</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company957</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>4184996806329096967</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>127448</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company958</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-1385101003754843974</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>133414</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company959</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>970603682314556312</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>105622</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company960</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>2459114510114222754</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>86939</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company961</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-767235981870600270</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>117192</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company962</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>1470362966970513606</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>170484</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company963</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>6060987252108296846</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>156273</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company964</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-7059258387662052150</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>58952</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company965</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>2238674553883092496</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>17466</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company966</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-2800966612454164762</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>54961</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company967</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>642131966544272873</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>51222</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company968</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-9144386394334797706</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>10278</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company969</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>4387665884376566933</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>25537</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company970</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>4567164043100616939</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>71784</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company971</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>1787879219785582610</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>100916</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company972</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>2932354549368395764</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>2248</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company973</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-401093942563898409</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>103445</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company974</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-9111175403922758456</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>71548</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company975</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-7169663366950021315</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>195548</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company976</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-4582131419084506049</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>105815</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company977</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>-8102613365091480316</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>42457</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company978</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>9019683909535394048</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>143759</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company979</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>112345</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>112345</headquarterZipcode> <gln>8529239045332683049</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>146589</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company980</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-5043894044626618029</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>173453</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company981</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>1796388326519677063</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>10093</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company982</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>3756590711573115748</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>190134</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company983</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>2150973345421006016</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>30757</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company984</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-3789424229237781345</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>90968</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company985</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>2903939098389468020</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>82360</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company986</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>375926910258714366</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>163583</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>Near the sun 12</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>Near the sun 12</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company987</company> - <headquarter_city>San Francisco</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>San Francisco</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>2269569773570610882</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>134190</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company988</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>5167680070043083140</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>137786</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company989</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>2830541153830752856</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>12897</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company990</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>76844</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>76844</headquarterZipcode> <gln>-7641630407305411256</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>115124</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company991</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>2459114510114222754</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>86939</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company992</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-169326354295144247</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>0</priority> <yearlyTurnover>69481</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company993</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-5915020003655406782</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>145520</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company994</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>4573313655661104432</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>115378</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company995</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>-8655413718096580280</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>69763</yearlyTurnover> - <headquarter_housenumber>99 c</headquarter_housenumber> - <headquarter_streetname>In the middle 78</headquarter_streetname> + <headquarterHousenumber>99 c</headquarterHousenumber> + <headquarterStreetname>In the middle 78</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company996</company> - <headquarter_city>Munich</headquarter_city> - <headquarter_zipcode>4e557</headquarter_zipcode> + <headquarterCity>Munich</headquarterCity> + <headquarterZipcode>4e557</headquarterZipcode> <gln>946643819667780989</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>50783</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company997</company> - <headquarter_city>Moon</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Moon</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>4250554044351479087</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>1</priority> <yearlyTurnover>147652</yearlyTurnover> - <headquarter_housenumber>12334</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>12334</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company998</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>2487569584725705826</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>194344</yearlyTurnover> - <headquarter_housenumber>1a</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>1a</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company999</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>-1041534857457246388</gln> <lastOrder>2014-11-12</lastOrder> <locked>true</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>198418</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>Behind the lake 17</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>Behind the lake 17</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company1000</company> - <headquarter_city>Vienna</headquarter_city> - <headquarter_zipcode>7775423</headquarter_zipcode> + <headquarterCity>Vienna</headquarterCity> + <headquarterZipcode>7775423</headquarterZipcode> <gln>5223111276477362596</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>144852</yearlyTurnover> - <headquarter_housenumber>75/2</headquarter_housenumber> - <headquarter_streetname>At the montain 9</headquarter_streetname> + <headquarterHousenumber>75/2</headquarterHousenumber> + <headquarterStreetname>At the montain 9</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> <Supplier> <company>Company1001</company> - <headquarter_city>Jupiter</headquarter_city> - <headquarter_zipcode>99786</headquarter_zipcode> + <headquarterCity>Jupiter</headquarterCity> + <headquarterZipcode>99786</headquarterZipcode> <gln>-5297087035664159161</gln> <lastOrder>2014-11-12</lastOrder> <locked>false</locked> <phone></phone> <priority>2</priority> <yearlyTurnover>105819</yearlyTurnover> - <headquarter_housenumber>9997564</headquarter_housenumber> - <headquarter_streetname>On the beach 7</headquarter_streetname> + <headquarterHousenumber>9997564</headquarterHousenumber> + <headquarterStreetname>On the beach 7</headquarterStreetname> <firstContract></firstContract> <rating>0</rating> </Supplier> -</vector> \ No newline at end of file +</vector>
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/warehouses.xml b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/warehouses.xml index 224ad13..3c81385 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/warehouses.xml +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datainterchange/src/smooksresources/warehouses.xml
@@ -1,356 +1,356 @@ <vector> - <Warehouse_class> + <WarehouseClass> <description>Small Independent</description> <Warehouse> - <warehouse_name>Salka Warehousing</warehouse_name> - <wa_address1>9716 Alovera Road</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Acapulco</warehouse_city> - <warehouse_state_province>Guerrero</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Mexico</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>821-555-1658</warehouse_phone> - <warehouse_fax>594-555-2908</warehouse_fax> + <warehouseName>Salka Warehousing</warehouseName> + <waAddress1>9716 Alovera Road</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Acapulco</warehouseCity> + <warehouseStateProvince>Guerrero</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Mexico</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>821-555-1658</warehousePhone> + <warehouseFax>594-555-2908</warehouseFax> </Warehouse> <Warehouse> - <warehouse_name>Artesia Warehousing, Inc.</warehouse_name> - <wa_address1>9889 Matterhorn Court</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Los Angeles</warehouse_city> - <warehouse_state_province>CA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>859-555-2792</warehouse_phone> - <warehouse_fax>740-555-6556</warehouse_fax> + <warehouseName>Artesia Warehousing, Inc.</warehouseName> + <waAddress1>9889 Matterhorn Court</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Los Angeles</warehouseCity> + <warehouseStateProvince>CA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>859-555-2792</warehousePhone> + <warehouseFax>740-555-6556</warehouseFax> </Warehouse> <Warehouse> - <warehouse_name>Food Service Storage, Inc.</warehouse_name> - <wa_address1>5259 Mildred Ln</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>San Francisco</warehouse_city> - <warehouse_state_province>CA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>471-555-2456</warehouse_phone> - <warehouse_fax>552-555-3249</warehouse_fax> + <warehouseName>Food Service Storage, Inc.</warehouseName> + <waAddress1>5259 Mildred Ln</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>San Francisco</warehouseCity> + <warehouseStateProvince>CA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>471-555-2456</warehousePhone> + <warehouseFax>552-555-3249</warehouseFax> </Warehouse> <Warehouse> - <warehouse_name>Rose Food Warehousing</warehouse_name> - <wa_address1>9104 Jacobsen Street</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Victoria</warehouse_city> - <warehouse_state_province>BC</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Canada</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>143-555-7496</warehouse_phone> - <warehouse_fax>332-555-1803</warehouse_fax> + <warehouseName>Rose Food Warehousing</warehouseName> + <waAddress1>9104 Jacobsen Street</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Victoria</warehouseCity> + <warehouseStateProvince>BC</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Canada</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>143-555-7496</warehousePhone> + <warehouseFax>332-555-1803</warehouseFax> </Warehouse> - </Warehouse_class> - <Warehouse_class> + </WarehouseClass> + <WarehouseClass> <description>Medium Independent</description> <Warehouse> - <warehouse_name>Foster Products</warehouse_name> - <wa_address1>958 Hilltop Dr</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Bellingham</warehouse_city> - <warehouse_state_province>WA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>315-555-8947</warehouse_phone> - <warehouse_fax>119-555-3826</warehouse_fax> + <warehouseName>Foster Products</warehouseName> + <waAddress1>958 Hilltop Dr</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Bellingham</warehouseCity> + <warehouseStateProvince>WA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>315-555-8947</warehousePhone> + <warehouseFax>119-555-3826</warehouseFax> </Warehouse> <Warehouse> - <warehouse_name>Bastani and Sons</warehouse_name> - <wa_address1>1893 Northridge Drive</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Marida</warehouse_city> - <warehouse_state_province>Yucatan</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Mexico</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>846-555-3024</warehouse_phone> - <warehouse_fax>804-555-6674</warehouse_fax> + <warehouseName>Bastani and Sons</warehouseName> + <waAddress1>1893 Northridge Drive</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Marida</warehouseCity> + <warehouseStateProvince>Yucatan</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Mexico</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>846-555-3024</warehousePhone> + <warehouseFax>804-555-6674</warehouseFax> </Warehouse> <Warehouse> - <warehouse_name>Quality Warehousing and Trucking</warehouse_name> - <wa_address1>3337 Northpoint Ct</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Seattle</warehouse_city> - <warehouse_state_province>WA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>427-555-9060</warehouse_phone> - <warehouse_fax>869-555-1652</warehouse_fax> + <warehouseName>Quality Warehousing and Trucking</warehouseName> + <waAddress1>3337 Northpoint Ct</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Seattle</warehouseCity> + <warehouseStateProvince>WA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>427-555-9060</warehousePhone> + <warehouseFax>869-555-1652</warehouseFax> </Warehouse> <Warehouse> - <warehouse_name>Derby and Hunt</warehouse_name> - <wa_address1>600 Lake Nadine Place</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>San Andres</warehouse_city> - <warehouse_state_province>DF</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Mexico</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>922-555-5214</warehouse_phone> - <warehouse_fax>618-555-6578</warehouse_fax> + <warehouseName>Derby and Hunt</warehouseName> + <waAddress1>600 Lake Nadine Place</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>San Andres</warehouseCity> + <warehouseStateProvince>DF</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Mexico</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>922-555-5214</warehousePhone> + <warehouseFax>618-555-6578</warehouseFax> </Warehouse> - </Warehouse_class> - <Warehouse_class> + </WarehouseClass> + <WarehouseClass> <description>Large Independent</description> <Warehouse> - <warehouse_name>Destination, Inc.</warehouse_name> - <wa_address1>4162 Euclid Ave</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Bremerton</warehouse_city> - <warehouse_state_province>WA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>517-555-3022</warehouse_phone> - <warehouse_fax>136-555-4501</warehouse_fax> + <warehouseName>Destination, Inc.</warehouseName> + <waAddress1>4162 Euclid Ave</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Bremerton</warehouseCity> + <warehouseStateProvince>WA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>517-555-3022</warehousePhone> + <warehouseFax>136-555-4501</warehouseFax> </Warehouse> <Warehouse> - <warehouse_name>Freeman And Co</warehouse_name> - <wa_address1>234 West Covina Pkwy</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Mexico City</warehouse_city> - <warehouse_state_province>DF</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Mexico</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone></warehouse_phone> - <warehouse_fax></warehouse_fax> + <warehouseName>Freeman And Co</warehouseName> + <waAddress1>234 West Covina Pkwy</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Mexico City</warehouseCity> + <warehouseStateProvince>DF</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Mexico</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone></warehousePhone> + <warehouseFax></warehouseFax> </Warehouse> <Warehouse> - <warehouse_name>Jamison, Inc.</warehouse_name> - <wa_address1>1172 Liana Lane</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Orizaba</warehouse_city> - <warehouse_state_province>Veracruz</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Mexico</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>379-555-5756</warehouse_phone> - <warehouse_fax>436-555-7920</warehouse_fax> + <warehouseName>Jamison, Inc.</warehouseName> + <waAddress1>1172 Liana Lane</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Orizaba</warehouseCity> + <warehouseStateProvince>Veracruz</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Mexico</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>379-555-5756</warehousePhone> + <warehouseFax>436-555-7920</warehouseFax> </Warehouse> <Warehouse> - <warehouse_name>Jones International</warehouse_name> - <wa_address1>3377 Coachman Place</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Spokane</warehouse_city> - <warehouse_state_province>WA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>144-555-5192</warehouse_phone> - <warehouse_fax>971-555-6213</warehouse_fax> + <warehouseName>Jones International</warehouseName> + <waAddress1>3377 Coachman Place</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Spokane</warehouseCity> + <warehouseStateProvince>WA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>144-555-5192</warehousePhone> + <warehouseFax>971-555-6213</warehouseFax> </Warehouse> <Warehouse> - <warehouse_name>Valdez Warehousing</warehouse_name> - <wa_address1>6714 Roundtree Court</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Walla Walla</warehouse_city> - <warehouse_state_province>WA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>301-555-8174</warehouse_phone> - <warehouse_fax>666-555-9881</warehouse_fax> + <warehouseName>Valdez Warehousing</warehouseName> + <waAddress1>6714 Roundtree Court</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Walla Walla</warehouseCity> + <warehouseStateProvince>WA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>301-555-8174</warehousePhone> + <warehouseFax>666-555-9881</warehouseFax> </Warehouse> - </Warehouse_class> - <Warehouse_class> + </WarehouseClass> + <WarehouseClass> <description>Small Owned</description> <Warehouse> - <warehouse_name>Anderson Warehousing</warehouse_name> - <wa_address1>5657 Georgia Dr</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Camacho</warehouse_city> - <warehouse_state_province>Zacatecas</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Mexico</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>681-555-1655</warehouse_phone> - <warehouse_fax>946-555-4848</warehouse_fax> + <warehouseName>Anderson Warehousing</warehouseName> + <waAddress1>5657 Georgia Dr</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Camacho</warehouseCity> + <warehouseStateProvince>Zacatecas</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Mexico</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>681-555-1655</warehousePhone> + <warehouseFax>946-555-4848</warehouseFax> </Warehouse> <Warehouse> - <warehouse_name>Quality Distribution, Inc.</warehouse_name> - <wa_address1>6085 Darlene Drive</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Portland</warehouse_city> - <warehouse_state_province>OR</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>181-555-3588</warehouse_phone> - <warehouse_fax>269-555-8381</warehouse_fax> + <warehouseName>Quality Distribution, Inc.</warehouseName> + <waAddress1>6085 Darlene Drive</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Portland</warehouseCity> + <warehouseStateProvince>OR</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>181-555-3588</warehousePhone> + <warehouseFax>269-555-8381</warehouseFax> </Warehouse> <Warehouse> - <warehouse_name>Jorge Garcia, Inc.</warehouse_name> - <wa_address1>4364 Viera Avenue</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Tacoma</warehouse_city> - <warehouse_state_province>WA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>200-555-1310</warehouse_phone> - <warehouse_fax>442-555-5874</warehouse_fax> + <warehouseName>Jorge Garcia, Inc.</warehouseName> + <waAddress1>4364 Viera Avenue</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Tacoma</warehouseCity> + <warehouseStateProvince>WA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>200-555-1310</warehousePhone> + <warehouseFax>442-555-5874</warehouseFax> </Warehouse> <Warehouse> - <warehouse_name>Maddock Stored Foods</warehouse_name> - <wa_address1>8463 Kim Court</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Yakima</warehouse_city> - <warehouse_state_province>WA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>803-555-8978</warehouse_phone> - <warehouse_fax>630-555-2485</warehouse_fax> + <warehouseName>Maddock Stored Foods</warehouseName> + <waAddress1>8463 Kim Court</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Yakima</warehouseCity> + <warehouseStateProvince>WA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>803-555-8978</warehousePhone> + <warehouseFax>630-555-2485</warehouseFax> </Warehouse> - </Warehouse_class> - <Warehouse_class> + </WarehouseClass> + <WarehouseClass> <description>Medium Owned</description> <Warehouse> - <warehouse_name>Focus, Inc.</warehouse_name> - <wa_address1>9116 Tice Valley Blv.</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Guadalajara</warehouse_city> - <warehouse_state_province>Jalisco</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Mexico</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>344-555-5530</warehouse_phone> - <warehouse_fax>379-555-9065</warehouse_fax> + <warehouseName>Focus, Inc.</warehouseName> + <waAddress1>9116 Tice Valley Blv.</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Guadalajara</warehouseCity> + <warehouseStateProvince>Jalisco</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Mexico</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>344-555-5530</warehousePhone> + <warehouseFax>379-555-9065</warehouseFax> </Warehouse> <Warehouse> - <warehouse_name>Arnold and Sons</warehouse_name> - <wa_address1>5617 Saclan Terrace</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Hidalgo</warehouse_city> - <warehouse_state_province>Zacatecas</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Mexico</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>360-555-8035</warehouse_phone> - <warehouse_fax>263-555-1427</warehouse_fax> + <warehouseName>Arnold and Sons</warehouseName> + <waAddress1>5617 Saclan Terrace</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Hidalgo</warehouseCity> + <warehouseStateProvince>Zacatecas</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Mexico</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>360-555-8035</warehousePhone> + <warehouseFax>263-555-1427</warehouseFax> </Warehouse> <Warehouse> - <warehouse_name>Worthington Food Products</warehouse_name> - <wa_address1>4659 Cape Cod Way</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Hidalgo</warehouse_city> - <warehouse_state_province>Zacatecas</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Mexico</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>609-555-5413</warehouse_phone> - <warehouse_fax>952-555-8492</warehouse_fax> + <warehouseName>Worthington Food Products</warehouseName> + <waAddress1>4659 Cape Cod Way</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Hidalgo</warehouseCity> + <warehouseStateProvince>Zacatecas</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Mexico</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>609-555-5413</warehousePhone> + <warehouseFax>952-555-8492</warehouseFax> </Warehouse> <Warehouse> - <warehouse_name>Jorgensen Service Storage</warehouse_name> - <wa_address1>4832 Park Glen Ct</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>San Diego</warehouse_city> - <warehouse_state_province>CA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>259-555-2824</warehouse_phone> - <warehouse_fax>470-555-4760</warehouse_fax> + <warehouseName>Jorgensen Service Storage</warehouseName> + <waAddress1>4832 Park Glen Ct</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>San Diego</warehouseCity> + <warehouseStateProvince>CA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>259-555-2824</warehousePhone> + <warehouseFax>470-555-4760</warehouseFax> </Warehouse> - </Warehouse_class> - <Warehouse_class> + </WarehouseClass> + <WarehouseClass> <description>Large Owned</description> <Warehouse> - <warehouse_name>Big Quality Warehouse</warehouse_name> - <wa_address1>3521 Fourth Stret</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Beverly Hills</warehouse_city> - <warehouse_state_province>CA</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>892-555-3590</warehouse_phone> - <warehouse_fax>388-555-7926</warehouse_fax> + <warehouseName>Big Quality Warehouse</warehouseName> + <waAddress1>3521 Fourth Stret</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Beverly Hills</warehouseCity> + <warehouseStateProvince>CA</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>892-555-3590</warehousePhone> + <warehouseFax>388-555-7926</warehouseFax> </Warehouse> <Warehouse> - <warehouse_name>Treehouse Distribution</warehouse_name> - <wa_address1>5473 Olive Hill</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Salem</warehouse_city> - <warehouse_state_province>OR</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>USA</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>831-555-6210</warehouse_phone> - <warehouse_fax>481-555-1317</warehouse_fax> + <warehouseName>Treehouse Distribution</warehouseName> + <waAddress1>5473 Olive Hill</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Salem</warehouseCity> + <warehouseStateProvince>OR</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>USA</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>831-555-6210</warehousePhone> + <warehouseFax>481-555-1317</warehouseFax> </Warehouse> <Warehouse> - <warehouse_name>Bellmont Distributing</warehouse_name> - <wa_address1>5900 May Rd</wa_address1> - <wa_address2></wa_address2> - <wa_address3></wa_address3> - <wa_address4></wa_address4> - <warehouse_city>Vancouver</warehouse_city> - <warehouse_state_province>BC</warehouse_state_province> - <warehouse_postal_code>55555</warehouse_postal_code> - <warehouse_country>Canada</warehouse_country> - <warehouse_owner_name></warehouse_owner_name> - <warehouse_phone>226-555-5335</warehouse_phone> - <warehouse_fax>361-555-7385</warehouse_fax> + <warehouseName>Bellmont Distributing</warehouseName> + <waAddress1>5900 May Rd</waAddress1> + <waAddress2></waAddress2> + <waAddress3></waAddress3> + <waAddress4></waAddress4> + <warehouseCity>Vancouver</warehouseCity> + <warehouseStateProvince>BC</warehouseStateProvince> + <warehousePostalCode>55555</warehousePostalCode> + <warehouseCountry>Canada</warehouseCountry> + <warehouseOwnerName></warehouseOwnerName> + <warehousePhone>226-555-5335</warehousePhone> + <warehouseFax>361-555-7385</warehouseFax> </Warehouse> - </Warehouse_class> -</vector> \ No newline at end of file + </WarehouseClass> +</vector>
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datamart/src/BUSINESSBUNDLECLASSNAME.datamart.TEMPLATE b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datamart/src/BUSINESSBUNDLECLASSNAME.datamart.TEMPLATE index fda64da..acf1aa1 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datamart/src/BUSINESSBUNDLECLASSNAME.datamart.TEMPLATE +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datamart/src/BUSINESSBUNDLECLASSNAME.datamart.TEMPLATE
@@ -41,8 +41,7 @@ package ${{MODEL_PROJECT_PACKAGE_NAME}} { - datamart ProductSales description "Sales on products" for { - role Sales } using + datamart ProductSales description "Sales on products" using cube Sales nonempty { axis columns { measure StoreSales @@ -53,10 +52,7 @@ } slicer hierarchy Product level ProductSubcategory filtered } - datamart Products description "My products" for { - role Sales - role Logistics - } using + datamart Products description "My products" using entity Product { navigation { many2one join productClass to entity ProductClass { @@ -84,10 +80,7 @@ attribute shelfDepth axis columns } } - datamart Employees description "All employees" for { - role Sales - role Logistics - } using + datamart Employees description "All employees" using entity Employee { attributes { attribute firstName axis columns @@ -109,10 +102,7 @@ } } /** datamart to show all relevant information about employee salary */ - datamart EmployeeSalary for { - role Sales - role Logistics - } using + datamart EmployeeSalary using entity Employee { navigation { many2one join position to entity Position { @@ -189,7 +179,7 @@ * 100 axis columns { - hierarchy PromotionMedia level MediaType detailed orderby + hierarchy PromotionMedia level MediaType detailed orderBy derived MediaPerc descending derived MediaPerc @@ -397,9 +387,7 @@ = filtered } - datamart SupplierData description "Supplier master data" for { - role Sales - } using + datamart SupplierData description "Supplier master data"using entity Supplier tracking { attributes { attribute company axis columns @@ -463,33 +451,44 @@ attribute sku axis columns } } - datamart Currencies for { - role Sales - } using entity Currency { + + datamart Currencies using entity Currency { navigation { - many2one join currencyDay to entity CurrencyDay { - attributes { - attribute ratingDate axis columns - } - conditions { - condition attribute ratingDate = filtered - } - } many2one join currencyName to entity CurrencyNames { attributes { - attribute countries axis columns - attribute isoCode axis columns - attribute name axis columns + attribute countries axis columns columnWeight 900 + attribute isoCode axis columns columnWeight 700 + attribute name axis columns columnWeight 600 + } + conditions { + condition attribute countries = filtered optional + } + ordering { + order countries ascending } } + many2one join currencyDay to entity CurrencyDay { + attributes { + attribute ratingDate axis columns columnWeight 500 + } + conditions { + condition attribute ratingDate = ranged + } + ordering { + order ratingDate descending + } + } } attributes { - attribute conversionRatio axis columns + attribute currencyDate axis columns columnWeight 450 + attribute conversionRatio axis columns columnWeight 400 + } + ordering { + order currencyDate descending } } - datamart ProductClass for { - role Sales - } using + + datamart ProductClass using entity ProductClass { attributes { attribute productSubcategory axis columns
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datatype/src/BUSINESSBUNDLECLASSNAME.datatype.TEMPLATE b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datatype/src/BUSINESSBUNDLECLASSNAME.datatype.TEMPLATE index 6785500..9fdd0c2 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datatype/src/BUSINESSBUNDLECLASSNAME.datatype.TEMPLATE +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.datatype/src/BUSINESSBUNDLECLASSNAME.datatype.TEMPLATE
@@ -46,6 +46,7 @@ ) datatype Date dateType date + datatype DateTime dateType timestamp properties(key="date_time" value="MINUTE") datatype Price jvmType Double properties(key="decimalformat" value="###,##0.00 ¤") datatype DateOnly dateType date properties(key = "Date" value = "Day") datatype BirthDate dateType date isNotNull isPast[severity=error] properties(key = "Date" value = "Day")
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.dialog/src/BUSINESSBUNDLECLASSNAME.dialog.TEMPLATE b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.dialog/src/BUSINESSBUNDLECLASSNAME.dialog.TEMPLATE index 1b34a2f..9440f48 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.dialog/src/BUSINESSBUNDLECLASSNAME.dialog.TEMPLATE +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.dialog/src/BUSINESSBUNDLECLASSNAME.dialog.TEMPLATE
@@ -4,6 +4,8 @@ import ns ${{BASIC_PROJECT_NAME}}.model.dtos.ProductClassDto import ns ${{BASIC_PROJECT_NAME}}.model.dtos.SupplierDto import ns ${{BASIC_PROJECT_NAME}}.model.uimodels.SupplierUi2 +import ns ${{BASIC_PROJECT_NAME}}.model.dtos.CurrencyNamesDto +import ns ${{BASIC_PROJECT_NAME}}.model.dtos.CurrencyDto package ${{MODEL_PROJECT_PACKAGE_NAME}} { @@ -13,4 +15,8 @@ dialog Supplier autobinding SupplierDto toolbar Dialog dialog SupplierUi2 view SupplierUi2 + + dialog CurrencyName autobinding CurrencyNamesDto + dialog Currency autobinding CurrencyDto + } \ No newline at end of file
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.dialog/src/BUSINESSBUNDLECLASSNAME.ui.TEMPLATE b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.dialog/src/BUSINESSBUNDLECLASSNAME.ui.TEMPLATE index f7648cb..ab4da99 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.dialog/src/BUSINESSBUNDLECLASSNAME.ui.TEMPLATE +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.dialog/src/BUSINESSBUNDLECLASSNAME.ui.TEMPLATE
@@ -1,8 +1,9 @@ -import ns ${{BASIC_PROJECT_NAME}}.model.dtos.EmployeeDto -import ns ${{BASIC_PROJECT_NAME}}.model.dtos.SupplierDto package ${{BASIC_PROJECT_NAME}}.model.uimodels +import ns ${{BASIC_PROJECT_NAME}}.model.dtos.EmployeeDto +import ns ${{BASIC_PROJECT_NAME}}.model.dtos.SupplierDto + ideview Employee { datasource dsEmployee:EmployeeDto horizontalLayout person { @@ -38,9 +39,9 @@ save icon "" id org.eclipse.osbp.actions.save } // Using a vertical group to visualize the customer properties mobileHorizontalLayout { - autowire source [this..SupplierDetail].value +// autowire source [this..SupplierDetail].value } - bind [this..SuppliersList].onNavigateBack --> [this].refresh + bind [this..SupplierTable].refresh <-- [this].navigateBack } } }
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.entity/src/BUSINESSBUNDLECLASSNAME.entity.TEMPLATE b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.entity/src/BUSINESSBUNDLECLASSNAME.entity.TEMPLATE index 48ef611..140f30b 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.entity/src/BUSINESSBUNDLECLASSNAME.entity.TEMPLATE +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.entity/src/BUSINESSBUNDLECLASSNAME.entity.TEMPLATE
@@ -1,7 +1,9 @@ +import javax.persistence.PrePersist import ns org.eclipse.osbp.utils.blob.BlobMapping import ns ${{BASIC_PROJECT_NAME}}.model.datatypes.BirthDate import ns ${{BASIC_PROJECT_NAME}}.model.datatypes.BlobMapping import ns ${{BASIC_PROJECT_NAME}}.model.datatypes.Date +import ns ${{BASIC_PROJECT_NAME}}.model.datatypes.DateTime import ns ${{BASIC_PROJECT_NAME}}.model.datatypes.Int import ns ${{BASIC_PROJECT_NAME}}.model.datatypes.LengthCMMetricCustomDecimal import ns ${{BASIC_PROJECT_NAME}}.model.datatypes.LengthMetricCustomDecimal @@ -11,24 +13,45 @@ import ns ${{BASIC_PROJECT_NAME}}.model.datatypes.double import ns ${{BASIC_PROJECT_NAME}}.model.datatypes.int import ns ${{BASIC_PROJECT_NAME}}.model.datatypes.long +import org.eclipse.osbp.runtime.common.annotations.CreateAt +import org.eclipse.osbp.runtime.common.annotations.CreateBy +import org.eclipse.osbp.runtime.common.annotations.UpdateAt +import org.eclipse.osbp.runtime.common.annotations.UpdateBy + package ${{MODEL_PROJECT_PACKAGE_NAME}} { mappedSuperclass BaseID { ${{ENTITY_PROPERTY_BASE_ID}} id version int version + @CreateBy + var String createdBy + @CreateAt + var DateTime created + @UpdateBy + var String updatedBy + @UpdateAt + var DateTime updated } mappedSuperclass BaseUUID { ${{ENTITY_PROPERTY_BASE_UUID}} id version int version + @CreateBy + var String createdBy + @CreateAt + var DateTime created + @UpdateBy + var String updatedBy + @UpdateAt + var DateTime updated } entity CurrencyNamesStream extends BaseID { persistenceUnit "${{BUSINESSDATA_PERSISTENCE_UNIT}}" var Date importDate var boolean latest - ref cascade CurrencyNames [*] currencyNames opposite currencynamesStream + ref cascadeMergePersist CurrencyNames [*] currencyNames opposite currencynamesStream } cacheable entity CurrencyNames extends BaseID { @@ -37,21 +60,21 @@ domainKey String name var String countries ref CurrencyNamesStream currencynamesStream opposite currencyNames - ref cascade Currency [*] currencyRates opposite currencyName + ref cascadeMergePersist Currency [*] currencyRates opposite currencyName } entity CurrencyStream extends BaseID { persistenceUnit "${{BUSINESSDATA_PERSISTENCE_UNIT}}" var Date importDate var boolean latest - ref cascade CurrencyDay [*] currencyDays opposite currencydayStream + ref cascadeMergePersist CurrencyDay [*] currencyDays opposite currencydayStream } entity CurrencyDay extends BaseID { persistenceUnit "${{BUSINESSDATA_PERSISTENCE_UNIT}}" var Date ratingDate ref CurrencyStream currencydayStream opposite currencyDays - ref cascade Currency [*] currencyRates opposite currencyDay + ref cascadeMergePersist Currency [*] currencyRates opposite currencyDay } entity Currency extends BaseID { @@ -60,8 +83,8 @@ var Date currencyDate ref CurrencyDay currencyDay opposite currencyRates ref CurrencyNames currencyName opposite currencyRates - ref cascade ExpenseFact [*] expenses opposite currency - ref cascade Salary [*] salaries opposite currency + ref ExpenseFact [*] expenses opposite currency + ref Salary [*] salaries opposite currency } entity Days extends BaseUUID { @@ -86,8 +109,8 @@ var LengthCMMetricCustomDecimal shelfHeight var LengthMetricCustomDecimal shelfDepth ref ProductClass productClass opposite products - ref cascade InventoryFact [*] inventories opposite product - ref cascade SalesFact [*] sales opposite product + ref InventoryFact [*] inventories opposite product + ref SalesFact [*] sales opposite product index skuIndex { sku @@ -110,7 +133,7 @@ var String productCategory var String productDepartment var String productFamily - ref cascade Product [*] products opposite productClass properties(key = "Grid" value = "") + ref Product [*] products opposite productClass properties(key = "Grid" value = "") } entity Position extends BaseID { @@ -120,8 +143,8 @@ var double minScale var double maxScale var String managementRole - ref cascade Employee [*] employees opposite position - ref cascade ReserveEmployee [*] reserveEmployees opposite position + ref Employee [*] employees opposite position + ref ReserveEmployee [*] reserveEmployees opposite position } entity Region extends BaseID { @@ -132,9 +155,9 @@ var String salesRegion var String salesCountry var int salesDistrictId - ref cascade Store [*] stores opposite region - ref cascade StoreRagged [*] storesRagged opposite region - ref cascade Customer [*] customers opposite region + ref Store [*] stores opposite region + ref StoreRagged [*] storesRagged opposite region + ref Customer [*] customers opposite region } entity StoreRagged extends BaseID { @@ -195,9 +218,9 @@ var int monthOfYear var String quarter var String fiscalPeriod - ref cascade InventoryFact [*] inventories opposite thattime - ref cascade ExpenseFact [*] expenses opposite thattime - ref cascade SalesFact [*] sales opposite thattime + ref InventoryFact [*] inventories opposite thattime + ref ExpenseFact [*] expenses opposite thattime + ref SalesFact [*] sales opposite thattime } entity ExpenseFact extends BaseUUID { @@ -214,16 +237,16 @@ entity Department extends BaseID { persistenceUnit "${{BUSINESSDATA_PERSISTENCE_UNIT}}" domainKey String departmentDescription - ref cascade Employee [*] employees opposite department - ref cascade ReserveEmployee [*] reserveEmployees opposite department - ref cascade Salary [*] salaries opposite department + ref Employee [*] employees opposite department + ref ReserveEmployee [*] reserveEmployees opposite department + ref Salary [*] salaries opposite department } entity EmployeeClosure extends BaseUUID { persistenceUnit "${{BUSINESSDATA_PERSISTENCE_UNIT}}" var int supervisorId var int distance - ref cascade Employee [*] employees opposite employeeClosure + ref Employee [*] employees opposite employeeClosure } entity Warehouse extends BaseID { @@ -242,7 +265,7 @@ var String warehouseFax ref WarehouseClass warehouseClass opposite warehouses ref Store store opposite warehouses - ref cascade InventoryFact [*] inventories opposite warehouse + ref InventoryFact [*] inventories opposite warehouse } entity Account extends BaseID { @@ -252,7 +275,7 @@ var String accountType var String accountRollup var String customMembers - ref cascade ExpenseFact [*] expenses opposite account + ref ExpenseFact [*] expenses opposite account } entity Category { @@ -261,13 +284,13 @@ var Int categoryParent domainKey String categoryDescription var String categoryRollup - ref cascade ExpenseFact [*] expenses opposite category + ref ExpenseFact [*] expenses opposite category } entity WarehouseClass extends BaseID { persistenceUnit "${{BUSINESSDATA_PERSISTENCE_UNIT}}" domainKey String description - ref cascade Warehouse [*] warehouses opposite warehouseClass + ref Warehouse [*] warehouses opposite warehouseClass } entity Customer extends BaseID { @@ -301,7 +324,7 @@ domainKey String fullName var String test ref Region region opposite customers - ref cascade SalesFact [*] sales opposite customer + ref SalesFact [*] sales opposite customer } entity Promotion extends BaseID { @@ -312,7 +335,7 @@ var double cost var Date startDate var Date endDate - ref cascade SalesFact [*] sales opposite promotion + ref SalesFact [*] sales opposite promotion } entity Salary extends BaseUUID { @@ -325,6 +348,12 @@ ref Employee employee opposite salaries ref Department department opposite salaries ref Currency currency opposite salaries + @PrePersist + def void prepersist () { + if ( employee !== null ) { + department = employee.department + } + } } entity Store extends BaseID { @@ -352,12 +381,12 @@ var boolean preparedFood var boolean florist ref Region region opposite stores - ref cascade Warehouse [*] warehouses opposite store - ref cascade Employee [*] employees opposite store - ref cascade ReserveEmployee [*] reserveEmployees opposite store - ref cascade InventoryFact [*] inventories opposite store - ref cascade ExpenseFact [*] expenses opposite store - ref cascade SalesFact [*] sales opposite store + ref Warehouse [*] warehouses opposite store + ref Employee [*] employees opposite store + ref ReserveEmployee [*] reserveEmployees opposite store + ref InventoryFact [*] inventories opposite store + ref ExpenseFact [*] expenses opposite store + ref SalesFact [*] sales opposite store } entity Employee extends BaseID { @@ -380,7 +409,7 @@ ref Store store opposite employees ref Department department opposite employees ref EmployeeClosure employeeClosure opposite employees - ref cascade Salary [*] salaries opposite employee + ref Salary [*] salaries opposite employee } entity SalesFact extends BaseUUID { @@ -430,7 +459,7 @@ persistenceUnit "${{BUSINESSDATA_PERSISTENCE_UNIT}}" var Date importDate var boolean latest - ref cascade EDIOrderHeader [*] orderHeaders opposite headerOrder + ref EDIOrderHeader [*] orderHeaders opposite headerOrder } entity EDIOrderHeader extends BaseUUID { @@ -441,8 +470,8 @@ var double totalAmount var double taxAmount var Date hdrDate - ref cascade EDIOrderCustomer [*] ediOrderCustomer opposite customerHeader - ref cascade EDIOrderItem [*] ediOrderItem opposite itemHeader + ref EDIOrderCustomer [*] ediOrderCustomer opposite customerHeader + ref EDIOrderItem [*] ediOrderItem opposite itemHeader ref EDIOrders headerOrder opposite orderHeaders }
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.entitymock/src/BUSINESSBUNDLECLASSNAME.entitymock.TEMPLATE b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.entitymock/src/BUSINESSBUNDLECLASSNAME.entitymock.TEMPLATE index 236ac43..c977599 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.entitymock/src/BUSINESSBUNDLECLASSNAME.entitymock.TEMPLATE +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.entitymock/src/BUSINESSBUNDLECLASSNAME.entitymock.TEMPLATE
@@ -2,32 +2,35 @@ import java.util.Random import ns org.eclipse.osbp.authentication.account.^entities.UserAccount import ns org.eclipse.osbp.blob.^entities.BlobMapping -import ns ${{BASIC_PROJECT_NAME}}.model.^datainterchanges.Customer -import ns ${{BASIC_PROJECT_NAME}}.model.^datainterchanges.EmployeesDepartment -import ns ${{BASIC_PROJECT_NAME}}.model.^datainterchanges.EmployeesPosition -import ns ${{BASIC_PROJECT_NAME}}.model.^datainterchanges.Products -import ns ${{BASIC_PROJECT_NAME}}.model.^datainterchanges.Promotion -import ns ${{BASIC_PROJECT_NAME}}.model.^datainterchanges.Stores -import ns ${{BASIC_PROJECT_NAME}}.model.^datainterchanges.Suppliers -import ns ${{BASIC_PROJECT_NAME}}.model.^datainterchanges.Warehouses +import ns ${{BASIC_PROJECT_NAME}}.model.^datainterchanges.DataInterchange.CurrencyNames +import ns ${{BASIC_PROJECT_NAME}}.model.^datainterchanges.DataInterchange.CurrencyRates +import ns ${{BASIC_PROJECT_NAME}}.model.^datainterchanges.DataInterchange.Customer +import ns ${{BASIC_PROJECT_NAME}}.model.^datainterchanges.DataInterchange.EmployeesDepartment +import ns ${{BASIC_PROJECT_NAME}}.model.^datainterchanges.DataInterchange.EmployeesPosition +import ns ${{BASIC_PROJECT_NAME}}.model.^datainterchanges.DataInterchange.Products +import ns ${{BASIC_PROJECT_NAME}}.model.^datainterchanges.DataInterchange.Promotion +import ns ${{BASIC_PROJECT_NAME}}.model.^datainterchanges.DataInterchange.Stores +import ns ${{BASIC_PROJECT_NAME}}.model.^datainterchanges.DataInterchange.Suppliers +import ns ${{BASIC_PROJECT_NAME}}.model.^datainterchanges.DataInterchange.Warehouses +import ns ${{BASIC_PROJECT_NAME}}.model.^entities.Salary import ns ${{BASIC_PROJECT_NAME}}.model.^entities.SalesFact import ns ${{BASIC_PROJECT_NAME}}.model.^entities.TimeByDay package ${{MODEL_PROJECT_PACKAGE_NAME}} { - mock ${{BUSINESS_BUNDLE}}Users { + mock ${{BUSINESS_BUNDLE_CLASS_NAME}}Users { priority 4 resources { resource resourceUserAccounts { - attributes (userName, password, position, enabled, localeTag) + attributes (userName, password, position, enabled, localeTag, email) items { - ADMIN ( "Admin", "Admin", "Administrator", "false", "en-US" ) - OSBEE ( "Osbee", "Osbee", "Administrator", "false", "en-US" ) - GUEST ( "Guest", "Guest", "Administrator", "false", "en-US" ) - CHARLES ( "Charles", "Charles", "Administrator", "false", "en-US" ) - DORRIT ( "Dorrit", "Dorrit", "Administrator", "false", "en-US" ) + ADMIN ( "Admin", "Admin", "Administrator", "false", "en-US", "admin@test.local" ) + OSBEE ( "Osbee", "Osbee", "Administrator", "false", "en-US", "osbee@test.local" ) + GUEST ( "Guest", "Guest", "Administrator", "false", "en-US", "guest@test.local" ) + CHARLES ( "Charles", "Charles", "Administrator", "false", "en-US", "charles@test.local" ) + DORRIT ( "Dorrit", "Dorrit", "Administrator", "false", "en-US", "dorrit@test.local" ) } } } @@ -40,25 +43,27 @@ var position as position var enabled as enabled var localeTag as localeTag + var email as email } } } - mock ${{BUSINESS_BUNDLE}}Entities { - + mock ${{BUSINESS_BUNDLE_CLASS_NAME}}Entities { + priority 10 + datainterchanges { - datainterchange Warehouses file "file://${{PROJECT_LOC}}/../${{BASIC_PROJECT_NAME}}.model.datainterchanges/models/smooksresources/warehouses.xml" - // datainterchange CurrencyNames file "file://${{PROJECT_LOC}}/../${{BASIC_PROJECT_NAME}}.model.datainterchange/models/smooksresources/ISOCurrencyCodes081507.csv" - // datainterchange Currencies file "file://${{PROJECT_LOC}}/../${{BASIC_PROJECT_NAME}}.model.datainterchange/models/smooksresources/eurofxref-daily.xml" - datainterchange Suppliers file "file://${{PROJECT_LOC}}/../${{BASIC_PROJECT_NAME}}.model.datainterchanges/models/smooksresources/suppliers.xml" - // datainterchange EDIOrders file "file://${{PROJECT_LOC}}/../${{BASIC_PROJECT_NAME}}.model.datainterchange/models/smooksresources/orders.edi" - datainterchange Stores file "file://${{PROJECT_LOC}}/../${{BASIC_PROJECT_NAME}}.model.datainterchanges/models/smooksresources/stores.xml" - datainterchange Products file "file://${{PROJECT_LOC}}/../${{BASIC_PROJECT_NAME}}.model.datainterchanges/models/smooksresources/products.xml" - datainterchange EmployeesPosition file "file://${{PROJECT_LOC}}/../${{BASIC_PROJECT_NAME}}.model.datainterchanges/models/smooksresources/employeesposition.xml" - datainterchange EmployeesDepartment file "file://${{PROJECT_LOC}}/../${{BASIC_PROJECT_NAME}}.model.datainterchanges/models/smooksresources/employeesdepartment.xml" - datainterchange Customer file "file://${{PROJECT_LOC}}/../${{BASIC_PROJECT_NAME}}.model.datainterchanges/models/smooksresources/customer.xml" - datainterchange Promotion file "file://${{PROJECT_LOC}}/../${{BASIC_PROJECT_NAME}}.model.datainterchanges/models/smooksresources/promotion.xml" + //datainterchange Warehouses file "src/smooksresources/warehouses.xml" + datainterchange CurrencyNames file "src/smooksresources/ISOCurrencyCodes081507.csv" + datainterchange CurrencyRates file "https://www.ecb.europa.eu/stats/eurofxref/eurofxref-hist-90d.xml" + datainterchange Suppliers file "src/smooksresources/suppliers.xml" + // datainterchange EDIOrders file "src/smooksresources/orders.edi" + datainterchange Stores file "src/smooksresources/stores.xml" + datainterchange Products file "src/smooksresources/products.xml" + datainterchange EmployeesDepartment file "src/smooksresources/employeesdepartment.xml" + datainterchange EmployeesPosition file "src/smooksresources/employeesposition.xml" + datainterchange Customer file "src/smooksresources/customer.xml" + datainterchange Promotion file "src/smooksresources/promotion.xml" } resources { @@ -68,6 +73,23 @@ } entities { + +// mocking Salaries entity Salary iterate payDate with dateFrom 2018-01-01 until today every 1 months { + mocking Salaries entity Salary rows 500 to 1000 { + var payDate randomize past 1 years + ref currency to existingEntities + // ref department to existingEntities will be added by @Prepersist + ref employee to existingEntities + var salaryPaid randomize numberRange from 4000.0 until 5000.0 with 2 decimals + var vacationAccrued randomize numberRange from 27.0 until 30.0 with 0 decimals + var vacationUsed calculateOn ( vacationAccrued ) { + return vacationAccrued / 3.0 + } + var overtimePaid calculateOn ( ) { + return 1.2 + } + } + mocking mockSalesDates entity TimeByDay iterate theDate with dateFrom 2016-09-01 until yesterday every 1 days { var theDay calculateOn (theDate) { @@ -110,10 +132,11 @@ return storeSales * (0.8+(new Random()).nextDouble*0.19) } } + } } - mock ${{BUSINESS_BUNDLE}}Blobs { + mock ${{BUSINESS_BUNDLE_CLASS_NAME}}Blobs { priority 2 resources {
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.functionlibrary/src/BUSINESSBUNDLECLASSNAME.functionlibrary.TEMPLATE b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.functionlibrary/src/BUSINESSBUNDLECLASSNAME.functionlibrary.TEMPLATE index c1fbfde..ab2ef69 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.functionlibrary/src/BUSINESSBUNDLECLASSNAME.functionlibrary.TEMPLATE +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.functionlibrary/src/BUSINESSBUNDLECLASSNAME.functionlibrary.TEMPLATE
@@ -11,8 +11,6 @@ import org.eclipse.osbp.xtext.functionlibrary.common.uomo.MetricLengthUnit import org.eclipse.osbp.xtext.functionlibrary.common.uomo.MetricMassUnit import org.eclipse.osbp.xtext.functionlibrary.common.uomo.MetricVolumeUnit -import org.eclipse.osbp.xtext.functionlibrarydsl.util.Library -import org.eclipse.osbp.xtext.functionlibrarydsl.util.Library.Context import org.eclipse.uomo.units.impl.BaseAmount import org.eclipse.uomo.units.impl.format.LocalUnitFormatImpl import org.jbpm.task.Status @@ -117,112 +115,10 @@ } } - group TaskToolbar { - function getTaskId(Context context) returns Long { - return Library.getTaskId(context); - } - function claimCanExecute(Context context) returns boolean { - var userName = Library.getUserName(context); - if( "Administrator".equals( userName ) ) { - return false - } - return Library.isTask(context, Status.Created); - } - function startCanExecute(Context context) returns boolean { - var userName = Library.getUserName(context); - if( "Administrator".equals( userName ) ) { - return false - } - return Library.isTask(context, Status.Ready); - } - function resumeCanExecute(Context context) returns boolean { - var userName = Library.getUserName(context); - if( "Administrator".equals( userName ) ) { - return false - } - var suspended = Library.isTask(context, Status.Suspended); - var progress = Library.isTask(context, Status.InProgress); - return( suspended || progress ) - } - } - - group PerspectiveToolbar { - function getTaskId(Context context) returns Long { - return Library.getTaskId( context ); - } - function stopCanExecute(Context context) returns boolean { - var userName = Library.getUserName( context ); - if( "Administrator".equals( userName ) ) { - return false - } - return Library.isTask(context, Status.InProgress); - } - function skipCanExecute(Context context) returns boolean { - var userName = Library.getUserName( context ); - if( "Administrator".equals( userName ) ) { - return false - } - return Library.isTask(context, Status.InProgress); - } - function delegateCanExecute(Context context) returns boolean { - var userName = Library.getUserName( context ); - if( "Administrator".equals( userName ) ) { - return false - } - return Library.isTask(context, Status.InProgress); - } - function forwardCanExecute(Context context) returns boolean { - var userName = Library.getUserName( context ); - if( "Administrator".equals( userName ) ) { - return false - } - return Library.isTask(context, Status.InProgress); - } - function registerCanExecute(Context context) returns boolean { - return Library.isTask(context, Status.Ready); - } - function removeCanExecute(Context context) returns boolean { - return Library.isTask(context, Status.Ready); - } - function completeCanExecute(Context context) returns boolean { - var userName = Library.getUserName( context ); - if( "Administrator".equals( userName ) ) { - return false - } - return Library.isTask(context, Status.InProgress); - } - function suspendCanExecute(Context context) returns boolean { - var userName = Library.getUserName( context ); - if( "Administrator".equals( userName ) ) { - return false - } - return Library.isTask(context, Status.InProgress); - } - function releaseCanExecute(Context context) returns boolean { - return Library.isTask(context, Status.InProgress); - } - function activateCanExecute(Context context) returns boolean { - return Library.isTask(context, Status.Created); - } - function failCanExecute(Context context) returns boolean { - return Library.isTask(context, Status.InProgress); - } - function exitCanExecute(Context context) returns boolean { - return Library.isTask(context, Status.InProgress); - } - function resumeCanExecute(Context context) returns boolean { - var userName = Library.getUserName( context ); - if( "Administrator".equals( userName ) ) { - return false - } - return Library.isTask(context, Status.Suspended); - } - - } group ProductDialog { function saveCanExecute() returns boolean { - return Library.timerToggle(10000L) + return true } }
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.menu/src/BUSINESSBUNDLECLASSNAME.menu.TEMPLATE b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.menu/src/BUSINESSBUNDLECLASSNAME.menu.TEMPLATE index 4ec4ad5..21b47c5 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.menu/src/BUSINESSBUNDLECLASSNAME.menu.TEMPLATE +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.menu/src/BUSINESSBUNDLECLASSNAME.menu.TEMPLATE
@@ -2,6 +2,8 @@ import ns org.eclipse.osbp.authentication.account.perspectives.UserAdministration import ns ${{BASIC_PROJECT_NAME}}.model.blips.ProductMaintenance import ns ${{BASIC_PROJECT_NAME}}.model.blips.listing +import ns ${{BASIC_PROJECT_NAME}}.model.perspectives.Currencies +import ns ${{BASIC_PROJECT_NAME}}.model.perspectives.Datainterchange import ns ${{BASIC_PROJECT_NAME}}.model.perspectives.Employee import ns ${{BASIC_PROJECT_NAME}}.model.perspectives.Products import ns ${{BASIC_PROJECT_NAME}}.model.perspectives.Supplier @@ -18,12 +20,14 @@ entry Employees icon "employee" perspective Employee entry Supplier icon "supplier" perspective Supplier entry Products icon "products" perspective Products + entry Currencies icon "money" perspective Currencies } tree BI tooltip "biTooltip" { entry TopProducts icon "products" perspective TopProducts } tree Administration tooltip "administrationTooltip" { entry userAdministration icon "employee" perspective UserAdministration + entry Datainterchange icon "flag-orange" perspective Datainterchange } }
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.perspective/src/BUSINESSBUNDLECLASSNAME.perspective.TEMPLATE b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.perspective/src/BUSINESSBUNDLECLASSNAME.perspective.TEMPLATE index ffe6919..31fe4c6 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.perspective/src/BUSINESSBUNDLECLASSNAME.perspective.TEMPLATE +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.perspective/src/BUSINESSBUNDLECLASSNAME.perspective.TEMPLATE
@@ -36,11 +36,14 @@ import ns ${{BASIC_PROJECT_NAME}}.model.tables.TopProductsTable import ns ${{BASIC_PROJECT_NAME}}.model.topologies.USA import ns ${{BASIC_PROJECT_NAME}}.model.topologies.USATopology +import ns ${{BASIC_PROJECT_NAME}}.model.tables.Currencies +import ns ${{BASIC_PROJECT_NAME}}.model.dialogs.Currency +import ns ${{BASIC_PROJECT_NAME}}.model.dialogs.CurrencyName -package ${{MODEL_PROJECT_PACKAGE_NAME}}.perspectives { +package ${{MODEL_PROJECT_PACKAGE_NAME}} { - perspective Employee describedBy "Employee maintenance" iconURI "employee" { + perspective Employee describedBy "Employee maintenance" icon "employee" { sashContainer Outer orientation horizontal { sashContainer Top orientation vertical { part Employees spaceVolume "50" view @@ -56,7 +59,7 @@ } } } - perspective Supplier iconURI "supplier" { + perspective Supplier icon "supplier" { sashContainer Outer orientation horizontal { part Employees spaceVolume "50" view readOnlyTable Supplier @@ -68,7 +71,7 @@ } } } - perspective TopProducts iconURI "products" { + perspective TopProducts icon "products" { sashContainer Outer orientation vertical { part TopProducts spaceVolume "60" view readOnlyTable TopProducts @@ -82,7 +85,7 @@ } } - perspective Products iconURI "information" { + perspective Products icon "information" { sashContainer Outer orientation horizontal { sashContainer Inner spaceVolume "70" orientation vertical { @@ -108,7 +111,7 @@ } perspective ProductMaintenance process ProductMaintenance usertask Products toolbar HandleTask - iconURI "information" { + icon "information" { sashContainer Outer orientation horizontal { sashContainer Inner spaceVolume "70" orientation vertical { @@ -144,4 +147,20 @@ readOnlyTable Employees } } + + perspective Currencies describedBy "Currencies" { + sashContainer SC1 { + part Currencies view readOnlyTable Currencies + sashContainer SC2 orientation vertical { + part CurrencyName view dialog CurrencyName + part Currency view dialog Currency + } + } + } + + perspective Datainterchange describedBy "Datainterchange" { + part elementId view dataInterchange DataInterchange + } + + } \ No newline at end of file
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.report/src/BUSINESSBUNDLECLASSNAME.report.TEMPLATE b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.report/src/BUSINESSBUNDLECLASSNAME.report.TEMPLATE index 9288edf..d0bd1d0 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.report/src/BUSINESSBUNDLECLASSNAME.report.TEMPLATE +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.report/src/BUSINESSBUNDLECLASSNAME.report.TEMPLATE
@@ -27,7 +27,7 @@ package ${{MODEL_PROJECT_PACKAGE_NAME}} { report FullBlownSalary { - datamart EmployeeSalary rendering html pagetemplate A4_Portrait media small + rendering html datamart EmployeeSalary pagetemplate A4_Portrait media small template { detail { table style bootstrap { @@ -38,7 +38,7 @@ } } report EmployeeSalaryViaApi describedBy "Employee Salary Report" { - datamart EmployeeSalary rendering html pagetemplate A4_Landscape media ^middle + rendering html datamart EmployeeSalary pagetemplate A4_Landscape media ^middle template { header { showOnFirst height 15.0 @@ -183,24 +183,26 @@ } } /** - * verwendet datamart Employee Salary und gibt per bereits vorhandenem rptDesign-File aus + * verwendet rendering html datamart Employee Salary und gibt per bereits vorhandenem rptDesign-File aus */ report EmployeeSalaryViaFile { - /** datamart Employee Salary */ - datamart EmployeeSalary /** rendering als HTML, auch PDF möglich */ - rendering html pagetemplate A4_Landscape media small + rendering html + /** datamart Employee Salary */ + datamart EmployeeSalary + pagetemplate A4_Landscape media small /** das rptDesign verwenden */ file "rptdesign/CCReportFile.rptdesign" } /** - * verwendet datamart Employee Salary und gibt per bereits vorhandenem rptDesign-File aus + * verwendet rendering html datamart Employee Salary und gibt per bereits vorhandenem rptDesign-File aus */ report ReportApiTestCheck { - /** datamart Employee Salary */ - datamart EmployeeSalary /** rendering als HTML, auch PDF möglich */ - rendering pdf pagetemplate A4_Portrait media small + rendering pdf + /** datamart Employee Salary */ + datamart EmployeeSalary + pagetemplate A4_Portrait media small /** das rptDesign verwenden */ // file "rptdesign/mytest.rptdesign" @@ -211,9 +213,8 @@ } report PlainText { - datamart EmployeeSalary rendering html - /** an optional external Css URI */ - externalCssURI "css/html/ccng-birt2.css" fromBundle "FoodMartReportDSLPlugin2" pagetemplate A4_Portrait media big + rendering html datamart EmployeeSalary + pagetemplate A4_Portrait media big template { detail { title "it's not me" @@ -236,7 +237,7 @@ } } report AutoReportSupplierData describedBy "Supplier Masterdata" { - datamart SupplierData rendering html pagetemplate A4_Portrait media small + rendering html datamart SupplierData pagetemplate A4_Portrait media small template { header { showOnFirst height 10.0 @@ -251,7 +252,7 @@ } } report AutoReportEmployeeSalary describedBy "Employee Salary Report" { - datamart EmployeeSalary rendering html pagetemplate A4_Portrait media small + rendering html datamart EmployeeSalary pagetemplate A4_Portrait media small template { header { showOnFirst height 0.0 @@ -266,7 +267,7 @@ } } report Products describedBy "Products" toolbar Report { - datamart Products rendering html pagetemplate A4_Portrait media small + rendering html datamart Products pagetemplate A4_Portrait media small template { header { showOnFirst height 10
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.table/src/BUSINESSBUNDLECLASSNAME.table.TEMPLATE b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.table/src/BUSINESSBUNDLECLASSNAME.table.TEMPLATE index e768cdd..abf67d0 100644 --- a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.table/src/BUSINESSBUNDLECLASSNAME.table.TEMPLATE +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/MODEL/FOODMART/PROJECT.table/src/BUSINESSBUNDLECLASSNAME.table.TEMPLATE
@@ -180,16 +180,6 @@ number 7.0 icon "taskStatus_error" number 8.0 icon "taskStatus_exited" number 9.0 icon "taskStatus_obsolete" - number 0.0 tooltip "created" - number 1.0 tooltip "ready" - number 2.0 tooltip "reserved" - number 3.0 tooltip "in progress" - number 4.0 tooltip "suspended" - number 5.0 tooltip "completed" - number 6.0 tooltip "failed" - number 7.0 tooltip "error" - number 8.0 tooltip "exited" - number 9.0 tooltip "obsolete" } } } @@ -236,16 +226,6 @@ number 7.0 icon "taskStatus_error" number 8.0 icon "taskStatus_exited" number 9.0 icon "taskStatus_obsolete" - number 0.0 tooltip "created" - number 1.0 tooltip "ready" - number 2.0 tooltip "reserved" - number 3.0 tooltip "in progress" - number 4.0 tooltip "suspended" - number 5.0 tooltip "completed" - number 6.0 tooltip "failed" - number 7.0 tooltip "error" - number 8.0 tooltip "exited" - number 9.0 tooltip "obsolete" } } } @@ -275,8 +255,7 @@ } } - table Currencies as readOnly using - datamart Currencies + table Currencies as readOnly filtering using datamart Currencies table ProductClass as readOnly using datamart ProductClass
diff --git a/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/PRODUCT/FOODMART/launch client.url b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/PRODUCT/FOODMART/launch client.url new file mode 100644 index 0000000..7e16cb2 --- /dev/null +++ b/org.eclipse.osbp.wizard.ui.model.foodmart/wizardtemplates/PRODUCT/FOODMART/launch client.url
@@ -0,0 +1,5 @@ +[{000214A0-0000-0000-C000-000000000046}] +Prop3=19,2 +[InternetShortcut] +IDList= +URL=http://localhost:8081/my1stshop/
diff --git a/org.eclipse.osbp.wizard.ui/wizardtemplates/MODEL/PIM/PROJECT.action/src/BUSINESSBUNDLECLASSNAME.action.TEMPLATE b/org.eclipse.osbp.wizard.ui/wizardtemplates/MODEL/PIM/PROJECT.action/src/BUSINESSBUNDLECLASSNAME.action.TEMPLATE index a2d9b77..e25c43f 100644 --- a/org.eclipse.osbp.wizard.ui/wizardtemplates/MODEL/PIM/PROJECT.action/src/BUSINESSBUNDLECLASSNAME.action.TEMPLATE +++ b/org.eclipse.osbp.wizard.ui/wizardtemplates/MODEL/PIM/PROJECT.action/src/BUSINESSBUNDLECLASSNAME.action.TEMPLATE
@@ -1,28 +1,42 @@ package ${{MODEL_PROJECT_PACKAGE_NAME}} { - command newItem keyBinding "CTRL ALT N" dialogAction New + command newItem keyBinding "CTRL ALT N" icon "new" dialogAction New - command saveItem keyBinding "CTRL ALT S" dialogAction Save + command saveItem keyBinding "CTRL ALT S" icon "save" dialogAction Save - command deleteItem keyBinding "CTRL ALT D" dialogAction Delete + command saveAsNew keyBinding "CTRL ALT B" icon "dssave" dialogAction SaveAsNew - command cancelItem keyBinding "CTRL ALT Z" dialogAction Cancel + command saveAndNew keyBinding "CTRL ALT A" icon "dssaveandnew" dialogAction SaveAndNew + + command deleteItem keyBinding "CTRL ALT D" icon "filter_except" dialogAction Delete + + command cancelItem keyBinding "CTRL ALT Z" icon "dscancel" dialogAction Cancel + + command databaseInfo describedBy "database info" keyBinding "CTRL ALT I" icon "dbinfo" userinterfaceAction Info - command print reportAction PrintOnServer + command print icon "print" reportAction PrintOnServer - command printDownload reportAction Download + command printDownload icon "xml" reportAction Download - toolbar Dialog describedBy "Toolbar for Dialogs" items { - item newItem command newItem icon "new" - item saveItem command saveItem icon "save" - item deleteItem command deleteItem icon "filter_except" - item cancelItem command cancelItem icon "nopic_small" + toolbar Dialog describedBy "Toolbar for Dialogs" items { + item newItem command newItem + spacer + spacer + item saveItem command saveItem + item saveAndNew command saveAndNew + spacer + item cancelItem command cancelItem + spacer + item databaseInfo command databaseInfo + spacer + state } - toolbar Report describedBy "Toolbar for reports" items { - item printDownload command printDownload icon "download" - item print command print icon "print" - } + toolbar Report describedBy "Toolbar for reports" items { + item printDownload command printDownload + item print command print + } + } \ No newline at end of file
diff --git a/org.eclipse.osbp.wizard.ui/wizardtemplates/MODEL/__basic__/PROJECT.action/src/BUSINESSBUNDLECLASSNAME.action.TEMPLATE b/org.eclipse.osbp.wizard.ui/wizardtemplates/MODEL/__basic__/PROJECT.action/src/BUSINESSBUNDLECLASSNAME.action.TEMPLATE index a2d9b77..5c59952 100644 --- a/org.eclipse.osbp.wizard.ui/wizardtemplates/MODEL/__basic__/PROJECT.action/src/BUSINESSBUNDLECLASSNAME.action.TEMPLATE +++ b/org.eclipse.osbp.wizard.ui/wizardtemplates/MODEL/__basic__/PROJECT.action/src/BUSINESSBUNDLECLASSNAME.action.TEMPLATE
@@ -1,28 +1,42 @@ package ${{MODEL_PROJECT_PACKAGE_NAME}} { - command newItem keyBinding "CTRL ALT N" dialogAction New + command newItem keyBinding "CTRL ALT N" icon "new" dialogAction New - command saveItem keyBinding "CTRL ALT S" dialogAction Save + command saveItem keyBinding "CTRL ALT S" icon "save" dialogAction Save - command deleteItem keyBinding "CTRL ALT D" dialogAction Delete + command saveAsNew keyBinding "CTRL ALT B" icon "dssave" dialogAction SaveAsNew - command cancelItem keyBinding "CTRL ALT Z" dialogAction Cancel + command saveAndNew keyBinding "CTRL ALT A" icon "dssaveandnew" dialogAction SaveAndNew + + command deleteItem keyBinding "CTRL ALT D" icon "filter_except" dialogAction Delete + + command cancelItem keyBinding "CTRL ALT Z" icon "dscancel" dialogAction Cancel + + command databaseInfo describedBy "database info" keyBinding "CTRL ALT I" icon "dbinfo" userinterfaceAction Info - command print reportAction PrintOnServer + command print icon "print" reportAction PrintOnServer - command printDownload reportAction Download + command printDownload icon "xml" reportAction Download - toolbar Dialog describedBy "Toolbar for Dialogs" items { - item newItem command newItem icon "new" - item saveItem command saveItem icon "save" - item deleteItem command deleteItem icon "filter_except" - item cancelItem command cancelItem icon "nopic_small" + toolbar Dialog describedBy "Toolbar for Dialogs" items { + item newItem command newItem + spacer + spacer + item saveItem command saveItem + item saveAndNew command saveAndNew + spacer + item cancelItem command cancelItem + spacer + item databaseInfo command databaseInfo + spacer + state } + toolbar Report describedBy "Toolbar for reports" items { - item printDownload command printDownload icon "download" - item print command print icon "print" + item printDownload command printDownload + item print command print } } \ No newline at end of file
diff --git a/org.eclipse.osbp.wizard.ui/wizardtemplates/MODEL/__basic__/PROJECT.datainterchange/build.properties b/org.eclipse.osbp.wizard.ui/wizardtemplates/MODEL/__basic__/PROJECT.datainterchange/build.properties new file mode 100644 index 0000000..9a1b527 --- /dev/null +++ b/org.eclipse.osbp.wizard.ui/wizardtemplates/MODEL/__basic__/PROJECT.datainterchange/build.properties
@@ -0,0 +1,13 @@ +source.. = src/,\ + src-gen/ +bin.includes = META-INF/,\ + .,\ + .settings/,\ + src/,\ + src-gen/,\ + OSGI-INF/,\ + license.html,\ + LICENSE.txt,\ + i18n/,\ + epl-2.0.html,\ + smooks/